SURFEX v8.1
General documentation of Surfex
Surfex_Git2
src
SURFEX
modd_teb_paneln.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_teb_panel_n
7
! ################
8
!
9
!!**** *MODD_TEB_PANEL_n - declaration of solar panel parameters
10
!!
11
!! PURPOSE
12
!! -------
13
! Declaration of surface parameters
14
!
15
!!
16
!!** IMPLICIT ARGUMENTS
17
!! ------------------
18
!! None
19
!!
20
!! REFERENCE
21
!! ---------
22
!!
23
!! AUTHOR
24
!! ------
25
!! V. Masson *Meteo France*
26
!!
27
!! MODIFICATIONS
28
!! -------------
29
!! Original 08/2013
30
!
31
!* 0. DECLARATIONS
32
! ------------
33
!
34
!
35
USE
yomhook
,ONLY
:
lhook
,
dr_hook
36
USE
parkind1
,ONLY
:
jprb
37
!
38
IMPLICIT NONE
39
40
TYPE
teb_panel_t
41
!
42
REAL
,
POINTER
,
DIMENSION(:)
:: xemis_panel
! emissivity of solar panels (-)
43
REAL
,
POINTER
,
DIMENSION(:)
:: xalb_panel
! albedo of soolar panels (-)
44
REAL
,
POINTER
,
DIMENSION(:)
:: xeff_panel
! Efficiency coefficient of solar panels (-)
45
REAL
,
POINTER
,
DIMENSION(:)
:: xfrac_panel
! Fraction of SOLAR panels on roofs (-)
46
REAL
,
POINTER
,
DIMENSION(:)
:: xther_prodc_day
! Present day integrated thermal production of energy (J/m2 panel)
47
!
48
END TYPE
teb_panel_t
49
50
51
52
CONTAINS
53
54
!
55
56
57
58
59
SUBROUTINE
teb_panel_init
(YTEB_PANEL)
60
TYPE
(
teb_panel_t
),
INTENT(INOUT)
:: YTEB_PANEL
61
REAL(KIND=JPRB)
:: ZHOOK_HANDLE
62
IF
(
lhook
)
CALL
dr_hook
(
"MODD_TEB_PANEL_N:TEB_PANEL_INIT"
,0,zhook_handle
)
63
NULLIFY
(yteb_panel%XEMIS_PANEL)
64
NULLIFY
(yteb_panel%XALB_PANEL)
65
NULLIFY
(yteb_panel%XEFF_PANEL)
66
NULLIFY
(yteb_panel%XFRAC_PANEL)
67
NULLIFY
(yteb_panel%XTHER_PRODC_DAY)
68
IF
(
lhook
)
CALL
dr_hook
(
"MODD_TEB_PANEL_N:TEB_PANEL_INIT"
,1,zhook_handle
)
69
END SUBROUTINE
teb_panel_init
70
71
72
END MODULE
modd_teb_panel_n
modd_teb_panel_n::teb_panel_t
Definition:
modd_teb_paneln.F90:40
yomhook::dr_hook
Definition:
yomhook.F90:20
modd_teb_panel_n::teb_panel_init
subroutine teb_panel_init(YTEB_PANEL)
Definition:
modd_teb_paneln.F90:60
parkind1::jprb
integer, parameter jprb
Definition:
parkind1.F90:32
modd_teb_panel_n
Definition:
modd_teb_paneln.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