Changes between Version 36 and Version 37 of Documentation/UserGuide/TestCase1


Ignore:
Timestamp:
2022-01-17T16:44:25+01:00 (2 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/TestCase1

    v36 v37  
    2020=== Executable orchidee_ol === 
    2121Install and compile the model to get the executable orchidee_ol. You can use orchidee_ol_prod or orchidee_ol_debug depending on the compilation you activated. Read more here: wiki:Documentation/UserGuide/InstallingORCHIDEEBasic 
     22{{{ 
     23mkdir RUN1; cd RUN1 
     24ln -s /pathtoyourinstallation/modipsl/bin/orchidee_ol_prod . 
     25}}} 
    2226 
    2327=== Input netcdf files ===  
    24 || '''Link file from shared repository''' || '''File name expected by ORCHIDEE''' || 
    25 || ln -s ${R_IN}/SRF/METEO/CRU-NCEP/v5.3.2/twodeg/cruncep_twodeg_2000.nc || forcing_file.nc ||  
    26 || ln -s ${R_IN}/SRF/PFTMAPS/CMIP6/ESA-LUH2v2/historical/15PFT.v2/PFTmap_2000.nc  || PFTmap.nc ||  
    27 || ln -s ${R_IN}/SRF/SOIL/soils_param.nc || soils_param.nc ||  
    28 || ln -s ${R_IN}/SRF/SOIL/soil_bulk_and_ph.nc || soil_bulk_and_ph.nc ||  
    29 || ln -s ${R_IN}/SRF/cartepente2d_15min.nc || cartepente2d_15min.nc ||  
    30 || ln -s ${R_IN}/SRF/reftemp.nc || reftemp.nc ||  
    31 || ln -s ${R_IN}/SRF/ROUTING/routing.nc || routing.nc ||  
    32 || ln -s ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/synthetic/historical/Nfer_pasture_2000.nc  || nfert_pasture.nc ||  
    33 || ln -s ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/synthetic/historical/Nfer_cropland_2000.nc || nfert_cropland.nc ||  
    34 || ln -s ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/manure/historical/Nmanure_pasture_2000.nc || nmanure_pasture.nc ||  
    35 || ln -s ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/manure/historical/Nmanure_cropland_2000.nc || nmanure_cropland.nc ||  
    36 || ln -s ${R_IN}/SRF/NITROGEN/N_DEPOSITION/CCMI_ndep/historical/CCMI_ndep_nhx_2000.nc || ndep_nhx.nc ||  
    37 || ln -s ${R_IN}/SRF/NITROGEN/N_DEPOSITION/CCMI_ndep/historical/CCMI_ndep_noy_2000.nc || ndep_noy.nc ||  
    38 || ln -s ${R_IN}/SRF/NITROGEN/BNF/bnf_1850.nc || bnf.nc ||  
     28Input files are stored on the shared repository IGCM, here named by R_IN. Set R_IN depending on your machine and link the files below.   
     29* at ciclad/climserv: export R_IN=/projsu/igcmg/IGCM 
     30* at obelix: export R_IN=/home/orchideeshare/igcmg/IGCM  
     31* at IDRIS and TGCC see ORCHIDEE training courses or http://forge.ipsl.jussieu.fr/igcmg_doc/wiki/Doc/ComputingCenters/SharedFiles 
     32* Note that if the shell in your terminal is csh or tcsh, use set instead of export 
     33{{{ 
     34Link file from shared repository                                                             File name expected by ORCHIDEE 
    3935 
    40 where 
    41 * R_IN=/projsu/igcmg/IGCM at ciclad/climserv 
    42 * R_IN=/home/orchideeshare/igcmg/IGCM at obelix 
    43 * IDRIS, TGCC see ORCHIDEE training courses or http://forge.ipsl.jussieu.fr/igcmg_doc/wiki/Doc/ComputingCenters/SharedFiles 
    44 * or download using wget, replace R_IN by https://vesg.ipsl.upmc.fr/thredds/catalog/igcmg/IGCM/catalog.html 
    45 * this test case uses input files for year 2000. You can replace 2000 by the year of your choice between 1901-2010 
     36ln -s  ${R_IN}/SRF/METEO/CRU-NCEP/v5.3.2/twodeg/cruncep_twodeg_2000.nc                       forcing_file.nc 
     37ln -s  ${R_IN}/SRF/PFTMAPS/CMIP6/ESA-LUH2v2/historical/15PFT.v2/PFTmap_2000.nc               PFTmap.nc  
     38ln -s  ${R_IN}/SRF/SOIL/soils_param.nc                                                       soils_param.nc 
     39ln -s  ${R_IN}/SRF/SOIL/soil_bulk_and_ph.nc                                                  soil_bulk_and_ph.nc  
     40ln -s  ${R_IN}/SRF/cartepente2d_15min.nc                                                     cartepente2d_15min.nc  
     41ln -s  ${R_IN}/SRF/reftemp.nc                                                                reftemp.nc 
     42ln -s  ${R_IN}/SRF/ROUTING/routing.nc                                                        routing.nc  
     43ln -s  ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/synthetic/historical/Nfer_pasture_2000.nc   nfert_pasture.nc 
     44ln -s  ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/synthetic/historical/Nfer_cropland_2000.nc  nfert_cropland.nc  
     45ln -s  ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/manure/historical/Nmanure_pasture_2000.nc   nmanure_pasture.nc  
     46ln -s  ${R_IN}/SRF/NITROGEN/N_FERTILISATION/NMIP/manure/historical/Nmanure_cropland_2000.nc  nmanure_cropland.nc  
     47ln -s  ${R_IN}/SRF/NITROGEN/N_DEPOSITION/CCMI_ndep/historical/CCMI_ndep_nhx_2000.nc          ndep_nhx.nc 
     48ln -s  ${R_IN}/SRF/NITROGEN/N_DEPOSITION/CCMI_ndep/historical/CCMI_ndep_noy_2000.nc          ndep_noy.nc  
     49ln -s  ${R_IN}/SRF/NITROGEN/BNF/bnf_1850.nc                                                  bnf.nc  
     50}}} 
     51 
     52The files can also be download using wget, replace R_IN by https://vesg.ipsl.upmc.fr/thredds/catalog/igcmg/IGCM/catalog.html[[BR]] 
     53In this test case, input files for year 2000 are used. You can replace 2000 by the year of your choice between 1901-2010 
    4654 
    4755=== xml files for running with XIOS ===