Changeset 1901


Ignore:
Timestamp:
Jan 29, 2018, 10:38:00 AM (7 years ago)
Author:
jvatant
Message:

Correct the mufi tendencies, no need to multiply
by timestep, inimufi has passed timestep to YAMMS
--JVO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/phytitan/physiq_mod.F90

    r1897 r1901  
    11461146                  call calmufi(zplevbar,zzlevbar,zplaybar,zzlaybar,ztfibar,tpq,zdqmufi)
    11471147               endif
    1148                tpq(:,:,:) = tpq(:,:,:) + zdqmufi(1:ngrid,1:nlayer,1:nq)*ptimestep
     1148               tpq(:,:,:) = tpq(:,:,:) + zdqmufi(1:ngrid,1:nlayer,1:nq)
    11491149#else
    11501150            ! Inside this routine we will split 2D->1D, intensive->extensive and separate different types of tracers
     
    11571157               endif
    11581158
    1159             pdq(1:ngrid,1:nlayer,1:nq) = pdq(1:ngrid,1:nlayer,1:nq) + zdqmufi(1:ngrid,1:nlayer,1:nq)   
     1159            pdq(1:ngrid,1:nlayer,1:nq) = pdq(1:ngrid,1:nlayer,1:nq) + zdqmufi(1:ngrid,1:nlayer,1:nq)
     1160            ! We don't re-multiply by timestep, it is already taken into account in zdqmufi,
     1161            ! since inimufi has initialized YAMMS with a given ts.
    11601162#endif
    11611163         endif ! end of 'callmufi'
Note: See TracChangeset for help on using the changeset viewer.