source: palm/trunk/SCRIPTS/.palm.config.crayh @ 2480

Last change on this file since 2480 was 2480, checked in by maronga, 7 years ago

added support for specifying project account in PBS

  • Property svn:keywords set to Id
File size: 3.2 KB
Line 
1#$Id: .palm.config.crayh 2480 2017-09-19 06:24:14Z maronga $
2#column 1          column 2
3#name of variable  value of variable (~ must not be used)
4#----------------------------------------------------------------------------
5%base_directory      $HOME/palm/current_version
6%base_data           ~/palm/current_version/JOBS
7%source_path         $HOME/palm/current_version/trunk/SOURCE
8%user_source_path    $base_directory/JOBS/$fname/USER_CODE
9%fast_io_catalog     /gfs2/work/niksiraa
10%local_jobcatalog    /home/raasch/job_queue
11%remote_jobcatalog   /home/h/niksiraa/job_queue
12#
13%local_ip            130.75.105.103
14%local_hostname      bora_imuk
15%local_username      raasch
16%remote_ip           130.75.4.1
17%remote_hostname     cray-han
18%remote_loginnode    hlogin1
19%remote_username     niksiraa
20%ssh_key             id_rsa_hlrn
21%defaultqueue        mpp2testq
22%submit_command      /opt/moab/default/bin/msub -E
23#
24%compiler_name       ftn
25%compiler_name_ser   ftn
26%cpp_options         -e Z -DMPI_REAL=MPI_DOUBLE_PRECISION -DMPI_2REAL=MPI_2DOUBLE_PRECISION -D__parallel -D__netcdf -D__netcdf4 -D__netcdf4_parallel -D__fftw
27%make_options        -j 4
28%compiler_options    -em -O3 -hnoomp -hnoacc -hfp3 -hdynamic
29%linker_options      -em -O3 -hnoomp -hnoacc -hfp3 -hdynamic -dynamic
30%execute_command     aprun  -n {{MPI_TASKS}}  -N {{TASKS_PER_NODE}}  palm
31%memory              2300
32%module_commands     module load fftw cray-hdf5-parallel cray-netcdf-hdf5parallel
33%login_init_cmd      module switch craype-ivybridge craype-haswell
34#
35# BATCH-directives to be used for batch jobs. If $-characters are required, hide them with \\\
36BD:#!/bin/bash
37BD:#PBS -A {{PROJECT_ACCOUNT}}
38BD:#PBS -N {{JOB_ID}}
39BD:#PBS -l walltime={{CPU_HOURS}}:{{CPU_MINUTES}}:{{CPU_SECONDS}}
40BD:#PBS -l nodes={{NODES}}:ppn={{TASKS_PER_NODE}}
41BD:#PBS -o {{JOBFILE}}
42BD:#PBS -j oe
43BD:#PBS -q {{QUEUE}}
44#
45# BATCH-directives for batch jobs used to send back the jobfile from a remote to a local host
46BDT:#!/bin/bash
47BDT:#PBS -A {{PROJECT_ACCOUNT}}
48BDT:#PBS -N job_protocol_transfer
49BDT:#PBS -l walltime=00:30:00
50BDT:#PBS -l nodes=1:ppn=1
51BDT:#PBS -o {{JOB_TRANSFER_PROTOCOL_FILE}}
52BDT:#PBS -j oe
53BDT:#PBS -q dataq
54#
55#----------------------------------------------------------------------------
56# INPUT-commands, executed before running PALM - lines must start with "IC:"
57#----------------------------------------------------------------------------
58IC:export ATP_ENABLED=1
59IC:export MPICH_GNI_BTE_MULTI_CHANNEL=disabled
60IC:ulimit  -s unlimited
61#
62#----------------------------------------------------------------------------
63# ERROR-commands - executed when program terminates abnormally
64#----------------------------------------------------------------------------
65EC:[[ \$locat = execution ]]  &&  cat  RUN_CONTROL
66#
67#----------------------------------------------------------------------------
68# OUTPUT-commands - executed when program terminates normally
69#----------------------------------------------------------------------------
70#
71# Combine 1D- and 3D-profile output (these files are not usable for plotting)
72OC:[[ -f LIST_PROFIL_1D     ]]  &&  cat  LIST_PROFIL_1D  >>  LIST_PROFILE
73OC:[[ -f LIST_PROFIL        ]]  &&  cat  LIST_PROFIL     >>  LIST_PROFILE
74#
75# Combine all particle information files
76OC:[[ -f PARTICLE_INFOS/_0000 ]]  &&  cat  PARTICLE_INFOS/* >> PARTICLE_INFO
Note: See TracBrowser for help on using the repository browser.