nastran
1. How to Access the Software
module load TECHNICS module load nastran |
2. Example Batch Script
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=NASTRAN_SERIAL ### File/Path to which the output will be written to, %J is the job ID #SBATCH --output=NASTRAN_SERIAL.%J ### Request the time you need for execution. The full format is D-HH:MM:SS ### You must at least specify minutes or days and hours and may add or ### leave out any other parameters #SBATCH --time=80 ### Request the amount of memory you need for your job. ### You can specify this in either MB (1024M) or GB (4G). #SBATCH --mem-per-cpu=1024M ### Change to the work directory, if needed #cd /home/user/workdirectory ### load modules and execute module load TECHNICS module load nastran nastran input_data_file sdir=$TMP [keywords...] |