dytran
1. How to access the software
module load TECHNICS module load dytran |
2. Example batch script
#!/usr/local_rwth/bin/zsh ### Job name #SBATCH --job-name=DYTRAN ### File / path where STDOUT will be written, the %J is the job id #SBATCH --output=dytran-log.%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 memory you need for your job in MB #SBATCH --mem-per-cpu3900 ### Export an environment var export A_ENV_VAR=10 ### Change to the work directory cd $HOME/jobdirectory ### load modules and execute module load TECHNICS module load dytran # start non-interactive batch job dytran jid=input_data_file output=output_prefix [parameters...] |