Products Abaqus/Standard Abaqus/Explicit Command Summary
abaqus
job
job-name
analysis
datacheck
parametercheck
continue
convert
{
select
odb
state
all
}
recover
syntaxcheck
information
{
environment
local
memory
release
support
system
all
}
input
input-file
user
{
source-file
object-file
}
uniquelibs
oldjob
oldjob-name
fil
{
append
new
}
globalmodel
{
results file-name
ODB output database file-name
SIM database file-name
}
cpus
number-of-cpus
parallel
{
domain
loop
}
domains
number-of-domains
dynamic_load_balancing
{
on
off
}
mp_mode
{
mpi
threads
}
threads_per_mpi_process
number of threads per mpi process
standard_parallel
{
all
solver
}
gpus
number-of-gpgpus
memory
memory-size
interactive
background
queue
queue-name
after
time
double
{
explicit
both
off
constraint
}
scratch
scratch-dir
output_precision
{
single
full
}
resultsformat
{
odb
sim
both
}
port
co-simulation port-number
host
co-simulation hostname
csedirector
Co-Simulation Engine director host:port-number
timeout
co-simulation timeout value in seconds
unconnected_regions
{
yes
no
}
noFlexBody
license_type
{
token
credit
}
ssd_split
number-of-frequency-partitions
ssd_partition
frequency-partition-number
Command Line OptionsRequired Option
Mutually Exclusive Options That Determine Which Phases of an Analysis Are PerformedAll options are order independent. If none of these options is present, the analysis option is assumed. The convert option is an exception to the mutual exclusion rule: convert can appear with any option except datacheck, parametercheck, syntaxcheck, and information.
Additional Options Available for the Analysis Module
Additional Option Available for the Datacheck Module
ExamplesThe following examples illustrate the different functions and capabilities of the abaqus execution procedure. Running Analyses in Abaqus/StandardUse the following command to run a heat transfer analysis called “c8” in the background: abaqus analysis job=c8 background The following command runs the job c8 in the background and output the current environment settings to the log file: abaqus analysis job=c8 information=environment background The follow-up analysis to the heat transfer analysis c8 is “c10,” which is a static analysis that uses temperature data from c8 as input. The temperature data are read in from the c8 results file as predefined fields. The execution procedure scans the Abaqus/Standard input file for file dependencies of this sort. In this example the procedure looks for the c8 results file in the current directory with the extension .fil. The results file identifier can include a path name (see Input Syntax Rules), and the execution procedure then looks in the directory specified. In either case an error message is issued if the file does not exist. The following command is used to run the job c10 in the “long” queue: abaqus analysis job=c10 queue=long This job is next restarted as “c11,” using the final results from c10 as the starting point for a creep analysis. The following command is used to run this job in the default queue: abaqus analysis job=c11 oldjob=c10 queue= The following command is used to run an Abaqus/Standard analysis called “draw_imp” that imports the results from a previously run Abaqus/Explicit analysis called “draw_exp”: abaqus analysis job=draw_imp oldjob=draw_exp Running Analyses in Abaqus/ExplicitUse the following command to submit an Abaqus/Explicit analysis called “beam” to the default queue: abaqus analysis job=beam convert=all queue= Equivalent results would be obtained from the following series of commands: abaqus datacheck job=beam interactive abaqus continue job=beam queue= abaqus convert=all job=beam interactive The CPU-intensive analysis option is run in batch, while the other options are run interactively. Running Different Phases of an AnalysisUse the following command to perform a parameter check run on an input file called “parmodel”: abaqus job=parmodel parametercheck Use the following command to perform a data check run on an input file called “parmodel” (the parameter check is done again if this job is run after the previous one): abaqus job=parmodel datacheck The following command continues the previous datacheck job to execute the analysis: abaqus job=parmodel continue |