source: palm/trunk/SCRIPTS/.palm.config.eddy_ifort @ 3999

Last change on this file since 3999 was 3346, checked in by raasch, 5 years ago

job_id renamed run_id in configuration files, job_id is set for compatibility reasons with older versions of config files

File size: 3.0 KB
Line 
1#$Id: .palm.config.eddy_ifort 3193 2018-08-07 09:55:00Z witha $
2#column 1          column 2
3#name of variable  value of variable (~ must not be used)
4#----------------------------------------------------------------------------
5%base_data           $HOME/palm/current_version/JOBS
6%output_data         $WORK/palm/current_version/JOBS
7%base_directory      $HOME/palm/current_version
8%source_path         $HOME/palm/current_version/trunk/SOURCE
9%user_source_path    $base_directory/JOBS/$run_identifier/USER_CODE
10%fast_io_catalog     $WORK/palm_restart_tmp
11%local_jobcatalog    $HOME/job_queue
12################################################################################
13# Replace abcd1234 by your username on Eddy:
14################################################################################
15%local_username      abcd1234
16#
17%defaultqueue        eddy.p
18%submit_command      sbatch
19#
20%compiler_name       mpiifort
21%compiler_name_ser   ifort
22%cpp_options         -DMPI_REAL=MPI_DOUBLE_PRECISION -DMPI_2REAL=MPI_2DOUBLE_PRECISION -D__lc -D__netcdf -D__netcdf4 -D__parallel
23%make_options        -j 4
24%compiler_options    -O3 -mtune=native -march=native -cpp -I/cm/shared/uniol/software2/netCDF-Fortran/4.4.4-intel-2017a/include
25%linker_options      -O3 -mtune=native -march=native -cpp -lnetcdff -lnetcdf
26%execute_command     mpirun -n {{mpi_tasks}} palm
27%execute_command_for_combine     mpirun  -n 1  ./combine_plot_fields.x
28%memory              2333
29%module_commands     module load PALMDependencies/icc     
30#
31# BATCH-directives to be used for batch jobs
32BD:#!/bin/bash
33BD:#SBATCH -J {{run_id}}
34BD:#SBATCH -t {{timestring}}
35BD:#SBATCH -n {{mpi_tasks}}
36BD:#SBATCH -N {{nodes}}
37BD:#SBATCH --cpus-per-task 1
38BD:#SBATCH -p {{queue}}
39BD:#SBATCH -o {{job_protocol_file}}
40BD:#SBATCH -e {{job_protocol_file}}
41BD:#SBATCH --mem-per-cpu {{memory}}
42BD:#SBATCH --exclusive
43#
44#----------------------------------------------------------------------------
45# INPUT-commands, executed before running PALM - lines must start with "IC:"
46#----------------------------------------------------------------------------
47IC:export ATP_ENABLED=1
48IC:export MPICH_GNI_BTE_MULTI_CHANNEL=disabled
49IC:ulimit  -s unlimited
50#
51#----------------------------------------------------------------------------
52# ERROR-commands - executed when program terminates abnormally
53#----------------------------------------------------------------------------
54EC:[[ \$locat = execution ]]  &&  cat  RUN_CONTROL
55#
56#----------------------------------------------------------------------------
57# OUTPUT-commands - executed when program terminates normally
58#----------------------------------------------------------------------------
59#
60# Combine 1D- and 3D-profile output (these files are not usable for plotting)
61OC:[[ -f LIST_PROFIL_1D     ]]  &&  cat  LIST_PROFIL_1D  >>  LIST_PROFILE
62OC:[[ -f LIST_PROFIL        ]]  &&  cat  LIST_PROFIL     >>  LIST_PROFILE
63#
64# Combine all particle information files
65OC:[[ -f PARTICLE_INFOS/_0000 ]]  &&  cat  PARTICLE_INFOS/* >> PARTICLE_INFO
Note: See TracBrowser for help on using the repository browser.