|
Question QG-002:
How can I run the ADINA programs in batch mode with the PC Windows version?
Answer:
The ADINA programs on PC Windows are usually run in the interactive mode. However,
sometimes you may want to use the programs in batch mode in order to run several
jobs consecutively without user input (for example submitting jobs overnight).
The batch command to run ADINA-AUI is:
...\aui.exe -b -m <MEM>[b|w] <file>.[in|plo]
where ...\ refers to the full path where aui.exe is located. The memory value, <MEM>
is specified in bytes(b) or words(w). (1 word = 4 bytes on 32-bit Windows and 1 word = 8 bytes
on 64-bit Windows)
For example, to run the input file prob02.in in batch mode with 20 Megabytes of
memory the command will be (assuming ADINA is installed in c:\adinaNN\):
On 32-bit Windows (node-locked or floating license):
c:\adinaNN\x32\aui.exe -b -m 20mb prob02.in
On 64-bit Windows (node-locked license):
c:\adinaNN\x64\aui.exe -b -m 20mb prob02.in
On 64-bit Windows (floating license):
c:\adinaNN\bin\aui.exe -b -m 20mb prob02.in
Note that in specifying the <MEM> value, m can be used for Mega, k for Kilo,
and g for Giga.
|