TSI06
Mechanical
- Mar 16, 2011
- 2
Hello everybody,
I am a newbie in Abaqus. I want to program a model in pyton script. When i run my Pyton script (with abaqus) i want to start the analyse of the job. For that i make the job with the follow command:
mdb.Job(atTime=None, contactPrint=OFF, description='', echoPrint=OFF,
explicitPrecision=SINGLE, getMemoryFromAnalysis=True, historyPrint=OFF,
memory=50, memoryUnits=PERCENTAGE, model=myModel, modelPrint=OFF,
multiprocessingMode=DEFAULT, name=nameJob, nodalOutputPrecision=SINGLE,
numCpus=1, numDomains=1, parallelizationMethodExplicit=DOMAIN, queue=None,
scratch='', type=ANALYSIS, userSubroutine='isotropic2F.for', waitHours=0, waitMinutes=0)
After that i want to begin the analyse thus i want to use the command submit(...)
I found in a tutorial for using this command, i must use
import job (before)
and if i understand i must use the command mdb.jobs[submit(name job)].
I don't arrive to use this command .
Could you help me to understand how is the syntax.
Thank you
I am a newbie in Abaqus. I want to program a model in pyton script. When i run my Pyton script (with abaqus) i want to start the analyse of the job. For that i make the job with the follow command:
mdb.Job(atTime=None, contactPrint=OFF, description='', echoPrint=OFF,
explicitPrecision=SINGLE, getMemoryFromAnalysis=True, historyPrint=OFF,
memory=50, memoryUnits=PERCENTAGE, model=myModel, modelPrint=OFF,
multiprocessingMode=DEFAULT, name=nameJob, nodalOutputPrecision=SINGLE,
numCpus=1, numDomains=1, parallelizationMethodExplicit=DOMAIN, queue=None,
scratch='', type=ANALYSIS, userSubroutine='isotropic2F.for', waitHours=0, waitMinutes=0)
After that i want to begin the analyse thus i want to use the command submit(...)
I found in a tutorial for using this command, i must use
import job (before)
and if i understand i must use the command mdb.jobs[submit(name job)].
I don't arrive to use this command .
Could you help me to understand how is the syntax.
Thank you