Changeset 3568


Ignore:
Timestamp:
02/07/18 14:33:24 (6 years ago)
Author:
jgipsl
Message:

Add co2_ppm_per in config.def. Read CO2.txt in the driver and multiply by 4 for this parameter.

Note: libIGCM trunk rev 1423 or later is need or following correction must be done : http://forge.ipsl.jussieu.fr/libigcm/changeset/1423

Location:
CONFIG/UNIFORM/v6
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • CONFIG/UNIFORM/v6/IPSLCM6/GENERAL/DRIVER/lmdz.driver

    r3480 r3568  
    169169 
    170170    # Read value for co2_ppm from file CO2.txt. If file not existing, take DEFAULT value from file.  
     171    # Calculate co2_ppm_per as co2_ppm*4. 
    171172    if [ -f CO2.txt ] ; then 
    172173        value=`grep Annee_${year} CO2.txt | awk -F= '{print $2}'` 
     
    176177            IGCM_debug_Verif_Exit 
    177178        fi 
     179        value4=`grep Annee_${year} CO2.txt | awk -F= '{print $2 * 4}'` 
    178180    else 
    179181        value=DEFAULT 
     182        value4=DEFAULT 
    180183    fi 
    181184    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm $value 
     185    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm_per $value4 
    182186 
    183187 
  • CONFIG/UNIFORM/v6/IPSLCM6/GENERAL/PARAM/config.def_actuel

    r3527 r3568  
    3131### co2_ppm =    taux CO2 en ppm, l'année 2000 forcage CMIP6 
    3232co2_ppm = _AUTO_: DEFAULT = 3.6912e+02 
     33### co2_ppm_per =    taux 4xCO2 en ppm (uniqument pour calcul des diags) 
     34co2_ppm_per = _AUTO_: DEFAULT = 14.7648e+02 
    3335### CH4_ppb =    taux CH4 en ppb, l'année 2000 forcage CMIP6 
    3436CH4_ppb = _AUTO_ : DEFAULT = 1.7780e+03 
  • CONFIG/UNIFORM/v6/IPSLCM6/GENERAL/PARAM/config.def_annuel

    r3527 r3568  
    3232### co2_ppm =    taux CO2 en ppm 
    3333co2_ppm = _AUTO_ 
     34### co2_ppm_per =    taux 4xCO2 en ppm (uniqument pour calcul des diags) 
     35co2_ppm_per = _AUTO_ 
    3436### CH4_ppb =    taux CH4 en ppb 
    3537CH4_ppb = _AUTO_ 
  • CONFIG/UNIFORM/v6/IPSLCM6/GENERAL/PARAM/config.def_preind

    r3541 r3568  
    3232### co2_ppm =    taux CO2 en ppm, l'année 1850 forcage CMIP6 
    3333co2_ppm = _AUTO_: DEFAULT  = 2.8432e+02 
     34### co2_ppm_per =    taux 4xCO2 en ppm (uniqument pour calcul des diags) 
     35co2_ppm_per = _AUTO_: DEFAULT  =11.3728e+02 
    3436### CH4_ppb =    taux CH4 en ppb, l'année 1850 forcage CMIP6 
    3537CH4_ppb = _AUTO_: DEFAULT = 8.0825e+02 
  • CONFIG/UNIFORM/v6/LMDZOR_v6/GENERAL/DRIVER/lmdz.driver

    r3505 r3568  
    169169 
    170170    # Read value for co2_ppm from file CO2.txt. If file not existing, take DEFAULT value from file.  
     171    # Calculate co2_ppm_per as co2_ppm*4. 
    171172    if [ -f CO2.txt ] ; then 
    172173        value=`grep Annee_${year} CO2.txt | awk -F= '{print $2}'` 
     
    176177            IGCM_debug_Verif_Exit 
    177178        fi 
     179        value4=`grep Annee_${year} CO2.txt | awk -F= '{print $2 * 4}'` 
    178180    else 
    179181        value=DEFAULT 
     182        value4=DEFAULT 
    180183    fi 
    181184    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm $value 
     185    IGCM_comp_modifyDefFile nonblocker config.def co2_ppm_per $value4 
    182186 
    183187 
  • CONFIG/UNIFORM/v6/LMDZOR_v6/GENERAL/PARAM/config.def_actuel

    r3529 r3568  
    3131### co2_ppm =    taux CO2 en ppm, l'année 2000 forcage CMIP6 
    3232co2_ppm = _AUTO_: DEFAULT = 3.6912e+02 
     33### co2_ppm_per =    taux 4xCO2 en ppm (uniqument pour calcul des diags) 
     34co2_ppm_per = _AUTO_: DEFAULT = 14.7648e+02 
    3335### CH4_ppb =    taux CH4 en ppb, l'année 2000 forcage CMIP6 
    3436CH4_ppb = _AUTO_ : DEFAULT = 1.7780e+03 
  • CONFIG/UNIFORM/v6/LMDZOR_v6/GENERAL/PARAM/config.def_annuel

    r3529 r3568  
    3232### co2_ppm =    taux CO2 en ppm 
    3333co2_ppm = _AUTO_ 
     34### co2_ppm_per =    taux 4xCO2 en ppm (uniqument pour calcul des diags) 
     35co2_ppm_per = _AUTO_ 
    3436### CH4_ppb =    taux CH4 en ppb 
    3537CH4_ppb = _AUTO_ 
  • CONFIG/UNIFORM/v6/LMDZOR_v6/GENERAL/PARAM/config.def_preind

    r3550 r3568  
    3232### co2_ppm =    taux CO2 en ppm, l'année 1850 forcage CMIP6 
    3333co2_ppm = _AUTO_: DEFAULT  = 2.8432e+02 
     34### co2_ppm_per =    taux 4xCO2 en ppm (uniqument pour calcul des diags) 
     35co2_ppm_per = _AUTO_: DEFAULT  =11.3728e+02 
    3436### CH4_ppb =    taux CH4 en ppb, l'année 1850 forcage CMIP6 
    3537CH4_ppb = _AUTO_: DEFAULT = 8.0825e+02 
Note: See TracChangeset for help on using the changeset viewer.