Changeset 224 for trunk/LMDZ.MARS/libf/dyn3d
- Timestamp:
- Jul 15, 2011, 9:06:27 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/dyn3d/newstart.F
r171 r224 90 90 real zmeaS(iip1,jjp1),zstdS(iip1,jjp1) 91 91 real zsigS(iip1,jjp1),zgamS(iip1,jjp1),ztheS(iip1,jjp1) 92 real z0S(iip1,jjp1) 92 93 93 94 c variable physique … … 365 366 call getin("datadir",datafile) ! in case user specified another path 366 367 367 CALL datareadnc(relief,phis,alb,surfith,z meaS,zstdS,zsigS,zgamS,368 .ztheS)368 CALL datareadnc(relief,phis,alb,surfith,z0S, 369 & zmeaS,zstdS,zsigS,zgamS,ztheS) 369 370 370 371 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,phis,phisfi) … … 372 373 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,surfith,surfithfi) 373 374 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,alb,albfi) 375 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,z0S,z0) 374 376 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,zmeaS,zmea) 375 377 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,zstdS,zstd) … … 470 472 write(*,*) 'flat : no topography ("aquaplanet")' 471 473 write(*,*) 'bilball : uniform albedo and thermal inertia' 474 write(*,*) 'z0 : set a uniform surface roughness length' 472 475 write(*,*) 'coldspole : cold subsurface and high albedo at S.pole' 473 476 write(*,*) 'qname : change tracer name' … … 567 570 CALL gr_dyn_fi(nsoilmx,iip1,jjp1,ngridmx,ith,ithfi) 568 571 CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,alb,albfi) 572 573 ! also reset surface roughness length to default value 574 write(*,*) 'surface roughness length set to:',z0_default,' m' 575 z0(:)=z0_default 576 577 ! z0 : set surface roughness length to a constant value 578 ! ----------------------------------------------------- 579 else if (trim(modif) .eq. 'z0') then 580 write(*,*) 'set a uniform surface roughness length' 581 write(*,*) ' value for z0_default (ex: ',z0_default,')?' 582 ierr=1 583 do while (ierr.ne.0) 584 read(*,*,iostat=ierr) z0_default 585 enddo 586 z0(:)=z0_default 569 587 570 588 c coldspole : sous-sol de la calotte sud toujours froid
Note: See TracChangeset
for help on using the changeset viewer.