MPAS-JEDI
mpas_covariance_interface.F90
Go to the documentation of this file.
1 ! (C) Copyright 2017 UCAR
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 
6 ! ------------------------------------------------------------------------------
7 
8 subroutine c_mpas_b_setup(c_key_self, c_conf, c_key_geom) &
9  & bind(c,name='mpas_b_setup_f90')
10 
11 use fckit_configuration_module, only: fckit_configuration
12 use iso_c_binding
14 use mpas_geom_mod
15 
16 implicit none
17 integer(c_int), intent(inout) :: c_key_self !< Background error covariance structure
18 type(c_ptr), value, intent(in) :: c_conf !< Configuration
19 integer(c_int), intent(in) :: c_key_geom !< Geometry
20 type(mpas_covar), pointer :: self
21 type(mpas_geom), pointer :: geom
22 type(fckit_configuration) :: f_conf
23 
24 call mpas_geom_registry%get(c_key_geom, geom)
25 call mpas_covar_registry%init()
26 call mpas_covar_registry%add(c_key_self)
27 call mpas_covar_registry%get(c_key_self, self)
28 
29 f_conf = fckit_configuration(c_conf)
30 call mpas_covar_setup(self, geom, f_conf)
31 
32 end subroutine c_mpas_b_setup
33 
34 ! ------------------------------------------------------------------------------
35 
36 subroutine c_mpas_b_delete(c_key_self) bind (c,name='mpas_b_delete_f90')
37 
38 use iso_c_binding
40 
41 implicit none
42 integer(c_int), intent(inout) :: c_key_self !< Background error covariance structure
43 type(mpas_covar), pointer :: self
44 
45 call mpas_covar_registry%get(c_key_self,self)
46 call mpas_covar_delete(self)
47 call mpas_covar_registry%remove(c_key_self)
48 
49 end subroutine c_mpas_b_delete
50 
51 ! ------------------------------------------------------------------------------
52 
53 !> Multiply streamfunction by inverse of covariance
54 
55 subroutine c_mpas_b_inv_mult(c_key_self, c_key_in, c_key_out) bind(c,name='mpas_b_invmult_f90')
56 
57 use iso_c_binding
60 use kinds
61 use mpas_framework !BJJ
62 
63 implicit none
64 integer(c_int), intent(in) :: c_key_self
65 integer(c_int), intent(in) :: c_key_in
66 integer(c_int), intent(in) :: c_key_out
67 type(mpas_covar), pointer :: self
68 type(mpas_fields), pointer :: xin
69 type(mpas_fields), pointer :: xout
70 
71 call mpas_covar_registry%get(c_key_self,self)
72 call mpas_fields_registry%get(c_key_in,xin)
73 call mpas_fields_registry%get(c_key_out,xout)
74 !TODO BJJ
75 !Implement this
76 !xout = xin
77 !xout => xin
78  xout % nf = xin % nf
79  call copy_pool(xin % subFields, xout % subFields)
80 !TODO BJJ
81 !Implement this
82 !xout = xin
83 !xout => xin
84  xout % nf = xin % nf
85  call copy_pool(xin % subFields, xout % subFields)
86 !call mpas_covar_sqrt_inv_mult(self%nx,self%ny,xctl,xin,self)
87 !call zeros(xout)
88 !call mpas_covar_sqrt_inv_mult_ad(self%nx,self%ny,xctl,xout,self)
89 
90 end subroutine c_mpas_b_inv_mult
91 
92 ! ------------------------------------------------------------------------------
93 
94 !> Multiply streamfunction by covariance
95 
96 subroutine c_mpas_b_mult(c_key_self, c_key_in, c_key_out) bind(c,name='mpas_b_mult_f90')
97 
98 use iso_c_binding
99 use fckit_log_module, only: fckit_log
100 
101 !oops
102 use kinds
103 
104 !ufo
105 use ufo_vars_mod, only: ufo_vars_getindex
106 
107 !MPAS-Model
108 use mpas_framework !BJJ
109 
110 !mpas-jedi
112 use mpas_fields_mod
113 
114 implicit none
115 integer(c_int), intent(in) :: c_key_self
116 integer(c_int), intent(in) :: c_key_in
117 integer(c_int), intent(in) :: c_key_out
118 type(mpas_covar), pointer :: self
119 type(mpas_fields), pointer :: xin
120 type(mpas_fields), pointer :: xout
121 type (mpas_pool_iterator_type) :: poolItr
122 type (field1DReal), pointer :: field1d_src
123 type (field2DReal), pointer :: field2d_src
124 
125 integer :: ivar
126 
127  call mpas_covar_registry%get(c_key_self,self)
128  call mpas_fields_registry%get(c_key_in,xin)
129  call mpas_fields_registry%get(c_key_out,xout)
130 
131  call fckit_log%info ('---- inside sub c_mpas_b_mult ----')
132 !TODO BJJ
133 !Implement this
134 !xout = xin
135 !xout => xin
136  xout % nf = xin % nf
137  call copy_pool(xin % subFields, xout % subFields)
138 
139  call mpas_pool_begin_iteration(xout % subFields)
140  do while ( mpas_pool_get_next_member(xout % subFields, poolitr) )
141  if (poolitr % memberType == mpas_pool_field .AND. poolitr % dataType == mpas_pool_real) then
142  ivar = ufo_vars_getindex(self % var_scaling_variables,trim(poolitr % memberName))
143  if ( ivar < 1 ) cycle
144  if (poolitr % nDims == 1) then
145  call mpas_pool_get_field(xout % subFields, poolitr % memberName, field1d_src)
146  field1d_src % array = field1d_src % array * self % var_scaling_magnitudes(ivar) !variance
147  else if (poolitr % nDims == 2) then
148  call mpas_pool_get_field(xout % subFields, poolitr % memberName, field2d_src)
149  field2d_src % array = field2d_src % array * self % var_scaling_magnitudes(ivar) !variance
150  end if
151  end if
152  end do
153 
154 !call mpas_covar_sqrt_mult_ad(self%nx,self%ny,xin,xctl,self)
155 !call zeros(xout)
156 !call mpas_covar_sqrt_mult(self%nx,self%ny,xout,xctl,self)
157 
158 end subroutine c_mpas_b_mult
159 
160 ! ------------------------------------------------------------------------------
161 
162 !> Generate randomized increment
163 
164 subroutine c_mpas_b_randomize(c_key_self, c_key_out) bind(c,name='mpas_b_randomize_f90')
165 
166 use iso_c_binding
168 use mpas_fields_mod
169 use kinds
170 
171 implicit none
172 integer(c_int), intent(in) :: c_key_self
173 integer(c_int), intent(in) :: c_key_out
174 type(mpas_covar), pointer :: self
175 type(mpas_fields), pointer :: xout
176 
177 call mpas_covar_registry%get(c_key_self,self)
178 call mpas_fields_registry%get(c_key_out,xout)
179 
180 call xout%random()
181 
182 end subroutine c_mpas_b_randomize
183 
184 ! ------------------------------------------------------------------------------
subroutine c_mpas_b_inv_mult(c_key_self, c_key_in, c_key_out)
Multiply streamfunction by inverse of covariance.
subroutine c_mpas_b_delete(c_key_self)
subroutine c_mpas_b_mult(c_key_self, c_key_in, c_key_out)
Multiply streamfunction by covariance.
subroutine c_mpas_b_setup(c_key_self, c_conf, c_key_geom)
subroutine c_mpas_b_randomize(c_key_self, c_key_out)
Generate randomized increment.
subroutine mpas_covar_delete(self)
type(registry_t) mpas_covar_registry
Linked list interface - defines registry_t type.
subroutine mpas_covar_setup(self, geom, f_conf)
Linked list implementation.
type(registry_t), public mpas_fields_registry
Linked list interface - defines registry_t type.
subroutine, public copy_pool(pool_src, pool)
type(registry_t), public mpas_geom_registry
Linked list interface - defines registry_t type.
Fortran derived type to hold configuration data for the background/model covariance.
Fortran derived type to hold MPAS field.
Fortran derived type to hold geometry definition.