Changes between Version 69 and Version 70 of Doc/FAQ


Ignore:
Timestamp:
01/26/21 15:13:15 (3 years ago)
Author:
acosce
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/FAQ

    v69 v70  
    142142 
    143143 
    144 Example : To rerun v3.historicalAnt1 to recompute a whole year (e.g. 1964) you must : 
     144Example : To rerun v3.hist to recompute a whole year (e.g. 1964) you must : 
    145145 * On the file server (STORE), create the necessary RESTART file. 
    146146{{{ 
    147 ## Directory 
    148 mkdir STORE/....IGCM_OUT/IPSLCM5A/REDO/historicalAnt/v3.historicalAnt1 
    149 cd STORE/....IGCM_OUT/IPSLCM5A/REDO/historicalAnt/v3.historicalAnt1 
     147## Directory REDO  
     148mkdir STORE/....IGCM_OUT/IPSLCM5A/REDO/historical/v3.hist 
     149cd STORE/....IGCM_OUT/IPSLCM5A/REDO/historical/v3.hist 
     150 
    150151# RESTART 
    151152mkdir -p RESTART ; cd RESTART 
    152 ln -s ../../../../PROD/historicalAnt/v3.historicalAnt1/RESTART/v3.historicalAnt1_19640831_restart.nc v3.historicalAnt1REDO_19640831_restart.nc 
    153 }}} 
    154  * There is nothing to do for the Bands file, it's save at previous period in PARAM directory, and the simulation know where to find it.  
    155  * If you are running a coupled model : On the scratch disk ($CCCSCRATCHDIR/IGCM_OUT), create the mesh_mask file 
    156 {{{ 
    157 mkdir SCRATCH/....IGCM_OUT/IPSLCM5A/REDO/historicalAnt/v3.historicalAnt1REDO 
    158 cd SCRATCH/....IGCM_OUT/IPSLCM5A/REDO/historicalAnt/v3.historicalAnt1REDO 
     153ln -s ../../../../PROD/historical/v3.hist/RESTART/v3.hist_19631231_restart.nc v3.hist_19631231_restart.nc 
     154}}} 
     155 
     156 * If you are running a coupled model : On the scratch disk (SCRATCH/IGCM_OUT), create the mesh_mask file 
     157 
     158{{{ 
     159mkdir SCRATCH/....IGCM_OUT/IPSLCM5A/REDO/historical/v3.hist 
     160cd SCRATCH/....IGCM_OUT/IPSLCM5A/REDO/historical/v3.hist 
     161 
    159162# mesh_mask 
    160163mkdir -p OCE/Output 
    161164cd OCE/Output 
    162 ln -s ../../../../../PROD/historicalAnt/v3.historicalAnt1/OCE/Output/v3.historicalAnt1_mesh_mask.nc v3.historicalAnt1REDO_mesh_mask.nc 
    163 cd ../.. 
    164 }}} 
     165ln -s ../../../../../PROD/historical/v3.hist/OCE/Output/v3.hist_mesh_mask.nc v3.hist_mesh_mask.nc 
     166 
     167}}} 
     168 
    165169 * On the computing machine: 
    166170   * create a new directory 
    167171{{{ 
    168 cp -pr v3.historicalAnt1 v3.historicalAnt1REDO 
    169 }}} 
     172cp -pr v3.hist v3.histREDO 
     173}}} 
     174 
    170175   * in this new directory, change the run.card file and set the following parameters to: 
    171176{{{ 
    172 OldPrefix= v3.historicalAnt1_19631231 
    173177PeriodDateBegin= 1964-01-01 
    174178PeriodDateEnd= 1964-01-31 
    175 CumulPeriod= xxx # Specify the proper "cad" value, i.e. the same month in the run.card cookie (ARGENT) 
     179CumulPeriod= xxx # Specify the proper "cad" value, i.e. the same month in the run.card cookie 
    176180PeriodState= OnQueue 
    177 }}} 
    178    * change the config.card file to one pack period (1 year), do not do any post processing, start rebuild month by month (only for ORCHIDEE_OL) and specify !PackFrequency. 
    179 {{{ 
    180 JobName=v3.historicalAnt1 
     181SubmitPath=....../v3.histREDO 
     182}}} 
     183 
     184   * change the config.card file to one pack period (1 year), do not do any post processing, start rebuild month by month (only for ORCHIDEE_OL) and specify !PackFrequency. ''!JobName and !DateBegin will not be changed.''  
     185 
     186{{{ 
     187JobName=v3.hist 
    181188... 
    182189SpaceName=REDO 
     
    191198SeasonalFrequency=NONE 
    192199}}} 
     200 
    193201   * you don't need to change the name of the simulation  
    194202   * restart the simulation : 
     203 
    195204{{{ 
    196205vi run.card # check one more time 
    197 vi Job_v3.historicalAnt1 # check the time parameters and names of the output scripts 
    198 ccc_msub  Job_v3.historicalAnt1  
    199 }}} 
     206vi Job_v3.hist # check the time parameters and names of the output scripts 
     207ccc_msub  Job_v3.hist  
     208}}} 
     209 
    200210  * once the job is finished, if you are running a coupled mode : check that the solver.stat files are identical. The solver.stat files are stored in DEBUG : 
    201211 {{{ 
    202 sdiff OCE/Debug/v3.historicalAnt1REDO_19640901_19640930_solver.stat $DMFDIR/../p86maf/IGCM_OUT/IPSLCM5A/PROD/historicalAnt/v3.historicalAnt1/OCE/Debug/v3.historicalAnt1_19640901_19640930_solver.stat 
     212sdiff STORE/.../REDO/.../OCE/Debug/v3.hist_19640901_19640930_solver.stat STORE/IGCM_OUT/IPSLCM5A/PROD/historical/v3.hist/OCE/Debug/v3.hist_19640901_19640930_solver.stat 
    203213}}} 
    204214