How to use TELEMAC

Software
Version
Cluster
TELEMAC
v8p4r0
Dardel

Here is an example script:

#!/bin/bash -l
# The -l above is required to get the full environment with modules

# Set the allocation to be charged for this job
#SBATCH -A XXXX-X-XX

# The name of the script is telemac
#SBATCH -J telemac

# Partition. In this case we want exclusive nodes so we choose "main"
#SBATCH -p main

# 10 minutes wall-clock time will be given to this job
#SBATCH -t 00:10:00

# Number of nodes
#SBATCH --nodes=1
# Number of MPI processes per node
#SBATCH --ntasks-per-node=32

##############################################################
# All bash and telemac commands should be written below 
# which should not be mixed with SLURM commands

# Load TELEMAC
ml add PDC/22.06
ml add telemac-mascaret/v8p4r0

# Run the executable and write the output into log.txt
runcode.py --ncsize=32 telemac2d t2d_malpasset-large.cas > log.txt 2>&1

Where we run on 1 node (32 processors in total) with 10 minutes.

And submit the job using command:

$ sbatch malpasset.sh

Disclaimer

PDC takes no responsibility for the correctness of results produced with the binaries. Always evaluate the binaries against known results for the systems and properties you are investigating before using the binaries for production jobs.

How to build TELEMAC