Changeset 4263 for LMDZ6/trunk/libf/phylmd
- Timestamp:
- Sep 21, 2022, 9:35:28 AM (3 years ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified LMDZ6/trunk/libf/phylmd/phyetat0.F90 ¶
r4170 r4263 23 23 USE geometry_mod, ONLY: longitude_deg, latitude_deg 24 24 USE iostart, ONLY: close_startphy, get_field, get_var, open_startphy 25 USE infotrac_phy, ONLY: nqtot, nbtr, type s_trac, tracers25 USE infotrac_phy, ONLY: nqtot, nbtr, type_trac, types_trac, tracers 26 26 USE traclmdz_mod, ONLY: traclmdz_from_restart 27 27 USE carbon_cycle_mod, ONLY: carbon_cycle_tr, carbon_cycle_cpl, co2_send … … 456 456 found=phyetat0_get(1,co2_send,"co2_send","co2 send",co2_ppm) 457 457 ENDIF 458 ELSE IF ( ANY(types_trac == 'lmdz')) THEN458 ELSE IF (type_trac == 'lmdz') THEN 459 459 it = 0 460 460 DO iq = 1, nqtot -
TabularUnified LMDZ6/trunk/libf/phylmd/phyredem.F90 ¶
r4170 r4263 35 35 USE iostart, ONLY: open_restartphy, close_restartphy, enddef_restartphy, put_field, put_var 36 36 USE traclmdz_mod, ONLY : traclmdz_to_restart 37 USE infotrac_phy, ONLY: type s_trac, nqtot, tracers, nbtr37 USE infotrac_phy, ONLY: type_trac, types_trac, nqtot, tracers, nbtr 38 38 USE carbon_cycle_mod, ONLY : carbon_cycle_cpl, co2_send 39 39 USE indice_sol_mod, ONLY: nbsrf, is_oce, is_sic, is_ter, is_lic, epsfra … … 336 336 337 337 ! trs from traclmdz_mod 338 ELSE IF ( ANY(types_trac == 'lmdz')) THEN338 ELSE IF (type_trac == 'lmdz') THEN 339 339 CALL traclmdz_to_restart(trs) 340 340 it = 0 -
TabularUnified LMDZ6/trunk/libf/phylmd/phys_output_write_mod.F90 ¶
r4187 r4263 25 25 26 26 USE dimphy, ONLY: klon, klev, klevp1 27 USE infotrac_phy, ONLY: nbtr, nqtot, nqo, type s_trac, tracers, niso, ntiso27 USE infotrac_phy, ONLY: nbtr, nqtot, nqo, type_trac, types_trac, tracers, niso, ntiso 28 28 USE strings_mod, ONLY: maxlen 29 29 USE mod_phys_lmdz_para, ONLY: is_north_pole_phy,is_south_pole_phy … … 2548 2548 CALL histwrite_phy(o_flx_co2_bb, fco2_bb) 2549 2549 2550 ELSE IF ( (ANY(types_trac=='lmdz') .OR. ANY(types_trac=='coag')) .AND. ALL(types_trac /= 'inca')) THEN2550 ELSE IF (ANY(type_trac==['lmdz|coag','lmdz ','coag '])) THEN 2551 2551 itr = 0 2552 2552 DO iq = 1, nqtot
Note: See TracChangeset
for help on using the changeset viewer.