Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.


Auszug

Crash Simulation Software - finite element and multiphysics program to analyse the nonlinear response of structures

...

Info

To obtain and checkout a product license please read Ansys Suite first. LS-DYNA specific support is provided by www.dynasupport.com.

...

"module add ansys/2023r1" provides:

executable / flagprecisionparallelizationmeaningrequirement
lsdynaSinglesingle precision, shared memory parallellsdyna_spSingleshared memory parallel
lsdyna_sp_mpp

Single

massively parallel processing

module add intel impi
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$I_MPI_ROOT/intel64/lib

lsdyna_dpDouble

shared memory parallel

lsdyna_dp_mpp

Double

massively parallel processing

module add intel impi
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$I_MPI_ROOT/intel64/lib-dp
double precision
-mpp -dis -np 96

distributed memory parallel on single 96-core-node

-mpp -dis -machines bcn1001:96:bcn1003:96

distributed memory parallel on multiple 96-core-nodes

To explore other settings it is recommend to start the general Ansys launcher GUI (command "launcher") and setup you specific setting. If you run the (test) job from this GUI it will print out the resulting terminal command. Then you can copy the resulting command/flags to your specific Slurm job script file.

Example Jobscript

Official examples e.g. a PipeWhip.k can be found at https://www.dynaexamples.com/introduction/Introduction/example-26

Codeblock
languagebash
titleThis is an example for a massively distributed memory job on 2 nodes with 40 tasks per node
#!/bin/bash
#SBATCH -t 00:10:00
#SBATCH --nodes=2
#SBATCH --tasks-per-node=4096
#SBATCH -L ansys
#SBATCH -p medium40standard96:test
#SBATCH --mail-type=ALL
#SBATCH --job-name=Whip

module add intel impi/2018.5 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$I_MPI_ROOT/intel64/lib
module add ansys/2023r1
export LSTC_FILE=$ANSYSLIC_DIR

lsdyna i=your_personal_input_file.k

echo "############### ANSYS LS-DYNA finished ################"

...