Python Forum
TypeError: size; expecting a recognized type filling string dict
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TypeError: size; expecting a recognized type filling string dict
#1
I have been working on Python script for Abaqus and it has to do with dynamic changes in the parameters of the model. The script opens up a .txt file and reads different values. The values are separated using tabs and I am using split() function of the Abaqus-Python to read the values properly once I have assigned them to a list.
The last index is [5] and it contains mesh size, again a float value. The structure is properly drawn in ABAQUS, the only error it throws me is while assigning the mesh size. It throws me the error listed above. So I tried using repr() to make it a string, but I was it will throw me that the input should be float/integer value and it did exactly the same. Now I am stuck and I can't work any further. I even tried to truncate the float value to 3-decimal points for the mesh size, but it would still throw the same error.
Any help is much appreciated, thanks a lot :)

What I am expecting is that it writes exactly how the mesh size must be written in the specified line. I don't understand what is the problem, because it is able to write the dimensions properly, the only problem comes while writing the float value of mesh size.

CODE:::

beamPart.setElementType(elemTypes=(ElemType(elemCode=B23, elemLibrary=STANDARD), ), regions=beam_mesh_region)
    beamPart.seedPart(deviationFactor=0.1, minSizeFactor=0.1, size=mesh)
In the above line, it throws me the error as shown in the thread :::
Error:
TypeError: size; found 'module', expecting a recognized type filling string dict
From what I know is, it always writes in 'module' - so the error has something to with size or the filling string dict.

The exact error looks like this:
Error:
File "C:\Users\ANANT\PycharmProjects\test_final\test_copy.py", line 104, in <module> beamPart.seedPart(deviationFactor=0.1, minSizeFactor=0.1, size=mesh) TypeError: size; found 'module', expecting a recognized type filling string dict
Thanks for the feedback, I shall keep that in mind hereafter.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  TypeError: string indices must be integers deneme2 2 591 Feb-14-2025, 12:23 AM
Last Post: deneme2
  Changing client.get() method type based on size of data... dl0dth 1 530 Jan-02-2025, 08:30 PM
Last Post: dl0dth
Question TypeError: argument of type 'NoneType' is not iterable Tajaldeen 7 2,054 Nov-29-2024, 09:45 AM
Last Post: Tajaldeen
  TypeError: string indices must be integers, not 'str' LEMA 2 2,224 Jun-12-2024, 09:32 PM
Last Post: LEMA
  is import cointegration_analysis a recognized module mitcht33 1 1,093 Nov-06-2023, 09:29 PM
Last Post: deanhystad
  pandas : problem with conditional filling of a column Xigris 2 1,369 Jul-22-2023, 11:44 AM
Last Post: Xigris
  The term 'pip' is not recognized as the name of a cmdlet, function michaelnicol 1 4,015 Jul-16-2023, 11:12 PM
Last Post: deanhystad
  boto3 - Error - TypeError: string indices must be integers kpatil 7 3,026 Jun-09-2023, 06:56 PM
Last Post: kpatil
  "TypeError: string indices must be integers, not 'str'" while not using any indices bul1t 2 5,534 Feb-11-2023, 07:03 PM
Last Post: deanhystad
  Index Function not recognized in Python 3 Peter_B_23 1 3,245 Jan-08-2023, 04:52 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020