Changeset 2788 for LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
- Timestamp:
- Feb 2, 2017, 7:01:50 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/conf_phys_m.F90
r2785 r2788 222 222 LOGICAL,SAVE :: carbon_cycle_tr_omp 223 223 LOGICAL,SAVE :: carbon_cycle_cpl_omp 224 LOGICAL,SAVE :: adjust_tropopause_omp 225 LOGICAL,SAVE :: ok_daily_climoz_omp 224 226 225 227 INTEGER, INTENT(OUT):: read_climoz ! read ozone climatology, OpenMP shared … … 2035 2037 !Config Help = ... 2036 2038 ! 2039 ! 2040 adjust_tropopause = .FALSE. 2041 CALL getin('adjust_tropopause', adjust_tropopause_omp) 2042 ! 2043 !Config Key = adjust_tropopause 2044 !Config Desc = Adjust the ozone field from the climoz file by stretching its 2045 ! tropopause so that it matches the one of LMDZ. 2046 !Config Def = .FALSE. 2047 !Config Help = Ensure tropospheric ozone column conservation. 2048 ! 2049 ! 2050 ok_daily_climoz = .TRUE. 2051 CALL getin('ok_daily_climoz', ok_daily_climoz_omp) 2052 ! 2053 !Config Key = ok_daily_climoz 2054 !Config Desc = Interpolate in time the ozone forcings within ce0l. 2055 ! .TRUE. if backward compatibility is needed. 2056 !Config Def = .TRUE. 2057 !Config Help = .FALSE. ensure much fewer (no calendar dependency) 2058 ! and lighter monthly climoz files, inetrpolated in time at gcm run time. 2037 2059 ! 2038 2060 ecrit_LES_omp = 1./8. … … 2291 2313 callstats = callstats_omp 2292 2314 ecrit_LES = ecrit_LES_omp 2315 adjust_tropopause = adjust_tropopause_omp 2316 ok_daily_climoz = ok_daily_climoz_omp 2293 2317 carbon_cycle_tr = carbon_cycle_tr_omp 2294 2318 carbon_cycle_cpl = carbon_cycle_cpl_omp … … 2485 2509 write(lunout,*)' aerosol_couple = ', aerosol_couple 2486 2510 write(lunout,*)' flag_aerosol = ', flag_aerosol 2487 write(lunout,*)' flag_aerosol_strat 2511 write(lunout,*)' flag_aerosol_strat= ', flag_aerosol_strat 2488 2512 write(lunout,*)' new_aod = ', new_aod 2489 2513 write(lunout,*)' aer_type = ',aer_type … … 2568 2592 write(lunout,*) 'SSO gkwake=',gkwake 2569 2593 write(lunout,*) 'SSO gklift=',gklift 2594 write(lunout,*) 'adjust_tropopause = ', adjust_tropopause 2595 write(lunout,*) 'ok_daily_climoz = ',ok_daily_climoz 2570 2596 write(lunout,*) 'read_climoz = ', read_climoz 2571 2597 write(lunout,*) 'carbon_cycle_tr = ', carbon_cycle_tr
Note: See TracChangeset
for help on using the changeset viewer.