Ask Your Question
3

Is it possible for someone to make FieldOutputRequestState functional in Abaqus Scripting?

asked 2021-10-17 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-12-18 13:00:00 +0000

devzero gravatar image

Yes, it is possible to make FieldOutputRequestState functional in Abaqus Scripting. This can be done by creating a FieldOutputRequest object and using its methods to specify the desired output variables and locations. The FieldOutputRequestState can then be set to "True" to activate the output request. Example code to do this:

# Create FieldOutputRequest object
myOutputRequest = mdb.models['Model-1'].FieldOutputRequest(name='myOutput', createStepName='Step-1', variables=('S','Mises','PE'), region=Region(cells=mdb.models['Model-1'].rootAssembly.instances['Part-1-1'].cells))

# Activate output request
myOutputRequest.setValues(reportMax=False, state=ON, frequency=1)

This example code sets up a FieldOutputRequest to output the stress, Mises stress, and plastic strain energy variables for all cells in Part-1-1 every 1 incremental step. The state=ON line activates the output request.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-17 11:00:00 +0000

Seen: 14 times

Last updated: Dec 18 '21