Skip to content
Snippets Groups Projects
modn_frc.f90 2.31 KiB
Newer Older
  • Learn to ignore specific revisions
  • !MNH_LIC Copyright 1994-2014 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 for details. version 1.
    
    !-----------------------------------------------------------------
    !--------------- special set of characters for RCS information
    !-----------------------------------------------------------------
    ! $Source$ $Revision$
    ! MASDEV4_7 modn 2006/05/18 13:07:25
    !-----------------------------------------------------------------
    !     ###############
          MODULE MODN_FRC
    !     ###############
    !!
    !!***  *MODN_FRC -  Namelist module for the forcing control parameters
    !!
    !!    PURPOSE
    !!    -------
    !       This module contains the following control parameters are used 
    !     by FORCING:
    !     - LGEOST_UV_FRC and LGEOST_TH_FRC
    !     - LTEND_THRV_FRC     
    !     - LVERT_MOTION_FRC  
    !     - LRELAX_THRV_FRC and LRELAX_UV_FRC using:
    !         XRELAX_TIME_FRC, XRELAX_HEIGHT_FRC and CRELAX_HEIGHT_TYPE
    !     - LTRANS
    !         XUTRANS, XVTRANS
    !!
    !!**  IMPLICIT ARGUMENTS
    !!    ------------------
    !!      None 
    !!
    !!    REFERENCE
    !!    ---------
    !!      Book2 of documentation of Meso-NH (module MODD_FRC)
    !!      
    !!
    !!    AUTHOR
    !!    ------
    !  !	Marc Georgelin Labo d'aerologie
    !!
    !!    MODIFICATIONS
    !!    -------------
    !!      Original 29/07/96 
    !!      29/07/96 (Pinty&Suhre) revised
    !!      18/11/96 (Pinty)       add translation
    !!      27/01/98 (P. Bechtold) use tendency forcing
    !!                             add SST and surf pressure forcing
    !!      06/2003  (V. Masson)   removes SST forcing (externalisation of surface)
    !-------------------------------------------------------------------------------
    USE MODD_FRC
    !
    IMPLICIT NONE
    !
    NAMELIST /NAM_FRC/ LGEOST_UV_FRC      , &
                       LGEOST_TH_FRC      , &
                       LTEND_THRV_FRC     , &
                       LVERT_MOTION_FRC   , &
                       LRELAX_THRV_FRC    , &
                       LRELAX_UV_FRC      , &
                       XRELAX_TIME_FRC    , &
                       XRELAX_HEIGHT_FRC  , &
                       CRELAX_HEIGHT_TYPE , &
                       LTRANS             , &
                       XUTRANS            , &
                       XVTRANS            , &
                       LPGROUND_FRC
    !
    END MODULE MODN_FRC