FE-Project
Loading...
Searching...
No Matches
scale_model_component.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
10!-------------------------------------------------------------------------------
11#include "scaleFElib.h"
13 !-----------------------------------------------------------------------------
14 !
15 !++ used modules
16 !
17 use scale_precision
18 use scale_io
19 use scale_prof
20
21 use scale_time_manager, only: &
23
24 !-----------------------------------------------------------------------------
25 implicit none
26 private
27 !-----------------------------------------------------------------------------
28 !
29 !++ Public type & procedure
30 !
31
32 type, abstract, public :: modelcomponent
33 character(len=H_SHORT), private :: name
34 logical, private :: is_activated = .false.
35 type(time_manager_component) :: time_manager
36 contains
37 procedure(modelcomponent_setup), deferred, public :: setup
38 procedure(modelcomponent_calc_tendency), deferred, public :: calc_tendency
39 procedure(modelcomponent_update), deferred, public :: update
40 procedure(modelcomponent_finalize), deferred, public :: finalize
41
42 procedure, public :: modelcomponent_init
43 procedure, public :: isactivated => modelcomponent_isactivated
44 procedure, public :: getcomponentname => modelcomponent_getcompname
45 end type modelcomponent
46
47 interface
48 subroutine modelcomponent_setup( this )
49 import modelcomponent
50 class(modelcomponent), intent(inout), target :: this
51 end subroutine modelcomponent_setup
52
53 subroutine modelcomponent_calc_tendency( this, force )
54 import modelcomponent
55 class(modelcomponent), intent(inout) :: this
56 logical, intent(in) :: force
57 end subroutine modelcomponent_calc_tendency
58
59 subroutine modelcomponent_update( this )
60 import modelcomponent
61 class(modelcomponent), intent(inout) :: this
62 end subroutine modelcomponent_update
63
64 subroutine modelcomponent_finalize( this )
65 import modelcomponent
66 class(modelcomponent), intent(inout) :: this
67 end subroutine modelcomponent_finalize
68 end interface
69
70 !-----------------------------------------------------------------------------
71 !
72 !++ Public parameters & variables
73 !
74 !-----------------------------------------------------------------------------
75 !
76 !++ Private procedure
77 !
78 !-----------------------------------------------------------------------------
79 !
80 !++ Private parameters & variables
81 !
82 !-----------------------------------------------------------------------------
83
84contains
85!OCL SERIAL
86 subroutine modelcomponent_init( this, name, is_activated )
87 implicit none
88
89 class(modelcomponent), intent(inout) :: this
90 character(len=*), intent(in) :: name
91 logical, intent(in) :: is_activated
92 !---------------------------------------------------
93
94 this%name = name
95 this%is_activated = is_activated
96
97 return
98 end subroutine modelcomponent_init
99
100!OCL SERIAL
101 function modelcomponent_isactivated( this ) result( is_activated )
102 implicit none
103
104 class(modelcomponent), intent(in) :: this
105 logical :: is_activated
106 !---------------------------------------------------
107
108 is_activated = this%is_activated
109 return
110 end function modelcomponent_isactivated
111
112!OCL SERIAL
113 function modelcomponent_getcompname( this ) result( model_name )
114 implicit none
115
116 class(modelcomponent), intent(in) :: this
117 character(len=H_SHORT) :: model_name
118 !---------------------------------------------------
119
120 model_name = this%name
121 return
122 end function modelcomponent_getcompname
123
124end module scale_model_component
FElib / model framework / model component.
module common / time