Changeset 2878 for trunk/LMDZ.MARS
- Timestamp:
- Jan 25, 2023, 11:39:35 AM (22 months ago)
- Location:
- trunk/LMDZ.MARS/libf/phymars/dyn1d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/dyn1d/read_profile_mod.F90
r2827 r2878 39 39 40 40 use infotrac, only: tname 41 41 use tracer_mod, only: igcm_co2 42 42 implicit none 43 43 !---------------------------------------------------------------------------------------------------------------------! … … 110 110 if (ierr.eq.0) then 111 111 read(91,*)qsurf(iq) 112 if (trim(name_tracer(iq)) == 'co2' .and. qsurf(iq).ne.0) then113 call abort_physic("read_profile","The value of co2 profile on surface must be 0. It's value must be specified in the run.def as co2ice=XX",1)112 if (trim(name_tracer(iq)) == 'co2') then 113 igcm_co2 = iq 114 114 endif 115 115 do ilayer = 1, nb_layer -
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F
r2829 r2878 546 546 c CO2 ice on the surface 547 547 c ------------------- 548 print *, "RVVV: igcm_co2", igcm_co2 548 549 549 qsurf(igcm_co2)=0.E+0 ! default value for co2ice 550 550 PRINT *,'Initial CO2 ice on the surface (kg.m-2)'
Note: See TracChangeset
for help on using the changeset viewer.