[38] | 1 | subroutine nlthermeq(ngrid, nlayer, pplev, pplay) |
---|
| 2 | c |
---|
[1047] | 3 | c Compute the number of layers nlaylte (stored in module yomlw_h) |
---|
[38] | 4 | c over which local thermodynamic equilibrium |
---|
| 5 | c radiation scheme should be run to be sure of covering at least to a |
---|
| 6 | c height greater than (pressure lower than) p=pminte, set in nlteparams.h. |
---|
| 7 | c The maximum layer needed is found for the worst possible case. |
---|
| 8 | c Stephen Lewis 6/2000 |
---|
| 9 | c Modified Y. Wanherdrick/ F. Forget 09/2000 |
---|
[1047] | 10 | use yomlw_h, only: nlaylte |
---|
[38] | 11 | implicit none |
---|
| 12 | #include "nlteparams.h" |
---|
| 13 | #include "callkeys.h" |
---|
| 14 | |
---|
| 15 | c |
---|
| 16 | c Input: |
---|
| 17 | integer ngrid, nlayer |
---|
| 18 | real pplev(ngrid, nlayer+1) |
---|
| 19 | real pplay(ngrid, nlayer) |
---|
| 20 | c |
---|
| 21 | c Local: |
---|
| 22 | integer igpmax, ismax |
---|
| 23 | logical firstcall |
---|
| 24 | data firstcall /.true./ |
---|
| 25 | save firstcall, igpmax |
---|
| 26 | c |
---|
| 27 | if(firstcall) then |
---|
| 28 | c Find the location of maximum surface pressure. |
---|
| 29 | c Location won't vary much so only do it at the start; |
---|
| 30 | c with no topography location would vary, but this is only |
---|
| 31 | c needed for an estimate so any point would do in that case. |
---|
| 32 | igpmax = ismax(ngrid, pplev, 1) |
---|
| 33 | write(*, 10) ptrans |
---|
| 34 | write(*, 20) zw |
---|
| 35 | write(*, 30) pminte |
---|
| 36 | firstcall = .false. |
---|
| 37 | endif |
---|
| 38 | c |
---|
| 39 | IF(callnlte) then |
---|
| 40 | c Find first layer above pminte at this location |
---|
| 41 | do nlaylte = nlayer, 1, -1 |
---|
| 42 | if (pplay(igpmax, nlaylte).gt.pminte) go to 100 |
---|
| 43 | enddo |
---|
| 44 | ELSE |
---|
| 45 | nlaylte=nlayer |
---|
| 46 | END IF |
---|
| 47 | 100 write(*,*) 'LTE rad. calculations up to layer ', nlaylte |
---|
| 48 | c |
---|
| 49 | return |
---|
| 50 | c |
---|
| 51 | 10 format(' nlthermeq: transition to NLTE centred at ',f6.2,'Pa') |
---|
| 52 | 20 format(' half-width (scale heights) ',f6.2) |
---|
| 53 | 30 format(' suggested LTE coverage at least ',f6.2,'Pa') |
---|
| 54 | end |
---|