Submission Template Example

The examples in this section provide the content and syntax of a typical submission template file. These examples may need to be modified to utilize the paths and commands that are appropriate for your environment.

Default submission templates are provided as part of the Abaqus Simulation Engine installation in the following directory:

install_root/platform/SIMULIA_specifics/site

The format of the submission template depends on the queue system:

Related Topics
Creating the Submission Template

Windows HPC

<Job xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 SoftwareLicense=""
 MaximumNumberOfProcessors="%Cores%"
 MinimumNumberOfProcessors="%Cores%"
 Runtime="Infinite"
 IsExclusive="true"
 Priority="Normal"
 Name="%JobName%"
 Project=""
 RunUntilCanceled="false">

    <Tasks xmlns="http://www.microsoft.com/ComputeCluster/">

        <!-- Provide information for job submission -->
        <Task MaximumNumberOfProcessors="%Cores%"
         MinimumNumberOfProcessors="%Cores%"
         Depend=""
         WorkDirectory="%WorkDir%"
         Stdout="%JobName%.out"
         Stderr="%JobName%.err"
         Name="task1"
         CommandLine="%Command%"
         IsExclusive="false"
         IsRerunnable="true"
         Runtime="Infinite">

        <EnvironmentVariables>
            <!-- Set path to Execution Engine executables -->
            <Variable>
                <Name>SMASVT_PATH</Name>
                <Value>%SMASVT_PATH%</Value>
            </Variable>
            <Variable>
                <Name>TMPDIR</Name>
                <Value>c:/temp</Value>
            </Variable>
        </EnvironmentVariables>

        </Task>

    </Tasks>

</Job>

LSF

#!/bin/csh
#BSUB -J %JobName%
#BSUB -n %Cores%

The following line must be added to the default template:
#BSUB -q queue_name

setenv PATH %SMASVT_PATH%
setenv LD_LIBRARY_PATH %SMASVT_PATH%

%Command%