Menu
  • HOME
  • TAGS

Field output object not iterable

python,abaqus

The method getSubset called on fieldOutputs repository returns a FieldOutput object. That object contains a member values, which can be used to read values for a specific variable, 'ESEDEN' in your case. Member values is actually a FieldValueArray with FieldValue objects, each with all the necessary information about data for...

Abaqus Python getByBoundingBox command

python,abaqus

The corners of the bounding box should be provided as 6 separate numbers and not as a single tuple. The solution is very simple, just change the leading "((" and trailing "))" to single "(" and ")". So the call looks like this s.getByBoundingBox(0,0.02,0,0.003,0.04,0).

Outputting Dynamic Results in Abaqus

abaqus

You should write a script to automate the process for you. Since Abaqus exposes interface for writing Python scripts, you should try that out. If you've never done something like that, then create a field report for one step/frame manually and then open abaqus.rpy file to see the code necessary...

Executing Abaqus Model in Taverna

ssh,scp,beanshell,abaqus,taverna

When you say that you created an input port that takes a file list, I guess you mean an input to the tool service. Assuming the input port is called my_file_list, when the tool service is run, it will take a list of data values on port my_file_list. As an...

Abaqus pre.exe error code 529697949

abaqus

Oh, I found the answer. The problem was solved after I installed Abaqus to user, whose name doesn't contain any cyrillic symbols. Renaming the user didn't help, so, I had to make a new one with name in latin.

python create empty object of arbitrary type?

python,abaqus

is there a way to create an empty object such that the += operator would behave simply like a regular assignment = regardless of the type on the r.h.s? Sure. Just write a class and define your __add__ method to return the RHS unmodified. class DummyItem: def __add__(self, other):...