Changeset 3201 for trunk/LMDZ.MARS/libf/phymars
- Timestamp:
- Feb 5, 2024, 11:31:02 AM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F90
r3200 r3201 6 6 use phyredem, only: physdem0, physdem1 7 7 use watersat_mod, only: watersat 8 use tracer_mod, only: igcm_h2o_vap, igcm_h2o_ice, noms8 use tracer_mod, only: igcm_h2o_vap, igcm_h2o_ice, igcm_co2, noms 9 9 use comcstfi_h, only: pi, rad, omeg, g, mugaz, rcp, r, cpp 10 10 use time_phylmdz_mod, only: daysec, day_step … … 270 270 271 271 ! Increment tracers 272 if (abs(CO2cond_ps) < 1.e-10) then 273 do iq = 1,nq 274 if (iq == igcm_co2) cycle 275 q(1,:,iq) = q(1,:,iq) + dttestphys*dq(1,:,iq) 276 enddo 277 else 278 q = q + dttestphys*dq 279 endif 272 if (abs(CO2cond_ps) < 1.e-10) dq(1,:,igcm_co2) = 0. 273 q = q + dttestphys*dq 280 274 enddo ! End of time stepping loop (idt=1,ndt) 281 275
Note: See TracChangeset
for help on using the changeset viewer.