Ignore:
Timestamp:
Feb 26, 2021, 8:37:59 PM (3 years ago)
Author:
oboucher
Message:

Additions for the interactive carbon cycle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/conf_phys_m.F90

    r3815 r3857  
    2727    USE phys_cal_mod
    2828    USE carbon_cycle_mod,  ONLY: carbon_cycle_tr, carbon_cycle_cpl, carbon_cycle_rad, level_coupling_esm
     29    USE carbon_cycle_mod,  ONLY: read_fco2_ocean_cor,var_fco2_ocean_cor
     30    USE carbon_cycle_mod,  ONLY: read_fco2_land_cor,var_fco2_land_cor
    2931    USE mod_grid_phy_lmdz, ONLY: klon_glo
    3032    USE print_control_mod, ONLY: lunout
     
    237239    LOGICAL, SAVE :: carbon_cycle_rad_omp
    238240    INTEGER, SAVE :: level_coupling_esm_omp
     241    LOGICAL, SAVE :: read_fco2_ocean_cor_omp
     242    REAL, SAVE    :: var_fco2_ocean_cor_omp
     243    LOGICAL, SAVE :: read_fco2_land_cor_omp
     244    REAL, SAVE    :: var_fco2_land_cor_omp
    239245    LOGICAL, SAVE :: adjust_tropopause_omp
    240246    LOGICAL, SAVE :: ok_daily_climoz_omp
     
    22142220    CALL getin('carbon_cycle_rad',carbon_cycle_rad_omp)
    22152221
    2216     ! >> PC
     2222    read_fco2_ocean_cor_omp=.FALSE.
     2223    CALL getin('read_fco2_ocean_cor',read_fco2_ocean_cor_omp)
     2224
     2225    var_fco2_ocean_cor_omp=0. ! default value
     2226    CALL getin('var_fco2_ocean_cor',var_fco2_ocean_cor_omp)
     2227
     2228    read_fco2_land_cor_omp=.FALSE.
     2229    CALL getin('read_fco2_land_cor',read_fco2_land_cor_omp)
     2230
     2231    var_fco2_land_cor_omp=0. ! default value
     2232    CALL getin('var_fco2_land_cor',var_fco2_land_cor_omp)
     2233
    22172234    ! level_coupling_esm : level of coupling of the biogeochemical fields between LMDZ, ORCHIDEE and NEMO
    22182235    ! Definitions of level_coupling_esm in physiq.def
     
    22272244    level_coupling_esm_omp=0 ! default value
    22282245    CALL getin('level_coupling_esm',level_coupling_esm_omp)
    2229     ! << PC
    22302246
    22312247    !$OMP END MASTER
Note: See TracChangeset for help on using the changeset viewer.