OOPS
qg_model_interface.F90
Go to the documentation of this file.
1 ! (C) Copyright 2009-2016 ECMWF.
2 !
3 ! This software is licensed under the terms of the Apache Licence Version 2.0
4 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5 ! In applying this licence, ECMWF does not waive the privileges and immunities
6 ! granted to it by virtue of its status as an intergovernmental organisation nor
7 ! does it submit to any jurisdiction.
8 
10 
11 use fckit_configuration_module, only: fckit_configuration
12 use fckit_log_module, only: fckit_log
13 use iso_c_binding
14 use qg_fields_mod
15 use qg_model_mod
16 
17 implicit none
18 
19 private
20 ! ------------------------------------------------------------------------------
21 contains
22 ! ------------------------------------------------------------------------------
23 !> Setup model
24 subroutine qg_model_setup_c(c_key_self,c_conf) bind (c,name='qg_model_setup_f90')
25 
26 implicit none
27 
28 ! Passed variables
29 integer(c_int),intent(inout) :: c_key_self !< Model configuration
30 type(c_ptr),value,intent(in) :: c_conf !< Configuration
31 
32 ! Local variables
33 type(fckit_configuration) :: f_conf
34 type(qg_model_config),pointer :: self
35 
36 ! Interface
37 f_conf = fckit_configuration(c_conf)
38 call qg_model_registry%init()
39 call qg_model_registry%add(c_key_self)
40 call qg_model_registry%get(c_key_self,self)
41 
42 ! Call Fortran
43 call qg_model_setup(self,f_conf)
44 
45 end subroutine qg_model_setup_c
46 ! ------------------------------------------------------------------------------
47 !> Delete the QG model
48 subroutine qg_delete_c(c_key_conf) bind (c,name='qg_model_delete_f90')
49 
50 implicit none
51 integer(c_int),intent(inout) :: c_key_conf !< Model configuration
52 
53 call qg_model_registry%remove(c_key_conf)
54 
55 end subroutine qg_delete_c
56 ! ------------------------------------------------------------------------------
57 !> Perform a timestep of the QG model
58 subroutine qg_model_propagate_c(c_key_conf,c_key_state) bind(c,name='qg_model_propagate_f90')
59 
60 implicit none
61 
62 ! Passed variables
63 integer(c_int),intent(in) :: c_key_conf !< Model configuration
64 integer(c_int),intent(in) :: c_key_state !< State fields
65 
66 ! Local variables
67 type(qg_model_config),pointer :: conf
68 type(qg_fields),pointer :: fld
69 
70 ! Interface
71 call qg_model_registry%get(c_key_conf,conf)
72 call qg_fields_registry%get(c_key_state,fld)
73 
74 ! Call Fortran
75 call qg_model_propagate(conf,fld)
76 
77 end subroutine qg_model_propagate_c
78 ! ------------------------------------------------------------------------------
79 !> Perform a timestep of the QG model - tangent linear
80 subroutine qg_model_propagate_tl_c(c_key_conf,c_key_traj,c_key_incr) bind(c,name='qg_model_propagate_tl_f90')
81 
82 implicit none
83 
84 ! Passed variables
85 integer(c_int),intent(in) :: c_key_conf !< Model configuration
86 integer(c_int),intent(in) :: c_key_traj !< Trajectory fields
87 integer(c_int),intent(in) :: c_key_incr !< Increment fields
88 
89 ! Local variables
90 type(qg_model_config),pointer :: conf
91 type(qg_fields),pointer :: traj
92 type(qg_fields),pointer :: fld
93 
94 ! Interface
95 call qg_model_registry%get(c_key_conf,conf)
96 call qg_fields_registry%get(c_key_traj,traj)
97 call qg_fields_registry%get(c_key_incr,fld)
98 
99 ! Call Fortran
100 call qg_model_propagate_tl(conf,traj,fld)
101 
102 end subroutine qg_model_propagate_tl_c
103 ! ------------------------------------------------------------------------------
104 !> Perform a timestep of the QG model - adjoint
105 subroutine qg_model_propagate_ad_c(c_key_conf,c_key_traj,c_key_incr) bind(c,name='qg_model_propagate_ad_f90')
106 
107 implicit none
108 
109 ! Passed variables
110 integer(c_int),intent(in) :: c_key_conf !< Model configuration
111 integer(c_int),intent(in) :: c_key_traj !< Trajectory fields
112 integer(c_int),intent(in) :: c_key_incr !< Increment fields
113 
114 ! Local variables
115 type(qg_model_config),pointer :: conf
116 type(qg_fields),pointer :: fld
117 type(qg_fields),pointer :: traj
118 
119 ! Interface
120 call qg_model_registry%get(c_key_conf,conf)
121 call qg_fields_registry%get(c_key_traj,traj)
122 call qg_fields_registry%get(c_key_incr,fld)
123 
124 ! Call Fortran
125 call qg_model_propagate_ad(conf,traj,fld)
126 
127 end subroutine qg_model_propagate_ad_c
128 ! ------------------------------------------------------------------------------
129 end module qg_model_interface
type(registry_t), public qg_fields_registry
Linked list interface - defines registry_t type.
subroutine qg_model_propagate_ad_c(c_key_conf, c_key_traj, c_key_incr)
Perform a timestep of the QG model - adjoint.
subroutine qg_model_propagate_tl_c(c_key_conf, c_key_traj, c_key_incr)
Perform a timestep of the QG model - tangent linear.
subroutine qg_model_propagate_c(c_key_conf, c_key_state)
Perform a timestep of the QG model.
subroutine qg_delete_c(c_key_conf)
Delete the QG model.
subroutine qg_model_setup_c(c_key_self, c_conf)
Setup model.
subroutine, public qg_model_propagate(conf, fld)
Perform a timestep of the QG model.
type(registry_t), public qg_model_registry
Linked list interface - defines registry_t type.
subroutine, public qg_model_propagate_tl(conf, traj, fld)
Perform a timestep of the QG model - tangent linear.
subroutine, public qg_model_setup(self, f_conf)
Linked list implementation.
subroutine, public qg_model_propagate_ad(conf, traj, fld)
Perform a timestep of the QG model - adjoint.