New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 3478 for branches/2012/dev_r3379_CMCC6_topbfm/NEMOGCM/CONFIG/GYRE_BFM/EXP00/runscript – NEMO

Ignore:
Timestamp:
2012-09-27T16:51:53+02:00 (12 years ago)
Author:
vichi
Message:

Updated namelist for GYRE_BFM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_r3379_CMCC6_topbfm/NEMOGCM/CONFIG/GYRE_BFM/EXP00/runscript

    r3399 r3478  
    1 #! /bin/sh -x 
     1#! /bin/sh  
    22 
    33#BSUB -a poe 
    4 #BSUB -J GYRE_BFM          # Name of the job. 
     4#BSUB -J GYRE_BFM         # Name of the job. 
    55#BSUB -o GYRE_BFM_%J.out  # Appends std output to file %J.out. 
    66#BSUB -e GYRE_BFM_%J.err  # Appends std error to file %J.out. 
    77#BSUB -P nemo 
    88#BSUB -q poe_short    # queue 
    9 #BSUB -n 4             # Number of CPUs 
    10 #BSUB -x  
     9#BSUB -n 4            # Number of CPUs 
     10##BSUB -x  
    1111###BSUB -R "span[ptile=32]" 
     12 
     13set -evx 
    1214 
    1315export MP_WAIT_MODE=poll 
     
    1921export MP_TASK_AFFINITY=core 
    2022 
    21 workdir="/data/ans017/EXPERIMENTS/GYRE_BFM" 
     23EXP="EXP00" 
     24 
     25workdir="/data/ans033/EXPERIMENTS/GYRE_BFM/${EXP}" 
    2226execdir=`pwd` 
    2327 
    24 cd $workdir 
     28if [ ! -d ${workdir} ] ; then 
     29  mkdir -p ${workdir} 
     30fi 
     31 
     32cd ${workdir} 
    2533rm -rf * 
     34# Copy files to exp folder 
     35cp ${execdir}/opa ./opa.x 
    2636cp ${execdir}/* ./ 
    2737 
    28 time mpirun.lsf opa 
     38# Launch the model 
     39 
     40time mpirun.lsf opa.x  
     41 
     42echo " ${EXP} DONEEE!!!" 
     43 
Note: See TracChangeset for help on using the changeset viewer.