Changeset 224 for trunk/LMDZ.MARS/libf/phymars/tabfi.F
- Timestamp:
- Jul 15, 2011, 9:06:27 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/tabfi.F
r38 r224 112 112 c Boundary layer and turbulence 113 113 c---------------------------- 114 z0 = 1.e-2! surface roughness (m) ~0.01114 z0_default = 1.e-2 ! surface roughness (m) ~0.01 115 115 emin_turb = 1.e-6 ! minimal energy ~1.e-8 116 116 lmixmin = 30 ! mixing length ~100 … … 190 190 obliquit = tab_cntrl(tab0+18) 191 191 c boundary layer and turbeulence 192 z0 = tab_cntrl(tab0+19)192 z0_default = tab_cntrl(tab0+19) 193 193 lmixmin = tab_cntrl(tab0+20) 194 194 emin_turb = tab_cntrl(tab0+21) … … 244 244 write(*,5) '(18) obliquit',tab_cntrl(tab0+18),obliquit 245 245 246 write(*,6) '(19) z0',tab_cntrl(tab0+19),z0246 write(*,6) '(19) z0_default',tab_cntrl(tab0+19),z0_default 247 247 write(*,6) '(21) emin_turb',tab_cntrl(tab0+21),emin_turb 248 248 write(*,5) '(20) lmixmin',tab_cntrl(tab0+20),lmixmin … … 277 277 write(*,*) 278 278 write(*,*) '(3) day_ini : Initial day (=0 at Ls=0)' 279 write(*,*) '(19) z0 : surface roughness (m)'279 write(*,*) '(19) z0 : default surface roughness (m)' 280 280 write(*,*) '(21) emin_turb : minimal energy (PBL)' 281 281 write(*,*) '(20) lmixmin : mixing length (PBL)' … … 317 317 318 318 else if (modif(1:lnblnk(modif)) .eq. 'z0') then 319 write(*,*) 'current value :',z0320 write(*,*) 'enter new value :'321 102 read(*,*,iostat=ierr) z0 319 write(*,*) 'current value (m):',z0_default 320 write(*,*) 'enter new value (m):' 321 102 read(*,*,iostat=ierr) z0_default 322 322 if(ierr.ne.0) goto 102 323 323 write(*,*) ' ' 324 write(*,*) ' z0 (new value):',z0 324 write(*,*) ' z0 (new value):',z0_default 325 325 326 326 else if (modif(1:lnblnk(modif)) .eq. 'emin_turb') then … … 493 493 write(*,5) '(18) obliquit',tab_cntrl(tab0+18),obliquit 494 494 495 write(*,6) '(19) z0',tab_cntrl(tab0+19),z0495 write(*,6) '(19) z0_default',tab_cntrl(tab0+19),z0_default 496 496 write(*,6) '(21) emin_turb',tab_cntrl(tab0+21),emin_turb 497 497 write(*,5) '(20) lmixmin',tab_cntrl(tab0+20),lmixmin
Note: See TracChangeset
for help on using the changeset viewer.