-
1
- #1
brep
Mechanical
- Feb 15, 2005
- 301
Perhaps some might find this useful...
There is a nice command that can be added to the abaqus_v6.env file called onJobCompletion()
In the abaqus_v6.env, create a line:
def onJobCompletion():
and then (using proper indents of course), add the commands/functions etc that you want to be called whenever a job completes. For instance you can send an email, or even play a sound! For the latter try this (on windows)
def onJobCompletion():
import winsound
winsound.PlaySound('d:\temp\done.wav', winsound.SND_FILENAME)
There is a nice command that can be added to the abaqus_v6.env file called onJobCompletion()
In the abaqus_v6.env, create a line:
def onJobCompletion():
and then (using proper indents of course), add the commands/functions etc that you want to be called whenever a job completes. For instance you can send an email, or even play a sound! For the latter try this (on windows)
def onJobCompletion():
import winsound
winsound.PlaySound('d:\temp\done.wav', winsound.SND_FILENAME)