Skip to content
Snippets Groups Projects
Commit 159aeaad authored by WAUTELET Philippe's avatar WAUTELET Philippe
Browse files

Philippe 13/09/2019: transform NLES_* variables into parameters

parent b4a52ee0
No related branches found
No related tags found
No related merge requests found
...@@ -106,31 +106,6 @@ IJU_ll = IJMAX_ll+2*JPHEXT ...@@ -106,31 +106,6 @@ IJU_ll = IJMAX_ll+2*JPHEXT
! !
ILUOUT = TLUOUT%NLU ILUOUT = TLUOUT%NLU
! !
NLES_TOTADV = 1
NLES_RELA = 2
NLES_RAD = 3
NLES_GRAV = 4
NLES_COR = 5
NLES_MICR = 6
NLES_HTURB = 7
NLES_VTURB = 8
NLES_FORC = 9
NLES_PRES = 10
NLES_DIFF = 11
NLES_CURV = 12
NLES_PREF = 13
NLES_DP = 14
NLES_TP = 15
NLES_TR = 16
NLES_DISS = 17
NLES_TEND = 18
NLES_ADVR = 19
NLES_ADVM = 20
NLES_NEST = 21
NLES_MISC = 22
!
NLES_TOT = 22
!
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
! !
!* 1. Does LES computations are used? !* 1. Does LES computations are used?
......
!MNH_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier !MNH_LIC Copyright 2002-2019 CNRS, Meteo-France and Universite Paul Sabatier
!MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence !MNH_LIC This is part of the Meso-NH software governed by the CeCILL-C licence
!MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt !MNH_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
!MNH_LIC for details. version 1. !MNH_LIC for details. version 1.
!----------------------------------------------------------------- !-----------------------------------------------------------------
!--------------- special set of characters for RCS information
!-----------------------------------------------------------------
! $Source$ $Revision$
! MASDEV4_7 modd 2006/05/18 13:07:25
!-----------------------------------------------------------------
! ############### ! ###############
MODULE MODD_LES_BUDGET MODULE MODD_LES_BUDGET
! ############### ! ###############
...@@ -113,30 +108,30 @@ REAL, DIMENSION(:,:), ALLOCATABLE :: X_LES_BU_SBG_Tke ...@@ -113,30 +108,30 @@ REAL, DIMENSION(:,:), ALLOCATABLE :: X_LES_BU_SBG_Tke
! !
!* index for each processus taken into account in the budgets !* index for each processus taken into account in the budgets
! !
INTEGER :: NLES_TOTADV integer, parameter :: NLES_TOTADV= 1
INTEGER :: NLES_RELA integer, parameter :: NLES_RELA = 2
INTEGER :: NLES_RAD integer, parameter :: NLES_RAD = 3
INTEGER :: NLES_GRAV integer, parameter :: NLES_GRAV = 4
INTEGER :: NLES_COR integer, parameter :: NLES_COR = 5
INTEGER :: NLES_MICR integer, parameter :: NLES_MICR = 6
INTEGER :: NLES_HTURB integer, parameter :: NLES_HTURB = 7
INTEGER :: NLES_VTURB integer, parameter :: NLES_VTURB = 8
INTEGER :: NLES_FORC integer, parameter :: NLES_FORC = 9
INTEGER :: NLES_PRES integer, parameter :: NLES_PRES = 10
INTEGER :: NLES_DIFF integer, parameter :: NLES_DIFF = 11
INTEGER :: NLES_CURV integer, parameter :: NLES_CURV = 12
INTEGER :: NLES_PREF integer, parameter :: NLES_PREF = 13
INTEGER :: NLES_DP integer, parameter :: NLES_DP = 14
INTEGER :: NLES_TP integer, parameter :: NLES_TP = 15
INTEGER :: NLES_TR integer, parameter :: NLES_TR = 16
INTEGER :: NLES_DISS integer, parameter :: NLES_DISS = 17
INTEGER :: NLES_TEND integer, parameter :: NLES_TEND = 18
INTEGER :: NLES_MISC integer, parameter :: NLES_ADVR = 19
INTEGER :: NLES_ADVR integer, parameter :: NLES_ADVM = 20
INTEGER :: NLES_ADVM integer, parameter :: NLES_NEST = 21
INTEGER :: NLES_NEST integer, parameter :: NLES_MISC = 22
!
INTEGER :: NLES_TOT integer, parameter :: NLES_TOT = 22
! !
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
! !
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment