SURFEX v8.1
General documentation of Surfex
modd_sltn.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 MODULE modd_slt_n
6 
7 !Purpose:
8 !Declare variables and constants necessary to do the sea salt calculations
9 !Here are only the variables which depend on the grid!
10 !
11 !Author: Alf Grini / Pierre Tulet
12 !
13 USE yomhook ,ONLY : lhook, dr_hook
14 USE parkind1 ,ONLY : jprb
15 !
16 IMPLICIT NONE
17 !
18 TYPE slt_t
19  REAL,DIMENSION(:), POINTER :: xemisradius_slt ! Number median radius for each source mode
20  REAL,DIMENSION(:), POINTER :: xemissig_slt ! sigma for each source mode
21 END TYPE slt_t
22 !
23 CONTAINS
24 !
25 SUBROUTINE slt_init(YSLT)
26 TYPE(slt_t), INTENT(INOUT) :: YSLT
27 REAL(KIND=JPRB) :: ZHOOK_HANDLE
28 IF (lhook) CALL dr_hook("MODD_SLT_N:SLT_INIT",0,zhook_handle)
29  NULLIFY(yslt%XEMISRADIUS_SLT)
30  NULLIFY(yslt%XEMISSIG_SLT)
31 IF (lhook) CALL dr_hook("MODD_SLT_N:SLT_INIT",1,zhook_handle)
32 END SUBROUTINE slt_init
33 !
34 END MODULE modd_slt_n
integer, parameter jprb
Definition: parkind1.F90:32
subroutine slt_init(YSLT)
Definition: modd_sltn.F90:26
logical lhook
Definition: yomhook.F90:15