Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MintJulep on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Basic Command in Abaqus

Status
Not open for further replies.

TSI06

Mechanical
Joined
Mar 16, 2011
Messages
2
Location
FR
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top