Last change
on this file since 5157 was
5134,
checked in by abarral, 4 months ago
|
Replace academic.h, alpale.h, comdissip.h, comdissipn.h, comdissnew.h by modules
Remove unused clesph0.h
|
File size:
1.2 KB
|
Rev | Line | |
---|
[2293] | 1 | SUBROUTINE pression( ngrid, ap, bp, ps, p ) |
---|
[5099] | 2 | |
---|
[2293] | 3 | !------------------------------------------------------------------------------- |
---|
| 4 | ! Authors: P. Le Van , Fr.Hourdin |
---|
| 5 | !------------------------------------------------------------------------------- |
---|
| 6 | ! Purpose: Compute pressure p(l) at different levels from l = 1 (ground level) |
---|
| 7 | ! to l = llm +1. Those levels correspond to the llm layers interfaces, |
---|
| 8 | ! with p(ij,llm+1) = 0. and p(ij,1) = ps(ij) . |
---|
| 9 | !------------------------------------------------------------------------------- |
---|
| 10 | IMPLICIT NONE |
---|
[5134] | 11 | INCLUDE "dimensions.h" |
---|
| 12 | INCLUDE "paramet.h" |
---|
[2293] | 13 | !=============================================================================== |
---|
| 14 | ! Arguments: |
---|
| 15 | INTEGER, INTENT(IN) :: ngrid !--- NUMBER OF GRID POINTS |
---|
| 16 | REAL, INTENT(IN) :: ap(llmp1), bp(llmp1) !--- HYBRID COEFFICIENTS |
---|
| 17 | REAL, INTENT(IN) :: ps(ngrid) !--- SURFACE PRESSURE |
---|
| 18 | REAL, INTENT(OUT) :: p(ngrid,llmp1) !--- 3D PRESSURE FIELD |
---|
| 19 | !=============================================================================== |
---|
| 20 | ! Local variables: |
---|
| 21 | INTEGER :: l |
---|
| 22 | !=============================================================================== |
---|
| 23 | DO l=1,llmp1; p(:,l) = ap(l) + bp(l) * ps(:); END DO |
---|
| 24 | |
---|
| 25 | END SUBROUTINE pression |
---|
| 26 | |
---|
| 27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.