[5106] | 1 | SUBROUTINE convmas(pbaru, pbarv, convm) |
---|
[5099] | 2 | |
---|
[2336] | 3 | !------------------------------------------------------------------------------- |
---|
| 4 | ! Authors: P. Le Van , Fr. Hourdin. |
---|
| 5 | !------------------------------------------------------------------------------- |
---|
| 6 | ! Purpose: Compute mass flux convergence at p levels. |
---|
[5106] | 7 | USE lmdz_filtreg, ONLY: filtreg |
---|
[5136] | 8 | USE lmdz_comgeom |
---|
| 9 | |
---|
[5159] | 10 | USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm |
---|
| 11 | USE lmdz_paramet |
---|
[2336] | 12 | IMPLICIT NONE |
---|
[5159] | 13 | |
---|
| 14 | |
---|
[2336] | 15 | !=============================================================================== |
---|
| 16 | ! Arguments: |
---|
| 17 | REAL, INTENT(IN) :: pbaru(ip1jmp1,llm) |
---|
| 18 | REAL, INTENT(IN) :: pbarv(ip1jm ,llm) |
---|
| 19 | REAL, INTENT(OUT) :: convm(ip1jmp1,llm) |
---|
| 20 | !=============================================================================== |
---|
| 21 | ! Method used: Computation from top to bottom. |
---|
| 22 | ! Mass convergence at level llm is equal to zero and is not stored in convm. |
---|
| 23 | !=============================================================================== |
---|
| 24 | ! Local variables: |
---|
| 25 | INTEGER :: l |
---|
| 26 | !=============================================================================== |
---|
[524] | 27 | |
---|
[2336] | 28 | !--- Computation of - (d(pbaru)/dx + d(pbarv)/dy ) |
---|
| 29 | CALL convflu( pbaru, pbarv, llm, convm ) |
---|
[524] | 30 | |
---|
[2336] | 31 | !--- Filter |
---|
| 32 | CALL filtreg( convm, jjp1, llm, 2, 2, .TRUE., 1 ) |
---|
[524] | 33 | |
---|
[2336] | 34 | !--- Mass convergence is integrated from top to bottom |
---|
| 35 | DO l=llmm1,1,-1 |
---|
| 36 | convm(:,l) = convm(:,l) + convm(:,l+1) |
---|
| 37 | END DO |
---|
[524] | 38 | |
---|
[2336] | 39 | END SUBROUTINE convmas |
---|