Ignore:
Timestamp:
May 4, 2010, 2:46:58 PM (14 years ago)
Author:
musat
Message:

Add logical flags ok_histNMC(3) to manage output of the
standard pressure files hist*NMC.nc
IM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk/libf/phylmd/conf_phys.F90

    r1368 r1374  
    139139  Integer, save :: lev_histins_omp, lev_histLES_omp
    140140  INTEGER, SAVE :: lev_histdayNMC_omp
     141  LOGICAL, SAVE :: ok_histNMC_omp(3)
    141142  REAL, SAVE :: freq_outNMC_omp(3), freq_calNMC_omp(3)
    142143  CHARACTER*4, SAVE :: type_run_omp
     
    10891090!
    10901091!histNMC BEG
     1092!Config Key  = ok_histNMC
     1093!Config Desc = ok_histNMC(1) = frequence de sortie fichiers histmthNMC
     1094!Config Desc = ok_histNMC(2) = frequence de sortie fichiers histdayNMC
     1095!Config Desc = ok_histNMC(3) = frequence de sortie fichiers histhfNMC
     1096!Config Def  = n, n, n
     1097!Config Help =
     1098!
     1099  ok_histNMC_omp(1) = .false.
     1100  ok_histNMC_omp(2) = .false.
     1101  ok_histNMC_omp(3) = .false.
     1102  call getin('ok_histNMC',ok_histNMC_omp)
     1103!
    10911104!Config Key  = freq_outNMC
    10921105!Config Desc = freq_outNMC(1) = frequence de sortie fichiers histmthNMC
     
    14761489    lev_histLES = lev_histLES_omp
    14771490    lev_histdayNMC = lev_histdayNMC_omp
     1491    ok_histNMC(:) = ok_histNMC_omp(:)
    14781492    freq_outNMC(:) = freq_outNMC_omp(:)
    14791493    freq_calNMC(:) = freq_calNMC_omp(:)
     
    16631677  write(numout,*)' lev_histLES = ',lev_histLES
    16641678  write(numout,*)' lev_histdayNMC = ',lev_histdayNMC
     1679  write(numout,*)' ok_histNMC = ',ok_histNMC
    16651680  write(numout,*)' freq_outNMC = ',freq_outNMC
    16661681  write(numout,*)' freq_calNMC = ',freq_calNMC
Note: See TracChangeset for help on using the changeset viewer.