Changeset 3340 for LMDZ5/branches/IPSLCM5A2.1/libf/phylmd/conf_phys_m.F90
- Timestamp:
- Jun 1, 2018, 5:52:22 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/IPSLCM5A2.1/libf/phylmd/conf_phys_m.F90
r2580 r3340 17 17 iflag_cld_th, & 18 18 iflag_ratqs,ratqsbas,ratqshaut,tau_ratqs, & 19 ok_ade, ok_aie, ok_cdnc, aerosol_couple, &19 ok_ade, ok_aie, ok_cdnc, aerosol_couple, chemistry_couple, & 20 20 flag_aerosol, flag_aerosol_strat, new_aod, & 21 21 bl95_b0, bl95_b1,& … … 74 74 logical :: ok_LES 75 75 LOGICAL :: callstats 76 LOGICAL :: ok_ade, ok_aie, ok_cdnc, aerosol_couple 76 LOGICAL :: ok_ade, ok_aie, ok_cdnc 77 LOGICAL :: aerosol_couple, chemistry_couple 77 78 INTEGER :: flag_aerosol 78 79 INTEGER :: flag_aerosol_strat … … 92 93 logical,SAVE :: ok_LES_omp 93 94 LOGICAL,SAVE :: callstats_omp 94 LOGICAL,SAVE :: ok_ade_omp, ok_aie_omp, ok_cdnc_omp, aerosol_couple_omp 95 LOGICAL,SAVE :: ok_ade_omp, ok_aie_omp, ok_cdnc_omp 96 LOGICAL, SAVE :: aerosol_couple_omp, chemistry_couple_omp 95 97 INTEGER, SAVE :: flag_aerosol_omp 96 98 INTEGER, SAVE :: flag_aerosol_strat_omp … … 370 372 aerosol_couple_omp = .false. 371 373 CALL getin('aerosol_couple',aerosol_couple_omp) 374 ! 375 !Config Key = chemistry_couple 376 !Config Desc = read chemistry in file or calcul by inca 377 !Config Def = .FALSE. 378 !Config Help = Used in physiq.F 379 ! 380 chemistry_couple_omp = .FALSE. 381 CALL getin('chemistry_couple',chemistry_couple_omp) 372 382 ! 373 383 !Config Key = flag_aerosol … … 2134 2144 ok_cdnc = ok_cdnc_omp 2135 2145 aerosol_couple = aerosol_couple_omp 2146 chemistry_couple = chemistry_couple_omp 2136 2147 flag_aerosol=flag_aerosol_omp 2137 2148 flag_aerosol_strat=flag_aerosol_strat_omp … … 2307 2318 CALL abort_physic('conf_phys', 'flag_aerosol cannot be to zero if ok_cdnc is activated ', 1) 2308 2319 ENDIF 2320 2321 ! Read_climoz need to be zero if we are in couple mode for chemistry 2322 IF (chemistry_couple .AND. read_climoz .ne. 0) THEN 2323 CALL abort_physic('conf_phys', 'read_climoz need to be to zero if chemistry_couple=y ', 1) 2324 ENDIF 2325 2309 2326 2310 2327 ! ok_cdnc must be set to y if ok_aie is activated … … 2417 2434 write(lunout,*)' ok_aie = ',ok_aie 2418 2435 write(lunout,*)' aerosol_couple = ', aerosol_couple 2436 write(lunout,*)' chemistry_couple = ', chemistry_couple 2419 2437 write(lunout,*)' flag_aerosol = ', flag_aerosol 2420 2438 write(lunout,*)' flag_aerosol_strat = ', flag_aerosol_strat
Note: See TracChangeset
for help on using the changeset viewer.