Changeset 2536 for trunk/LMDZ.GENERIC/libf
- Timestamp:
- Jun 10, 2021, 1:02:31 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/callsedim.F
r1764 r2536 74 74 firstcall=.false. 75 75 ! add some tests on presence of required tracers/aerosols: 76 if (water) then 77 if (igcm_h2o_ice.eq.0) then 76 if (water.and.(igcm_h2o_ice.eq.0)) then 78 77 write(*,*) "callsedim error: water=.true.", 79 78 & " but igcm_h2o_ice=0" 80 79 stop 81 endif82 if (iaero_h2o.eq.0) then83 write(*,*) "callsedim error: water=.true.",84 & " but iaero_ho2=0"85 stop86 endif87 80 endif 88 81 ENDIF ! of IF (firstcall) … … 122 115 !====================================================================== 123 116 ! Water 124 if (water.and.(iq.eq.igcm_h2o_ice)) then117 if (water.and.(iaero_h2o.ne.0).and.(iq.eq.igcm_h2o_ice)) then 125 118 ! compute radii for h2o_ice 126 119 call h2o_reffrad(ngrid,nlay,zqi(1,1,igcm_h2o_ice),zt, … … 132 125 133 126 ! General Case 134 127 else 135 128 call newsedim(ngrid,nlay,1,ptimestep, 136 129 & pplev,masse,epaisseur,zt,radius(iq),rho_q(iq), 137 130 & zqi(1,1,iq),wq) 138 131 endif 139 132 140 133 !=======================================================================
Note: See TracChangeset
for help on using the changeset viewer.