sujfh.F90 Source File


This file depends on

sourcefile~~sujfh.f90~2~~EfferentGraph sourcefile~sujfh.f90~2 sujfh.F90 sourcefile~yompldsw.f90 yompldsw.F90 sourcefile~sujfh.f90~2->sourcefile~yompldsw.f90 sourcefile~yomlun.f90 yomlun.F90 sourcefile~sujfh.f90~2->sourcefile~yomlun.f90 sourcefile~yomjfh.f90 yomjfh.F90 sourcefile~sujfh.f90~2->sourcefile~yomjfh.f90 sourcefile~yomhook_dummy.f90 yomhook_dummy.F90 sourcefile~sujfh.f90~2->sourcefile~yomhook_dummy.f90 sourcefile~parkind1.f90 parkind1.F90 sourcefile~sujfh.f90~2->sourcefile~parkind1.f90 sourcefile~yomlun.f90->sourcefile~parkind1.f90 sourcefile~yomlun_ifsaux.f90 yomlun_ifsaux.F90 sourcefile~yomlun.f90->sourcefile~yomlun_ifsaux.f90 sourcefile~yomjfh.f90->sourcefile~parkind1.f90 sourcefile~yomlun_ifsaux.f90->sourcefile~parkind1.f90

Contents

Source Code


Source Code

SUBROUTINE SUJFH

! Purpose :
! -------
!   *SUJFH* Read namelist NAMJFH & Initialize module YOMJFH

! Interface :
! ---------

! Externals :
! ---------
!   POSNAM

! Method :
! ------

! Reference :
! ---------

! Author :
! ------
!   15-Mar-2005 R. El Khatib  *METEO-FRANCE*

! Modifications :
! -------------

! End Modifications
!-----------------------------------------------------------------------------

USE PARKIND1  ,ONLY : JPRB
USE YOMHOOK   ,ONLY : LHOOK,   DR_HOOK

! Ce qui concerne NULNAM commente par MPL le 15.04.09
!USE YOMLUN   , ONLY : NULOUT   ,NULNAM
USE YOMLUN   , ONLY : NULOUT   
USE YOMPLDSW , ONLY : LOPT_RS6K
USE YOMJFH   , ONLY : N_VMASS

IMPLICIT NONE

REAL(KIND=JPRB) :: ZHOOK_HANDLE

#include "posnam.intfb.h"

#include "namjfh.h"

!-----------------------------------------------------------------------------

IF (LHOOK) CALL DR_HOOK('SUJFH',0,ZHOOK_HANDLE)

IF (LOPT_RS6K) THEN
  N_VMASS=8
! Ce qui concerne NAMJFH commente par MPL le 15.04.09
! CALL POSNAM(NULNAM,'NAMJFH')
! READ(NULNAM,NAMJFH)
ELSE
  N_VMASS=0
ENDIF

WRITE(UNIT=NULOUT,FMT='('' MODULE YOMJFH'')')
WRITE(UNIT=NULOUT,FMT='(''   N_VMASS ='',I2)') N_VMASS 


IF (LHOOK) CALL DR_HOOK('SUJFH',1,ZHOOK_HANDLE)

END SUBROUTINE SUJFH