Changeset 240 in lmdz_wrf for trunk/WRFV3/phys
- Timestamp:
- Feb 2, 2015, 1:05:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WRFV3/phys/module_lmdz_phys.F
r184 r240 30 30 & wrf_permass, wrf_basemass, & 31 31 & wrf_mut, wrf_muu, wrf_muv, & 32 & wrf_mapfac, & 32 33 & wrf_Utend, wrf_Vtend, wrf_Ttend, & 33 34 & wrf_MOISTtend, wrf_psfctend, & … … 110 111 REAL, INTENT(IN), DIMENSION(wims:wime,wjms:wjme) :: wrf_Lon, wrf_Lat, & 111 112 & wrf_basemass, wrf_permass, wrf_mapft, wrf_mapfu, wrf_mapfv, wrf_mut, & 112 & wrf_muu, wrf_muv 113 & wrf_muu, wrf_muv, wrf_mapfac 113 114 114 115 REAL, INTENT(OUT), DIMENSION(wims:wime,wjms:wjme) :: wrf_psfctend … … 1289 1290 ! All the tendencies have to be given as decoupled from the dry air mass column! (see dyn_em/module_em.F:rk_update_scalar) 1290 1291 !! 1292 ! L. Fita, LMD January 2015. Adding map factor! 1291 1293 DO iz=1,dimz 1292 wrf_Ttend(:,iz,:) = wrf_Ttend(:,iz,:)*wrf_mut 1293 wrf_Utend(:,iz,:) = wrf_Utend(:,iz,:)*wrf_muu 1294 wrf_Vtend(:,iz,:) = wrf_Vtend(:,iz,:)*wrf_muv 1294 wrf_Ttend(:,iz,:) = wrf_Ttend(:,iz,:)*wrf_mut/wrf_mapfac 1295 wrf_Utend(:,iz,:) = wrf_Utend(:,iz,:)*wrf_muu/wrf_mapfac 1296 wrf_Vtend(:,iz,:) = wrf_Vtend(:,iz,:)*wrf_muv/wrf_mapfac 1295 1297 DO iq=1,wnum3dm 1296 wrf_MOISTtend(:,iz,:,iq) = wrf_MOISTtend(:,iz,:,iq)*wrf_mut 1298 wrf_MOISTtend(:,iz,:,iq) = wrf_MOISTtend(:,iz,:,iq)*wrf_mut/wrf_mapfac 1297 1299 END DO 1298 1300 END DO
Note: See TracChangeset
for help on using the changeset viewer.