- Timestamp:
- Jun 21, 2022, 11:05:45 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/condensation_generic_mod.F90
r2720 r2722 52 52 53 53 ! to call only one time the ice/vap pair of a tracer 54 logical one_call_ice_vap_generic54 logical call_ice_vap_generic 55 55 56 56 INTEGER i, k , nn, iq … … 97 97 ! Let's loop on tracers 98 98 do iq=1,nq 99 one_call_ice_vap_generic = .false.100 99 101 call generic_tracer_index(nq,iq,igcm_generic_vap,igcm_generic_ice, one_call_ice_vap_generic)100 call generic_tracer_index(nq,iq,igcm_generic_vap,igcm_generic_ice,call_ice_vap_generic) 102 101 103 if( one_call_ice_vap_generic) then ! to call only one time the ice/vap pair of a tracer102 if(call_ice_vap_generic) then ! to call only one time the ice/vap pair of a tracer 104 103 m=constants_mass(iq) 105 104 delta_vapH=constants_delta_vapH(iq) … … 154 153 pdqvaplsc(1:ngrid,1,igcm_generic_vap) = (qvap_deep - pq(1:ngrid,1,igcm_generic_vap))/tau - pdq(1:ngrid,1,igcm_generic_vap) 155 154 endif 156 endif !if( one_call_ice_vap_generic)155 endif !if(call_ice_vap_generic) 157 156 enddo ! iq=1,nq 158 157
Note: See TracChangeset
for help on using the changeset viewer.