Changeset 5099 for LMDZ6/branches/Amaury_dev/libf/phylmd/stratocu_if.F90
- Timestamp:
- Jul 22, 2024, 9:29:09 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/stratocu_if.F90
r5082 r5099 10 10 ! ou une forte inversion est presente 11 11 ! On peut dire qu'il represente la convection peu profonde 12 ! 12 13 13 ! Arguments: 14 14 ! klon-----input-I- nombre de points a traiter … … 16 16 ! pplay----input-R- pression au milieu de chaque couche (en Pa) 17 17 ! t--------input-R- temperature (K) 18 ! 18 19 19 ! weak_inversion-----logical 20 20 !====================================================================== 21 ! 21 22 22 ! Arguments: 23 ! 23 24 24 INTEGER, INTENT(IN) :: klon,klev 25 25 REAL, DIMENSION(klon, klev+1), INTENT(IN) :: paprs … … 29 29 30 30 REAL, DIMENSION(klon), INTENT(OUT) :: weak_inversion 31 ! 31 32 32 ! Quelques constantes et options: 33 ! 33 34 34 REAL seuil_inversion ! au-dela l'inversion est consideree trop faible 35 35 ! PARAMETER (seuil=-0.1) 36 36 37 !38 37 ! Variables locales: 39 ! 38 40 39 INTEGER i, k, invb(klon) 41 40 REAL zl2(klon) … … 44 43 INCLUDE "YOMCST.h" 45 44 46 !47 45 ! Chercher la zone d'inversion forte 48 !49 46 50 47 DO i = 1, klon … … 65 62 ENDDO 66 63 64 ! Introduire une diffusion: 67 65 68 !69 ! Introduire une diffusion:70 !71 66 DO i = 1, klon 72 67 IF ( (pctsrf(i,is_oce) < 0.5) .OR. &
Note: See TracChangeset
for help on using the changeset viewer.