You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 25 Next »

Information

Purpose: Finite Element Analysis
Latest version: 13.4
Licence: GNU GPL
Website: https://code-aster.org/spip.php?rubrique2_ext-link

Code_Aster is a computer-assisted engineering suite, with a focus on finite element methods.

The core of Code_Aster is a finite element solver for structural analysis, with additional programs for thermal flows, linear and non-linear static and dynamic analysis, fatigue, damage and fracture tools and multi-physics coupling. A companion open source pre- and post-processor, Salome, is also available.




SLURM Submit script example

For more information use the Job Script Generator.

aster_example.slm
#!/bin/bash
#SBATCH -J aster_example
#SBATCH -e aster_example.err
#SBATCH -o aster_example.out
#SBATCH -p std
#SBATCH -N 1
#SBATCH -n 12
#SBATCH --mem-per-cpu=4G

module load apps/code_aster/13.4

INPUT_DIR=${SLURM_SUBMIT_DIR}
OUTPUT_DIR=${SLURM_SUBMIT_DIR}

cd $SCRATCH
cp -r $INPUT_DIR/* $SCRATCH
as_run aster_example.export
cp ./* $OUTPUT_DIR


Sbatch options:

  • -JSpecify a name for the job allocation. The default is the name of the batch script.
  • -e: Specify a name for the error output file.
  • -o: Specify a name for the output file.
  • -p: Specify the name of the partition (queue) where the job will be submited. The default is std.
  • -N: Number of nodes requested for allocation
  • -n: Number of processes requested for allocation
  • --mem-per-cpu: Memory allocated per core.




  • No labels