LMDZ
convmas.F90
Go to the documentation of this file.
1 SUBROUTINE convmas (pbaru, pbarv, convm)
2 !
3 !-------------------------------------------------------------------------------
4 ! Authors: P. Le Van , Fr. Hourdin.
5 !-------------------------------------------------------------------------------
6 ! Purpose: Compute mass flux convergence at p levels.
7  IMPLICIT NONE
8  include "dimensions.h"
9  include "paramet.h"
10  include "comgeom.h"
11  include "logic.h"
12 !===============================================================================
13 ! Arguments:
14  REAL, INTENT(IN) :: pbaru(ip1jmp1,llm)
15  REAL, INTENT(IN) :: pbarv(ip1jm ,llm)
16  REAL, INTENT(OUT) :: convm(ip1jmp1,llm)
17 !===============================================================================
18 ! Method used: Computation from top to bottom.
19 ! Mass convergence at level llm is equal to zero and is not stored in convm.
20 !===============================================================================
21 ! Local variables:
22  INTEGER :: l
23 !===============================================================================
24 
25 !--- Computation of - (d(pbaru)/dx + d(pbarv)/dy )
26  CALL convflu( pbaru, pbarv, llm, convm )
27 
28 !--- Filter
29  CALL filtreg( convm, jjp1, llm, 2, 2, .true., 1 )
30 
31 !--- Mass convergence is integrated from top to bottom
32  DO l=llmm1,1,-1
33  convm(:,l) = convm(:,l) + convm(:,l+1)
34  END DO
35 
36 END SUBROUTINE convmas
!$Header llmm1 INTEGER ip1jmp1
Definition: paramet.h:14
!$Id Turb_fcg_gcssold get_uvd hqturb_gcssold endif!large scale llm day day1 day day1 *dt_toga endif!time annee_ref dt_toga u_toga vq_toga w_prof vq_prof llm day day1 day day1 *dt_dice endif!time annee_ref dt_dice swup_dice vg_dice omega_dice tg_prof vg_profd w_profd omega_profd!do llm!print llm l llm
subroutine convflu(xflu, yflu, nbniv, convfl)
Definition: convflu.F:5
subroutine convmas(pbaru, pbarv, convm)
Definition: convmas.F90:2
!$Header llmm1 INTEGER ip1jm
Definition: paramet.h:14
!$Header jjp1
Definition: paramet.h:14
!$Id itapm1 ENDIF!IM on interpole les champs sur les niveaux STD de pression!IM a chaque pas de temps de la physique c!positionnement de l argument logique a false c!pour ne pas recalculer deux fois la meme chose!c!a cet effet un appel a plevel_new a ete deplace c!a la fin de la serie d appels c!la boucle DO nlevSTD a ete internalisee c!dans d ou la creation de cette routine c c!CALL ulevSTD CALL &zphi philevSTD CALL &zx_rh rhlevSTD!DO klev DO klon klev DO klon klev DO klon klev DO klon klev DO klon klev DO klon klev DO klon klev DO klon klev DO klon klev DO klon du jour ou toutes les read_climoz CALL true
subroutine filtreg(champ, nlat, nbniv, ifiltre, iaire, griscal, iter)
Definition: filtreg.F:6