Hi Cooken,
Thanks for your reply.
So,If in my model,I only need Vonmisses stress and displacement value for every timestep
I just need to below Macros right?
mdb.models['Model-1'].fieldOutputRequests['S'].setValuesInStep()
mdb.models['Model-1'].fieldOutputRequests['U'].setValuesInStep()
And...
Hi,
I have the following script,which generates an ODB File.
My model is a simple Structure,consisting of circular beams.
When I am running the above script,its generating an ODB of size 10 GB.
From the ODB, I only need to retrieve Vonmisses stress, Displacement.
Script:
# -*- coding: mbcs...
Hi,
I have the following script,which generates an ODB File.
My model is a simple Structure,consisting of circular beams.
When I am running the above script,its generating an ODB of size 10 GB.
From the ODB, I only need to retrieve Vonmisses stress, Displacement.
Script:
# -*- coding: mbcs...
Hi,
I wrote the following function
def RetrieveSetStressValues1(odb1,lastFrame):
SetList = []
SetList = RetrieveAllSetNames()
assembly = odb1.rootAssembly
Stress = odb1.steps['Step-1'].frames[1].fieldOutputs['S']
for SetIdx in range(len(SetList)):
elemset =...
Hi,
I am trying to load my ODB File and then trying to retrieve Vonmisses stress data for a particular element
I basically have a set named 'DISP_END_SET'.I am getting the set Object from Assembly .
Here is my macro:
odb = session.openOdb(name= 'H:\\MiniThessis\\MaterialModelling\\Job-4.odb')...
Hi,
I have an ABAQUS script/Macro,which I am unable to run without launching ABAQUS.
The following approach has been followed to run the ABAQUS Script,without launching GUI.
->Open ABAQUS Command line
->Change the destination there to the path of the script location.
->then I have enetered...
Hi,
Under Material properties tab,I could not find any option to input tensile yieldstrength and compressive yield strength .
Also,How can one apply load on an edge in ABAQUS? I tried the option "LineLoad" , but it requires entire body as an input
I would be really glad,if someone can explain...
Hi Mustaine,
Thanks a lot for your reply.
I have written a similar script for retrieving VonMisses stress data
xy1 = session.xyDataListFromField(odb=o1, outputPosition=ELEMENT_NODAL, variable=((
Variable, INTEGRATION_POINT, ((INVARIANT, ParameterName), )), ), elementSets=(...
Hi Mustaine,
When I say,print xy[0], it prints out "[(1.0, 0.00329504604451358)]". How do I print out only the second value.
I tried out with xy[0][0} as well as xy[0][1],but I am not getting the value as "0.00329504604451358".
Hi Mustaine,
Thanks for your reply.
I could now retrieve the displacement value.
I have written the follwing macro lines and its working:
xy = session.xyDataListFromField(odb=o1, outputPosition=NODAL, variable=(('U',
NODAL, ((INVARIANT, 'Magnitude'), )), ), nodeLabels=(('PART-1-1'...
Hi Mustaine,
I have tried the above Macro,which you have suggested with my ODB.
When I tried to print it:
its printing this: [xyDataObjects['U:Magnitude PI: PART-1-1 N: 1837']].
How do I retireve the displacement value from this xyObject. Please explain.I guess,we need to add one more macro...
Hi Mustaine,
If I am writing these 3 lines to retrieve xy data object for displacement.
odb = session.odbs['H:/MiniThessis/MaterialModelling/First_Test.odb']
session.xyDataListFromField(odb=odb, outputPosition=NODAL, variable=(('U',
NODAL, ((INVARIANT, 'Magnitude'), )), )...