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'), )), )...
Hello A.Jalal and Igor76,
Could you please explain,how can I retrieve net displacement of a node,if I know a node number
can you please write the macro for doing that?
Would be really helpful!
Hi,
I have been trying to record the macro for retrieving displacementdata from ABAQUS ODB File.I have picked a single node and tried to retrieve the displacement data for that particular node.
odb = session.odbs['H:/MiniThessis/MaterialModelling/First_Test.odb']...
Hi Mustaine3,
Thanks a lot for your help regarding, retrieving of element labels and node labels.
Could you please let me know,if I can retrieve an element label based on a node label.
For e.g: A node,labelled as "5" can be common for element 1 as well as 2.
So,is there any way if I can...
Hi Mustaine,
Finding stresses at nodes is another issue.
Please let me know,how can I retrieve the elements and node numbers available in a particular element set.
I have searched a lot in the python scripting reference,but I could not find the functions:
I am posting the script again,which I...
Hello,
I have written the following code:
odb = openOdb('H:\MiniThessis\MaterialModelling\Job-2.odb')
assembly = odb.rootAssembly
elsetName = 'SET-4'
elemset = assembly.elementSets[elsetName]
With the help of above code,I am able to retrieve the element set object using a...