SURFEX v8.1
General documentation of 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 ! ################
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 
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
subroutine teb_panel_init(YTEB_PANEL)
integer, parameter jprb
Definition: parkind1.F90:32
logical lhook
Definition: yomhook.F90:15