diff --git a/src/MNH/ini_lesn.f90 b/src/MNH/ini_lesn.f90 index f29666f7eb814faf931dbfa32bca4504e7dfdbda..7bb8af7e91f97f3ca46d43b794cf0c73e6c4e38b 100644 --- a/src/MNH/ini_lesn.f90 +++ b/src/MNH/ini_lesn.f90 @@ -106,31 +106,6 @@ IJU_ll = IJMAX_ll+2*JPHEXT ! 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? diff --git a/src/MNH/modd_les_budget.f90 b/src/MNH/modd_les_budget.f90 index 355b3890b566a508e94163f700d59bbacb432456..062eb355286b592ace756db804a5257fbe31d3f2 100644 --- a/src/MNH/modd_les_budget.f90 +++ b/src/MNH/modd_les_budget.f90 @@ -1,13 +1,8 @@ -!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 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. !----------------------------------------------------------------- -!--------------- special set of characters for RCS information -!----------------------------------------------------------------- -! $Source$ $Revision$ -! MASDEV4_7 modd 2006/05/18 13:07:25 -!----------------------------------------------------------------- ! ############### MODULE MODD_LES_BUDGET ! ############### @@ -113,30 +108,30 @@ REAL, DIMENSION(:,:), ALLOCATABLE :: X_LES_BU_SBG_Tke ! !* index for each processus taken into account in the budgets ! -INTEGER :: NLES_TOTADV -INTEGER :: NLES_RELA -INTEGER :: NLES_RAD -INTEGER :: NLES_GRAV -INTEGER :: NLES_COR -INTEGER :: NLES_MICR -INTEGER :: NLES_HTURB -INTEGER :: NLES_VTURB -INTEGER :: NLES_FORC -INTEGER :: NLES_PRES -INTEGER :: NLES_DIFF -INTEGER :: NLES_CURV -INTEGER :: NLES_PREF -INTEGER :: NLES_DP -INTEGER :: NLES_TP -INTEGER :: NLES_TR -INTEGER :: NLES_DISS -INTEGER :: NLES_TEND -INTEGER :: NLES_MISC -INTEGER :: NLES_ADVR -INTEGER :: NLES_ADVM -INTEGER :: NLES_NEST -! -INTEGER :: NLES_TOT +integer, parameter :: NLES_TOTADV= 1 +integer, parameter :: NLES_RELA = 2 +integer, parameter :: NLES_RAD = 3 +integer, parameter :: NLES_GRAV = 4 +integer, parameter :: NLES_COR = 5 +integer, parameter :: NLES_MICR = 6 +integer, parameter :: NLES_HTURB = 7 +integer, parameter :: NLES_VTURB = 8 +integer, parameter :: NLES_FORC = 9 +integer, parameter :: NLES_PRES = 10 +integer, parameter :: NLES_DIFF = 11 +integer, parameter :: NLES_CURV = 12 +integer, parameter :: NLES_PREF = 13 +integer, parameter :: NLES_DP = 14 +integer, parameter :: NLES_TP = 15 +integer, parameter :: NLES_TR = 16 +integer, parameter :: NLES_DISS = 17 +integer, parameter :: NLES_TEND = 18 +integer, parameter :: NLES_ADVR = 19 +integer, parameter :: NLES_ADVM = 20 +integer, parameter :: NLES_NEST = 21 +integer, parameter :: NLES_MISC = 22 + +integer, parameter :: NLES_TOT = 22 ! !------------------------------------------------------------------------------- !