Changes between Version 60 and Version 61 of DevelopmentActivities/ORCHIDEE-CNP/howtoSPINAL
- Timestamp:
- 2018-02-27T17:31:13+01:00 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopmentActivities/ORCHIDEE-CNP/howtoSPINAL
v60 v61 19 19 20 20 == 1.2 tell libIGCM about the new input files (they are stored on the IMBALANCE-P disk on obelix) == 21 modify the variable "ListNonDel" in COMP/stomate.card: 22 {{{ 23 ListNonDel= (/home/surface3/common/CNP_files/revXX/lithology.nc, .), \ 24 (/home/surface3/common/CNP_files/revXX/USDA_SoilSuborder.nc, .), \ 25 (/home/surface3/common/CNP_files/LMDzINCA_DEP_2000.nc, .), \ 26 (/XXX/deposition_1850.nc, deposition.nc) 21 for deposition file (path,etc) see here: [https://forge.ipsl.jussieu.fr/orchidee/wiki/DevelopmentActivities/inputRoutine] 22 23 add/exchange these files in list of "[InitialStateFiles]" in COMP/sechiba.card: 24 {{{ 25 (/home/surface3/common/CNP_files/rev02/USDA_SoilSuborder.nc, USDA_SoilSuborder.nc), \ 26 (/home/surface3/common/CNP_files/rev02/soils_param.nc, soils_param.nc), \ 27 (/home/surface3/common/CNP_files/rev02/lithology.nc, lithology.nc) 27 28 }}} 28 29 REMARK: make sure there are no blanks behind the "\"! 29 30 30 for deposition file (path,etc) see here: [https://forge.ipsl.jussieu.fr/orchidee/wiki/DevelopmentActivities/inputRoutine] 31 32 add/exchange these files in list of "[InitialStateFiles]" in COMP/sechiba.card: 33 {{{ 34 (/home/surface3/common/CNP_files/revXX/soils_param.nc, soils_param.nc), \ 35 (/home/surface3/common/CNP_files/revXX/soils_param_usda_new.nc, soils_param_usda.nc), \ 36 (/XXX/deposition_1850.nc, deposition.nc), \ 31 add/exchange these files in list of "[BoundaryFiles]" in COMP/sechiba.card: 32 {{{ 33 (/home/surface3/common/CNP_files/rev02/USDA_SoilSuborder.nc, USDA_SoilSuborder.nc), \ 34 (/home/surface3/common/CNP_files/rev02/soils_param.nc, soils_param.nc), \ 35 (/home/surface3/common/CNP_files/rev02/lithology.nc, lithology.nc), \ 36 (/home/surface3/common/CNP_files/rev02/deposition.nc, deposition.nc),\ 37 37 }}} 38 38 … … 42 42 SOILCLASS_FILE = soils_param_usda.nc 43 43 }}} 44 45 REMARK: Although the file with N deposition is used in sechiba we must add the file to the stomate.card.46 This is needed to ensure it is copied when we restart from a simulation with impose_cn. In that case, the N deposition variable will not be present in the sechiba_restart_out.nc but the libIGCM assumes all sechiba variables are present.47 48 REMARK: On obelix, one cannot have the same file in sechiba.card and stomate.card as it is not allowed to overwrite any file.49 44 50 45 … … 54 49 {{{ 55 50 [BoundaryFiles] 56 List= (/ccc/work/cont003/dsm/p529goll/AmaFACE_forcing/v01/deposition/deposition_${CyclicYear}.nc, deposition.nc) 57 }}} 58 59 as well as(!) in COMP/stomate.card: 60 {{{ 61 ListNonDel= (${R_IN}/SRF/reftemp.nc, .),\ 62 (/home/surface3/common/CNP_files/revXX/lithology.nc, .), \ 63 (/home/surface3/common/CNP_files/LMDzINCA_DEP_2000.nc, .), \ 64 (/XXX/deposition_${CyclicYear}.nc, .) 65 }}} 66 51 List= (/home/surface3/common/CNP_files/deposition/deposition_${CyclicYear}.nc, deposition.nc) 52 }}} 67 53 68 54 … … 94 80 95 81 === 1.3.2 other 96 97 set the IO frequency to avoid crashes in PARAM/run.def98 {{{99 # Writefrequency in seconds in sechiba_history.nc100 # default = 86400.0101 WRITE_STEP = 1800.0102 103 # Writefrequency in days in stomate_history.nc104 # default = 10.105 STOMATE_HIST_DT = 1106 }}}107 108 82 Make sure the 11-layer hydrology & scheme is used by settting it explicitly to "y" ; this is the default hydrological scheme in ORCHIDEE-CN-P (r4166). If it is on "_AUTO_" it will cause a stop of the orchidee executable. 109 83 For activating the 11-layer hydrology see here [http://forge.ipsl.jussieu.fr/orchidee/wiki/DevelopmentActivities/ORCHIDEE-CNP/activate11HYDRO]. … … 111 85 add a set of parameters with their values from the ORCHIDEE-CAN components as well as for the nutrient components to the PARAM/run.def. Make sure you do not overwrite PARAM/run.def but add the additional parameters. 112 86 {{{ 113 cp /home/surface3/common/CNP_files/rev XX/run.def PARAM/run.def87 cp /home/surface3/common/CNP_files/rev02/run.def PARAM/run.def 114 88 }}} 115 89