Changeset 1549 for trunk/LMDZ.GENERIC
- Timestamp:
- May 6, 2016, 12:30:29 PM (9 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 1 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r1546 r1549 1215 1215 mass flux should be on the physics grid, not the dynamics grid. 1216 1216 Moreover values at the poles needed to be correctly recomputed. 1217 1218 == 06/05/2016 == EM 1219 - turn physiq.F90 into module physiq_mod.F90 -
trunk/LMDZ.GENERIC/libf/dynphy_lonlat/calfis.F
r1546 r1549 9 9 USE comvert_mod, ONLY: preff 10 10 USE comconst_mod, ONLY: dtphys,kappa,cpp,pi 11 USE physiq_mod, ONLY: physiq 12 11 13 IMPLICIT NONE 12 14 c======================================================================= … … 130 132 131 133 EXTERNAL gr_dyn_fi,gr_fi_dyn 132 EXTERNAL physiq,multipl133 134 REAL SSUM 134 135 EXTERNAL SSUM -
trunk/LMDZ.GENERIC/libf/phystd/dyn1d/rcm1d.F
r1543 r1549 32 32 use mod_interface_dyn_phys, only: init_interface_dyn_phys 33 33 use inifis_mod, only: inifis 34 use physiq_mod, only: physiq 34 35 implicit none 35 36 … … 96 97 REAL du(llm),dv(llm),dtemp(llm) 97 98 REAL dudyn(llm),dvdyn(llm),dtempdyn(llm) 98 REAL dpsurf 99 REAL dpsurf(1) 99 100 REAL,ALLOCATABLE :: dq(:,:) 100 101 REAL,ALLOCATABLE :: dqdyn(:,:) … … 949 950 c ---------------------------------------------------------- 950 951 951 psurf=psurf+dtphys*dpsurf ! evolution de la pression de surface952 psurf=psurf+dtphys*dpsurf(1) ! evolution de la pression de surface 952 953 DO ilevel=1,nlevel 953 954 plev(ilevel)=ap(ilevel)+psurf*bp(ilevel) -
trunk/LMDZ.GENERIC/libf/phystd/physiq_mod.F90
r1548 r1549 1 module physiq_mod 2 3 implicit none 4 5 contains 6 1 7 subroutine physiq(ngrid,nlayer,nq, & 2 8 nametrac, & … … 2132 2138 2133 2139 end subroutine physiq 2140 2141 end module physiq_mod
Note: See TracChangeset
for help on using the changeset viewer.