Changeset 1417 for trunk/LMDZ.GENERIC/libf/phystd
- Timestamp:
- Apr 17, 2015, 1:02:55 PM (10 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf/phystd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/callcorrk.F90
r1397 r1417 20 20 use comcstfi_mod, only: pi, mugaz, cpp 21 21 use callkeys_mod, only: varactive,diurnal,tracer,water,nosurf,varfixed,satval, & 22 kastprof,strictboundcorrk,specOLR,CLFvarying 22 kastprof,strictboundcorrk,specOLR,CLFvarying,ptopzero 23 23 24 24 implicit none … … 607 607 608 608 plevrad(1) = 0. 609 plevrad(2) = max(pgasmin,0.0001*plevrad(3)) 609 610 if (ptopzero) then 611 plevrad(2) = 0. 612 else 613 plevrad(2) = max(pgasmin,0.0001*plevrad(3)) 614 endif 610 615 611 616 tlevrad(1) = tlevrad(2) … … 614 619 tmid(1) = tlevrad(2) 615 620 tmid(2) = tlevrad(2) 621 tmid(3) = tlevrad(2) 622 tmid(4) = tlevrad(2) 616 623 pmid(1) = plevrad(2) 617 624 pmid(2) = plevrad(2) 618 619 DO l=1,L_NLAYRAD-1 625 pmid(3) = plevrad(2) 626 pmid(4) = plevrad(2) 627 628 DO l=2,L_NLAYRAD-1 620 629 tmid(2*l+1) = tlevrad(2*l) 621 630 tmid(2*l+2) = tlevrad(2*l) -
trunk/LMDZ.GENERIC/libf/phystd/callkeys_mod.F90
r1397 r1417 7 7 & , callstats,calleofdump & 8 8 & , callgasvis,continuum,H2Ocont_simple,graybody & 9 & , strictboundcorrk 9 & , strictboundcorrk,ptopzero 10 10 11 11 logical enertest -
trunk/LMDZ.GENERIC/libf/phystd/inifis.F
r1397 r1417 228 228 call getin_p("strictboundcorrk",strictboundcorrk) 229 229 write(*,*) "strictboundcorrk = ",strictboundcorrk 230 231 write(*,*) "correction on plevrad in the top levels", 232 & " (callcorrk)?" 233 ptopzero=.false. ! default value 234 call getin_p("ptopzero",ptopzero) 235 write(*,*) "ptopzero = ",ptopzero 230 236 231 237 write(*,*) "call gaseous absorption in the visible bands?",
Note: See TracChangeset
for help on using the changeset viewer.