Changeset 1523 for trunk/LMDZ.TITAN/libf
- Timestamp:
- Mar 28, 2016, 5:27:51 PM (9 years ago)
- Location:
- trunk/LMDZ.TITAN/libf/phytitan
- Files:
-
- 1 added
- 3 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/dyn1d/rcm1d.F
r1517 r1523 11 11 . aps,bps,scaleheight,pseudoalt, 12 12 . disvert_type,pressure_exner 13 USE iniphysiq_mod, ONLY: iniphysiq 13 14 IMPLICIT NONE 14 15 … … 191 192 192 193 CALL init_phys_lmdz(iim,jjm,llm,1,(/1/)) 193 CALL iniphysiq(1,1,llm,daysec,day0,dtphys,194 . lati,long,area,cufi,cvfi,rad,g,r,cpp,1)195 196 call ini_cpdet197 194 198 195 c la surface de chaque maille est inutile en 1D ---> … … 201 198 cufi(1)=1.E+0 202 199 cvfi(1)=1.E+0 200 201 c Ehouarn: iniphysiq requires arrays related to (3D) dynamics grid, 202 c e.g. for cell boundaries, which are meaningless in 1D; so pad these 203 c with '0.' when necessary 204 CALL iniphysiq(1,1,llm,daysec,day0,dtphys, 205 & (/lati(1),0./),(/0./), 206 & (/0.,0./),(/long(1),0./), 207 & (/ (/area,0./),(/0.,0./) /), 208 & (/cufi,0.,0.,0./), 209 & (/cvfi,0./), 210 & rad,g,r,cpp,1) 211 212 call ini_cpdet 203 213 204 214 c le geopotentiel au sol est inutile en 1D car tout est controle
Note: See TracChangeset
for help on using the changeset viewer.