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,
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']...
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...
Hello,
After performing FEM Simulation in ABAQUS,I am trying to retrieve data like vonmisses stress,strain etc.
Below,I am describing the procedure,I used for retrieving the data using Graphical User Interface.
1)I have created a seperate set,which I named it as SET-4..This is my interested...
Hello Everyone,
I have been trying to create a Tapered beam in ABAQUS.
I Have followed the below steps:
1) While defining the section,I have choosen "Before analysis" option in "Section Integration"
2) Then,I have choosen "Tapered" option in "Beam Shape along length"
3) Then,it asks me to...
Hello Everyone,
Can someone let me know,if it is possible to run multiple ABAQUS Jobs at a time via command prompt
As of now,I am using the following command:
abaqus job=Job-1 cpus=4 int ask_delete=OFF
Here,Job-1.inp is my input "INP" file.Now,Can I run multiple jobs in this command?
Thanks...
Hello,
I am using a Material 1.4404 in my analysis.
Along with the Youngs Modulus,density and poisson ratio, I am also defining Johnson Cook(also strain rate dependency) Plastic hardening parameters:
Following are the values used:
A = 514
B = 514
C = 0.042
n = 0.508
m = 0.533
strain rate =...