- Timestamp:
- 01/19/11 23:17:36 (14 years ago)
- Location:
- CMIP5/historical/v3.historical1
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
CMIP5/historical/v3.historical1/COMP/lmdz.card
r1239 r1253 4 4 [UserChoices] 5 5 ByPass_hgardfou_teta=n 6 ByPass_hgardfou_mats= n6 ByPass_hgardfou_mats= n 7 7 LMDZ_NbPeriod_adjust=3 8 8 # LMDZ_NbPeriod_adjust=0 … … 124 124 GatherWithInternal = (lon, lat, presnivs, time_counter, time_counter_bnds) 125 125 TimeSeriesVars2D = (bils, cldh, cldl, cldm, cldq, cldt, evap, flat, iwp, lwp, pbase, ptop, precip, pluc, plul, prw, psol, rh2m, rh2m_min, rh2m_max, q2m, sens, sicf, slp, soll, sols, LWdnSFC, LWdnSFCclr, SWdnSFC, SWdnSFCclr, SWdnTOA, LWupSFCclr,SWupSFC, SWupSFCclr, SWupTOA, SWupTOAclr, t2m, t2m_max, t2m_min, topl, topl0, tops, tsol, u10m, v10m, wind10m, wind10max) 126 ChunckJob2D = 50Y126 ChunckJob2D = 200Y 127 127 TimeSeriesVars3D = (lwcon, iwcon, mc, rhum, temp, theta, ovap, geop, vitu, vitv, vitw, pres, paprs) 128 128 ChunckJob3D = 10Y … … 171 171 ChunckJob2D = NONE 172 172 TimeSeriesVars3D = (ta, zg, hus, hur, ua, va, wap) 173 ChunckJob3D = 10 Y173 ChunckJob3D = 100Y 174 174 Seasonal=OFF 175 175 -
CMIP5/historical/v3.historical1/COMP/lmdz.driver
r1172 r1253 62 62 ## Read LMDZ_NbPeriod_adjust option in lmdz.card 63 63 IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices LMDZ_NbPeriod_adjust 64 LMDZ_NbPeriod_adjust=${lmdz_UserChoices_LMDZ_NbPeriod_adjust}64 eval LMDZ_NbPeriod_adjust=\${lmdz_UserChoices_LMDZ_NbPeriod_adjust} > /dev/null 2>&1 65 65 66 66 if [ ${LMDZ_NbPeriod_adjust} -eq 0 ] ; then 67 67 IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices LMDZ_Bands_file_name 68 LMDZ_Bands_file_name=${lmdz_UserChoices_LMDZ_Bands_file_name}68 eval LMDZ_Bands_file_name=\${lmdz_UserChoices_LMDZ_Bands_file_name} > /dev/null 2>&1 69 69 fi 70 70 71 71 ## Read LMDZ_Freq_aero and LMDZ_Length_aero in lmdz.card 72 LMDZ_Freq_aero=${lmdz_UserChoices_LMDZ_Freq_aero}73 LMDZ_Length_aero=${lmdz_UserChoices_LMDZ_Length_aero}72 eval LMDZ_Freq_aero=\${lmdz_UserChoices_LMDZ_Freq_aero} > /dev/null 2>&1 73 eval LMDZ_Length_aero=\${lmdz_UserChoices_LMDZ_Length_aero} > /dev/null 2>&1 74 74 75 75 ## Read LMDZ_COSP_monthly LMDZ_COSP_daily and LMDZ_COSP_hf in lmdz.card 76 LMDZ_COSP_OK=${lmdz_UserChoices_LMDZ_COSP_OK}77 LMDZ_COSP_monthly=${lmdz_UserChoices_LMDZ_COSP_monthly}78 LMDZ_COSP_daily=${lmdz_UserChoices_LMDZ_COSP_daily}79 LMDZ_COSP_hf=${lmdz_UserChoices_LMDZ_COSP_hf}76 eval LMDZ_COSP_OK=\${lmdz_UserChoices_LMDZ_COSP_OK} > /dev/null 2>&1 77 eval LMDZ_COSP_monthly=\${lmdz_UserChoices_LMDZ_COSP_monthly} > /dev/null 2>&1 78 eval LMDZ_COSP_daily=\${lmdz_UserChoices_LMDZ_COSP_daily} > /dev/null 2>&1 79 eval LMDZ_COSP_hf=\${lmdz_UserChoices_LMDZ_COSP_hf} > /dev/null 2>&1 80 80 81 81 ## Read LMDZ_NMC_monthly LMDZ_NMC_daily and LMDZ_NMC_hf in lmdz.card 82 LMDZ_NMC_monthly=${lmdz_UserChoices_LMDZ_NMC_monthly}83 LMDZ_NMC_daily=${lmdz_UserChoices_LMDZ_NMC_daily}84 LMDZ_NMC_hf=${lmdz_UserChoices_LMDZ_NMC_hf}82 eval LMDZ_NMC_monthly=\${lmdz_UserChoices_LMDZ_NMC_monthly} > /dev/null 2>&1 83 eval LMDZ_NMC_daily=\${lmdz_UserChoices_LMDZ_NMC_daily} > /dev/null 2>&1 84 eval LMDZ_NMC_hf=\${lmdz_UserChoices_LMDZ_NMC_hf} > /dev/null 2>&1 85 85 86 86 IGCM_debug_PopStack "ATM_Initialize" … … 193 193 ## Read ByPass_hgardfou_teta option in lmdz.card --> divide teta* by 2 if [ $ByPass_hgardfou_teta = 1 ] 194 194 IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_teta 195 ByPass_hgardfou_teta=${lmdz_UserChoices_ByPass_hgardfou_teta}195 eval ByPass_hgardfou_teta=\${lmdz_UserChoices_ByPass_hgardfou_teta} > /dev/null 2>&1 196 196 if [ ${ByPass_hgardfou_teta} = y ] ; then 197 197 awk '{ if ($0 ~ /^teta.*=/) {split($0,a,"=") ; print a[1]"="a[2]/2"."} else print $0}' gcm.def > gcm.def.tmp … … 207 207 ## Read ByPass_hgardfou_mats option in lmdz.card --> purmats=y 2 if [ $ByPass_hgardfou_mats = 1 ] 208 208 IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/COMP/lmdz.card UserChoices ByPass_hgardfou_mats 209 ByPass_hgardfou_mats=${lmdz_UserChoices_ByPass_hgardfou_mats}209 eval ByPass_hgardfou_mats=\${lmdz_UserChoices_ByPass_hgardfou_mats} > /dev/null 2>&1 210 210 if [ ${ByPass_hgardfou_mats} = y ] ; then 211 211 sed -e "s/^purmats=.*/purmats=y/" gcm.def > gcm.def.tmp -
CMIP5/historical/v3.historical1/COMP/orchidee.card
r1171 r1253 12 12 [BoundaryFiles] 13 13 List= () 14 ListNonDel= ( )14 ListNonDel= (${R_BC}/SRF/${config_UserChoices_TagName}/PFTmap_1850to2005_AR5_LUHa.rc2.nc, PFTmap.nc) 15 15 16 16 [SmoothFiles] 17 List=( ${R_BC}/SRF/${config_UserChoices_TagName}/PFTmap_1850to2005_AR5_LUHa.rc2/PFTmap_IPCC_${year_p1}.nc, PFTmap.nc, 12:12:)17 List=() 18 18 19 19 [ParametersFiles] -
CMIP5/historical/v3.historical1/PARAM/iodef.xml
r1248 r1253 435 435 <field ref="ice_cover" name="soicecov" description="sea_ice_area_fraction" /> 436 436 <field ref="BLT" name="blt" description="Barrier Layer Thickness" level="3" /> 437 <field ref="mld|dt|" name="mld _dt02" description="Mixed Layer Depth |dt|=0.2 (ref.10m)"level="3" />437 <field ref="mld|dt|" name="mld|dt|" description="Mixed Layer Depth |dt|=0.2 (ref.10m)" level="3" /> 438 438 439 439 </file> -
CMIP5/historical/v3.historical1/config.card
r1171 r1253 9 9 [UserChoices] 10 10 #============================ 11 JobName= EXP0011 JobName=v3.historical1 12 12 #----- Short Name of Experiment 13 13 ExperimentName=historical 14 14 #----- DEVT TEST PROD 15 SpaceName= DEVT16 LongName="IPSLCM5A CMIP5 DEVT phase historical example with large outputs"15 SpaceName=PROD 16 LongName="IPSLCM5A CMIP5 PROD phase historical run with large outputs starting 1849-12-31 from picontrol2" 17 17 TagName=IPSLCM5A 18 18 #============================ … … 22 22 #-- "YYYY-MM-DD" 23 23 DateBegin=1850-01-01 24 DateEnd= 1850-12-3124 DateEnd=2005-12-31 25 25 #============================ 26 26 #-- 1Y, 1M, 5D, 1D Period Length of one trunk of simulation … … 33 33 #-- Total Number of Processors (minimum is 2 for a coupled configuration) 34 34 #JobNumProcTot=2 35 JobNumProcTot= 435 JobNumProcTot=8 36 36 #============================ 37 37 #-- Run Options : here for oasis coupling … … 56 56 OverRule=y 57 57 #D- Last day of the experience used as restart for all components 58 RestartDate=18 99-12-3158 RestartDate=1849-12-31 59 59 #D- Define restart simulation name for all components 60 # For historical simulation you have to start from an other simulation 61 RestartJobName=XXXXXXX 60 RestartJobName=piControl2 62 61 #D- Path Server Group Login 63 RestartPath= ${ARCHIVE}/IGCM_OUT/IPSLCM5A/DEVT/piControl62 RestartPath=/dmnfs/cont003/p86caub/IGCM_OUT/IPSLCM5A/PROD/piControl 64 63 65 64 #======================================================================== … … 192 191 #D- Do we rebuild parallel output, this flag determines 193 192 #D- frequency of rebuild submission (use NONE for DRYRUN=3) 194 RebuildFrequency= 5Y193 RebuildFrequency=2Y 195 194 #D- Do we rebuild parallel output from archive (use NONE to use SCRATCHDIR as buffer) 196 RebuildFromArchive= true195 RebuildFromArchive=NONE 197 196 #D- If you want to produce time series, this flag determines 198 197 #D- frequency of post-processing submission (NONE if you don't want)
Note: See TracChangeset
for help on using the changeset viewer.