Changes between Version 14 and Version 15 of Documentation/UserGuide/TestCaseBatch


Ignore:
Timestamp:
2022-01-18T21:54:06+01:00 (2 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/TestCaseBatch

    v14 v15  
    2121#MSUB -q skylake 
    2222#MSUB -m store,work,scratch 
    23 #MSUB -A genXXX           # Set your project id. Most people working with 
     23#MSUB -A gen6328          # Set your project id. Most people working with 
    2424#                         # ORCHIDEE at LSCE belong to project gen6328 
     25 
     26 
     27## Go to current folder and execute the model 
     28cd ${BRIDGE_MSUB_PWD} 
    2529 
    2630 
    2731## Source same modules as used during compilation. See examples below depending on the configurations used. 
    2832# For ORCHIDEE_3 and more recent offline versions or coupled v6.2 and more recent versions: 
    29 #source ..../config/ORCHIDEE_OL/ARCH/arch-X64_IRENE.env 
    30 #source ..../config/LMDZOR_v6/ARCH/arch-X64_IRENE.env 
     33#source ../modipsl/config/ORCHIDEE_OL/ARCH/arch-X64_IRENE.env 
     34#source ../modipsl/config/LMDZOR_v6/ARCH/arch-X64_IRENE.env 
    3135# For ORCHIDEE_2_0, 2_1, 2_2 and coupled models v6.1.x: 
    32 #source /ccc/cont003/home/igcmg/igcmg/MachineEnvironment/irene/env_irene 
     36# source /ccc/cont003/home/igcmg/igcmg/MachineEnvironment/irene/env_irene 
    3337 
    3438 
    35 ## Go to current folder and execute the model 
    36 cd ${BRIDGE_MSUB_PWD} 
    37 /usr/bin/time ccc_mprun -n 32 ./orchidee_ol 
     39## Create a run_file to be used to lauch with XIOS in server mode 
     40# Note: 31+1 should be equal the number set in the header. For example, if you set 16 in the header, set 15 for orchidee and keep 1 for xios.  
     41#       If you want to run LMDZ, change orchidee_ol_prod into the name for the lmdz executable. 
     42rm -f run_file 
     43echo "31 ./orchidee_ol_prod" > run_file 
     44echo "1 ./xios_server_prod.exe " >> run_file 
     45chmod +x run_file 
     46 
     47 
     48## Launch the executables 
     49/usr/bin/time ccc_mprun -E-K1  -f ./run_file 
     50 
    3851}}} 
    3952