SURFEX v8.1
General documentation of Surfex
Surfex_Git2
src
SURFEX
modd_ch_seafluxn.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
! #####################
6
MODULE
modd_ch_seaflux_n
7
! ######################
8
!
9
!!
10
!! PURPOSE
11
!! -------
12
!
13
!
14
!
15
!!
16
!!** IMPLICIT ARGUMENTS
17
!! ------------------
18
!! None
19
!!
20
!
21
!! AUTHOR
22
!! ------
23
!! P. Tulet *Meteo France*
24
!!
25
!! MODIFICATIONS
26
!! -------------
27
!! 16/07/03 (P. Tulet) restructured for externalization
28
!------------------------------------------------------------------------------
29
!
30
!* 0. DECLARATIONS
31
! ------------
32
!
33
USE
modd_sv_n
, ONLY
:
sv_t
,
sv_init
34
!
35
USE
yomhook
,ONLY
:
lhook
,
dr_hook
36
USE
parkind1
,ONLY
:
jprb
37
!
38
IMPLICIT NONE
39
40
TYPE
ch_seaflux_t
41
!
42
CHARACTER(LEN=6)
:: cch_dry_dep
! deposition scheme
43
REAL
,
DIMENSION(:,:)
,
POINTER
:: xdep
! final dry deposition
44
! velocity for sea
45
TYPE
(
sv_t
) :: svs
46
47
CHARACTER(LEN=6)
,
DIMENSION(:)
,
POINTER
:: cch_names
! NAME OF CHEMICAL SPECIES
48
! (FOR DIAG ONLY)
49
CHARACTER(LEN=6)
,
DIMENSION(:)
,
POINTER
:: cdstnames
50
CHARACTER(LEN=6)
,
DIMENSION(:)
,
POINTER
:: csltnames
51
CHARACTER(LEN=6)
,
DIMENSION(:)
,
POINTER
:: caer_names
52
!
53
END TYPE
ch_seaflux_t
54
55
56
57
CONTAINS
58
59
!
60
61
62
63
64
SUBROUTINE
ch_seaflux_init
(YCH_SEAFLUX)
65
TYPE
(
ch_seaflux_t
),
INTENT(INOUT)
:: YCH_SEAFLUX
66
REAL(KIND=JPRB)
:: ZHOOK_HANDLE
67
IF
(
lhook
)
CALL
dr_hook
(
"MODD_CH_SEAFLUX_N:CH_SEAFLUX_INIT"
,0,zhook_handle
)
68
NULLIFY
(ych_seaflux%XDEP)
69
NULLIFY
(ych_seaflux%CCH_NAMES)
70
NULLIFY
(ych_seaflux%CAER_NAMES)
71
NULLIFY
(ych_seaflux%CDSTNAMES)
72
NULLIFY
(ych_seaflux%CSLTNAMES)
73
ych_seaflux%CCH_DRY_DEP=
' '
74
CALL
sv_init
(ych_seaflux%SVS)
75
IF
(
lhook
)
CALL
dr_hook
(
"MODD_CH_SEAFLUX_N:CH_SEAFLUX_INIT"
,1,zhook_handle
)
76
END SUBROUTINE
ch_seaflux_init
77
78
79
END MODULE
modd_ch_seaflux_n
yomhook::dr_hook
Definition:
yomhook.F90:20
modd_ch_seaflux_n::ch_seaflux_t
Definition:
modd_ch_seafluxn.F90:40
modd_sv_n
Definition:
modd_svn.F90:6
modd_sv_n::sv_init
subroutine sv_init(YSV)
Definition:
modd_svn.F90:65
modd_ch_seaflux_n::ch_seaflux_init
subroutine ch_seaflux_init(YCH_SEAFLUX)
Definition:
modd_ch_seafluxn.F90:65
modd_sv_n::sv_t
Definition:
modd_svn.F90:35
parkind1::jprb
integer, parameter jprb
Definition:
parkind1.F90:32
modd_ch_seaflux_n
Definition:
modd_ch_seafluxn.F90:6
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