Changeset 2056 for LMDZ5/branches/testing/libf/dyn3dmem/iniacademic_loc.F90
- Timestamp:
- Jun 11, 2014, 3:46:46 PM (10 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 1998,2000-2023,2025-2029,2032,2034,2036-2049,2051-2055
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/dyn3dmem/iniacademic_loc.F90
r1910 r2056 4 4 SUBROUTINE iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0) 5 5 6 use exner_hyb_m, only: exner_hyb 7 use exner_milieu_m, only: exner_milieu 6 8 USE filtreg_mod 7 9 USE infotrac, ONLY : nqtot … … 58 60 REAL pks(ip1jmp1) ! exner au sol 59 61 REAL pk(ip1jmp1,llm) ! exner au milieu des couches 60 REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches61 62 REAL phi(ip1jmp1,llm) ! geopotentiel 62 63 REAL ddsin,zsig,tetapv,w_pv ! variables auxiliaires … … 75 76 76 77 REAL zdtvr 77 real,allocatable :: alpha(:,:),beta(:,:)78 78 79 79 character(len=*),parameter :: modname="iniacademic" … … 219 219 allocate(masse_glo(ip1jmp1,llm)) 220 220 allocate(phis_glo(ip1jmp1)) 221 allocate(alpha(ip1jmp1,llm))222 allocate(beta(ip1jmp1,llm))223 221 224 222 ! surface pressure … … 238 236 CALL pression ( ip1jmp1, ap, bp, ps_glo, p ) 239 237 if (pressure_exner) then 240 CALL exner_hyb( ip1jmp1, ps_glo, p, alpha,beta, pks, pk, pkf)238 CALL exner_hyb( ip1jmp1, ps_glo, p, pks, pk ) 241 239 else 242 call exner_milieu(ip1jmp1,ps_glo,p, beta,pks,pk,pkf)240 call exner_milieu(ip1jmp1,ps_glo,p,pks,pk) 243 241 endif 244 242 CALL massdair(p,masse_glo) … … 301 299 deallocate(ps_glo) 302 300 deallocate(phis_glo) 303 deallocate(alpha)304 deallocate(beta)305 301 ENDIF ! of IF (.NOT. read_start) 306 302 endif academic_case
Note: See TracChangeset
for help on using the changeset viewer.