SURFEX v8.1
General documentation of Surfex
Surfex_Git2
src
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
modd_slt_n::slt_t
Definition:
modd_sltn.F90:18
yomhook::dr_hook
Definition:
yomhook.F90:20
parkind1::jprb
integer, parameter jprb
Definition:
parkind1.F90:32
modd_slt_n::slt_init
subroutine slt_init(YSLT)
Definition:
modd_sltn.F90:26
modd_slt_n
Definition:
modd_sltn.F90:5
yomhook::lhook
logical lhook
Definition:
yomhook.F90:15
parkind1
Definition:
parkind1.F90:1
yomhook
Definition:
yomhook.F90:1
Generated on Tue Jan 16 2018 16:23:29 for SURFEX v8.1 by
1.8.13