OOPS
QgFortran.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
3  * (C) Copyright 2017-2019 UCAR.
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  * In applying this licence, ECMWF does not waive the privileges and immunities
8  * granted to it by virtue of its status as an intergovernmental organisation nor
9  * does it submit to any jurisdiction.
10  */
11 
12 #ifndef QG_MODEL_QGFORTRAN_H_
13 #define QG_MODEL_QGFORTRAN_H_
14 
15 #include <memory>
16 #include <string>
17 #include <vector>
18 
19 #include "atlas/field.h"
20 #include "atlas/functionspace.h"
21 
22 // Forward declarations
23 namespace eckit {
24  class Configuration;
25 }
26 
27 namespace oops {
28  class Variables;
29 }
30 
31 namespace util {
32  class DateTime;
33  class Duration;
34 }
35 
36 namespace qg {
37  class LocationsQG;
38  class ObsSpaceQG;
39 
40 // Geometry key type
41 typedef int F90geom;
42 // Geometry iterator key type
43 typedef int F90iter;
44 // Model key type
45 typedef int F90model;
46 // Gom key type
47 typedef int F90gom;
48 // Fields key type
49 typedef int F90flds;
50 // Error covariance key type
51 typedef int F90error_covariance;
52 // Observation vector key type
53 typedef int F90ovec;
54 // Observation data base type
55 typedef int F90odb;
56 // Localization matrix
57 typedef int F90lclz;
58 
59 /// Interface to Fortran QG model
60 /*!
61  * The core of the QG model is coded in Fortran.
62  * Here we define the interfaces to the Fortran code.
63  */
64 
65 extern "C" {
66 // -----------------------------------------------------------------------------
67 // Change of variable
68 // -----------------------------------------------------------------------------
69  void qg_change_var_f90(const F90flds &, const F90flds &);
70  void qg_change_var_tl_f90(const F90flds &, const F90flds &);
71  void qg_change_var_ad_f90(const F90flds &, const F90flds &);
72 
73 // -----------------------------------------------------------------------------
74 // Error covariance
75 // -----------------------------------------------------------------------------
76  void qg_error_covariance_setup_f90(F90error_covariance &, const eckit::Configuration &,
77  const F90geom &);
81  const F90flds &);
83 
84 // -----------------------------------------------------------------------------
85 // Fields
86 // -----------------------------------------------------------------------------
87  void qg_fields_create_f90(F90flds &, const F90geom &, const oops::Variables &, const bool &);
90  void qg_fields_zero_f90(const F90flds &);
91  void qg_fields_ones_f90(const F90flds &);
92  void qg_fields_dirac_f90(const F90flds &, const eckit::Configuration &);
94  void qg_fields_copy_f90(const F90flds &, const F90flds &);
95  void qg_fields_self_add_f90(const F90flds &, const F90flds &);
96  void qg_fields_self_sub_f90(const F90flds &, const F90flds &);
97  void qg_fields_self_mul_f90(const F90flds &, const double &);
98  void qg_fields_axpy_f90(const F90flds &, const double &, const F90flds &);
99  void qg_fields_self_schur_f90(const F90flds &, const F90flds &);
100  void qg_fields_dot_prod_f90(const F90flds &, const F90flds &, double &);
101  void qg_fields_add_incr_f90(const F90flds &, const F90flds &);
102  void qg_fields_diff_incr_f90(const F90flds &, const F90flds &, const F90flds &);
104  void qg_fields_read_file_f90(const F90flds &, const eckit::Configuration &,
105  util::DateTime &);
106  void qg_fields_write_file_f90(const F90flds &, const eckit::Configuration &,
107  const util::DateTime &);
108  void qg_fields_analytic_init_f90(const F90flds &, const eckit::Configuration &,
109  util::DateTime &);
110  void qg_fields_gpnorm_f90(const F90flds &, int[], double[], double[], double[]);
111  void qg_fields_rms_f90(const F90flds &, double &);
112  void qg_fields_sizes_f90(const F90flds &, int &, int &, int &);
113  void qg_fields_lbc_f90(const F90flds &, int &);
115  atlas::field::FieldSetImpl *);
117  atlas::field::FieldSetImpl *);
119  atlas::field::FieldSetImpl *);
120  void qg_fields_getpoint_f90(const F90flds&, const F90iter&, const int &, double &);
121  void qg_fields_setpoint_f90(const F90flds&, const F90iter&, const int &, const double &);
122  void qg_fields_serialize_f90(const F90flds &, const int &, double[]);
123  void qg_fields_deserialize_f90(const F90flds &, const int &, const double[], int &);
124 
125 // -----------------------------------------------------------------------------
126 // GetValues
127 // -----------------------------------------------------------------------------
129  const util::DateTime &,
130  const util::DateTime &, const F90gom &);
132  const util::DateTime &,
133  const util::DateTime &, const F90gom &);
135  const util::DateTime &,
136  const util::DateTime &, const F90gom &);
137 
138 // -----------------------------------------------------------------------------
139 // Geometry
140 // -----------------------------------------------------------------------------
141  void qg_geom_setup_f90(F90geom &, const eckit::Configuration &);
142  void qg_geom_set_atlas_lonlat_f90(const F90geom &, atlas::field::FieldSetImpl *);
144  atlas::functionspace::FunctionSpaceImpl *);
145  void qg_geom_fill_atlas_fieldset_f90(const F90geom &, atlas::field::FieldSetImpl *);
147  void qg_geom_info_f90(const F90geom &, int &, int &, int &, double &, double &);
149  void qg_geom_dimensions_f90(double &, double &, double &, double &, double &);
150 
151 // -----------------------------------------------------------------------------
152 // Geometry iterator
153 // -----------------------------------------------------------------------------
154  void qg_geom_iter_setup_f90(F90iter &, const F90geom &, const int &);
157  void qg_geom_iter_equals_f90(const F90iter &, const F90iter&, int &);
158  void qg_geom_iter_current_f90(const F90iter &, double &, double &);
160 
161 // -----------------------------------------------------------------------------
162 // Local Values (GOM)
163 // -----------------------------------------------------------------------------
167  void qg_gom_copy_f90(const F90gom &, const F90gom &);
168  void qg_gom_zero_f90(const F90gom &);
169  void qg_gom_abs_f90(const F90gom &);
170  void qg_gom_random_f90(const F90gom &);
171  void qg_gom_mult_f90(const F90gom &, const double &);
172  void qg_gom_add_f90(const F90gom &, const F90gom &);
173  void qg_gom_diff_f90(const F90gom &, const F90gom &);
174  void qg_gom_schurmult_f90(const F90gom &, const F90gom &);
175  void qg_gom_divide_f90(const F90gom &, const F90gom &);
176  void qg_gom_rms_f90(const F90gom &, double &);
177  void qg_gom_dotprod_f90(const F90gom &, const F90gom &, double &);
178  void qg_gom_stats_f90(const F90gom &, int &, double &, double &, double &);
179  void qg_gom_maxloc_f90(const F90gom &, double &, int &, const oops::Variables &);
180  void qg_gom_read_file_f90(const F90gom &, const eckit::Configuration &);
181  void qg_gom_write_file_f90(const F90gom &, const eckit::Configuration &);
183  const eckit::Configuration &);
184 
185 // -----------------------------------------------------------------------------
186 // Model
187 // -----------------------------------------------------------------------------
188  void qg_model_setup_f90(F90model &, const eckit::Configuration &);
190  void qg_model_propagate_f90(const F90model &, const F90flds &);
191  void qg_model_propagate_tl_f90(const F90model &, const F90flds &, const F90flds &);
192  void qg_model_propagate_ad_f90(const F90model &, const F90flds &, const F90flds &);
193 
194 // -----------------------------------------------------------------------------
195 // Observation Handler
196 // -----------------------------------------------------------------------------
197  void qg_obsdb_setup_f90(F90odb &, const eckit::Configuration &,
198  const util::DateTime &, const util::DateTime &);
200  void qg_obsdb_get_f90(const F90odb &, const int &, const char *,
201  const int &, const char *, const F90ovec &);
202  void qg_obsdb_put_f90(const F90odb &, const int &, const char *,
203  const int &, const char *, const F90ovec &);
204  void qg_obsdb_locations_f90(const F90odb &, const int &, const char *,
205  atlas::field::FieldSetImpl *, std::vector<util::DateTime> &);
206  void qg_obsdb_generate_f90(const F90odb &, const int &, const char *,
207  const eckit::Configuration &, const util::DateTime &,
208  const util::Duration &, const int &, int &);
209  void qg_obsdb_nobs_f90(const F90odb &, const int &, const char *, int &);
210 
211 // -----------------------------------------------------------------------------
212 // Observation vector
213 // -----------------------------------------------------------------------------
214  void qg_obsvec_setup_f90(F90ovec &, const int &, const int &);
217  void qg_obsvec_copy_f90(const F90ovec &, const F90ovec &);
219  void qg_obsvec_settomissing_ith_f90(const F90ovec &, const int &);
221  /// set ObsVector (with key \p obsvector_key) values to missing values where
222  /// mask ObsVector (with key \p mask_key) values are set to 1
223  void qg_obsvec_mask_f90(const F90ovec & obsvector_key, const F90ovec & mask_key);
224  /// set ObsVector (with key \p obsvector_key) values to missing values where
225  /// mask ObsVector (with key \p mask_key) values are set to missing value
226  void qg_obsvec_mask_with_missing_f90(const F90ovec & obsvector_key,
227  const F90ovec & mask_key);
228  void qg_obsvec_mul_scal_f90(const F90ovec &, const double &);
229  void qg_obsvec_add_f90(const F90ovec &, const F90ovec &);
230  void qg_obsvec_sub_f90(const F90ovec &, const F90ovec &);
231  void qg_obsvec_mul_f90(const F90ovec &, const F90ovec &);
232  void qg_obsvec_div_f90(const F90ovec &, const F90ovec &);
233  void qg_obsvec_axpy_f90(const F90ovec &, const double &, const F90ovec &);
235  void qg_obsvec_random_f90(const ObsSpaceQG &, const F90ovec &);
236  void qg_obsvec_dotprod_f90(const F90ovec &, const F90ovec &, double &);
237  void qg_obsvec_stats_f90(const F90ovec &, double &, double &, double &);
238  void qg_obsvec_nobs_f90(const F90ovec &, int &);
239  void qg_obsvec_size_f90(const F90ovec &, int &);
240  /// fill \p data (size \p nobs) with all non-masked out (non-missing) values
241  void qg_obsvec_get_withmask_f90(const F90ovec &, const F90ovec & mask_key,
242  double * data, const int & nobs);
243  void qg_obsvec_nobs_withmask_f90(const F90ovec &, const F90ovec & mask_key, int &);
244 
245 
246 // -----------------------------------------------------------------------------
247 // Streamfunction observations
248 // -----------------------------------------------------------------------------
249  void qg_stream_equiv_f90(const F90gom &, const F90ovec &, const double &);
250  void qg_stream_equiv_tl_f90(const F90gom &, const F90ovec &, const double &);
251  void qg_stream_equiv_ad_f90(const F90gom &, const F90ovec &, double &);
252 
253 // -----------------------------------------------------------------------------
254 // Wind observations
255 // -----------------------------------------------------------------------------
256  void qg_wind_equiv_f90(const F90gom &, const F90ovec &, const double &);
257  void qg_wind_equiv_tl_f90(const F90gom &, const F90ovec &, const double &);
258  void qg_wind_equiv_ad_f90(const F90gom &, const F90ovec &, double &);
259 
260 // -----------------------------------------------------------------------------
261 // Wind speed observations
262 // -----------------------------------------------------------------------------
263  void qg_wspeed_equiv_f90(const F90gom &, const F90ovec &, const double &);
264  void qg_wspeed_equiv_tl_f90(const F90gom &, const F90ovec &, const F90gom &, const double &);
265  void qg_wspeed_equiv_ad_f90(const F90gom &, const F90ovec &, const F90gom &, double &);
266  void qg_wspeed_gettraj_f90(const int &, const oops::Variables &, const F90gom &);
267  void qg_wspeed_settraj_f90(const F90gom &, const F90gom &);
268 
269 }
270 
271 } // namespace qg
272 #endif // QG_MODEL_QGFORTRAN_H_
LocationsQG class to handle locations for QG model.
Definition: LocationsQG.h:36
ObsSpace for QG model.
Definition: ObsSpaceQG.h:81
Definition: FieldL95.h:22
The namespace for the main oops code.
The namespace for the qg model.
void qg_gom_write_file_f90(const F90gom &, const eckit::Configuration &)
void qg_obsvec_settomissing_ith_f90(const F90ovec &, const int &)
void qg_fields_create_f90(F90flds &, const F90geom &, const oops::Variables &, const bool &)
void qg_gom_abs_f90(const F90gom &)
void qg_fields_self_add_f90(const F90flds &, const F90flds &)
void qg_obsvec_dotprod_f90(const F90ovec &, const F90ovec &, double &)
void qg_fields_diff_incr_f90(const F90flds &, const F90flds &, const F90flds &)
void qg_model_setup_f90(F90model &, const eckit::Configuration &)
void qg_fields_self_sub_f90(const F90flds &, const F90flds &)
void qg_geom_setup_f90(F90geom &, const eckit::Configuration &)
void qg_gom_analytic_init_f90(const F90gom &, const LocationsQG &, const eckit::Configuration &)
void qg_obsvec_get_withmask_f90(const F90ovec &, const F90ovec &mask_key, double *data, const int &nobs)
fill data (size nobs) with all non-masked out (non-missing) values
void qg_model_delete_f90(F90model &)
void qg_geom_set_atlas_functionspace_pointer_f90(const F90geom &, atlas::functionspace::FunctionSpaceImpl *)
void qg_gom_setup_f90(F90gom &, const LocationsQG &, const oops::Variables &)
void qg_error_covariance_setup_f90(F90error_covariance &, const eckit::Configuration &, const F90geom &)
void qg_wind_equiv_ad_f90(const F90gom &, const F90ovec &, double &)
void qg_obsdb_put_f90(const F90odb &, const int &, const char *, const int &, const char *, const F90ovec &)
void qg_error_covariance_randomize_f90(const F90error_covariance &, const F90flds &)
void qg_gom_zero_f90(const F90gom &)
void qg_geom_dimensions_f90(double &, double &, double &, double &, double &)
void qg_getvalues_interp_tl_f90(const LocationsQG &, const F90flds &, const util::DateTime &, const util::DateTime &, const F90gom &)
void qg_fields_set_atlas_f90(const F90flds &, const oops::Variables &, atlas::field::FieldSetImpl *)
int F90odb
Definition: QgFortran.h:55
void qg_fields_axpy_f90(const F90flds &, const double &, const F90flds &)
void qg_geom_iter_setup_f90(F90iter &, const F90geom &, const int &)
void qg_change_var_ad_f90(const F90flds &, const F90flds &)
void qg_fields_random_f90(const F90flds &, const oops::Variables &)
void qg_obsvec_mask_with_missing_f90(const F90ovec &obsvector_key, const F90ovec &mask_key)
int F90flds
Definition: QgFortran.h:49
void qg_gom_read_file_f90(const F90gom &, const eckit::Configuration &)
void qg_geom_iter_current_f90(const F90iter &, double &, double &)
void qg_geom_fill_atlas_fieldset_f90(const F90geom &, atlas::field::FieldSetImpl *)
int F90model
Definition: QgFortran.h:45
void qg_obsvec_ones_f90(const F90ovec &)
void qg_obsvec_nobs_withmask_f90(const F90ovec &, const F90ovec &mask_key, int &)
void qg_gom_create_f90(F90gom &, const oops::Variables &)
void qg_obsvec_mul_f90(const F90ovec &, const F90ovec &)
void qg_obsvec_zero_f90(const F90ovec &)
void qg_fields_getpoint_f90(const F90flds &, const F90iter &, const int &, double &)
void qg_gom_copy_f90(const F90gom &, const F90gom &)
void qg_obsvec_setup_f90(F90ovec &, const int &, const int &)
void qg_fields_rms_f90(const F90flds &, double &)
void qg_obsvec_stats_f90(const F90ovec &, double &, double &, double &)
void qg_fields_add_incr_f90(const F90flds &, const F90flds &)
int F90geom
Definition: QgFortran.h:38
void qg_change_var_tl_f90(const F90flds &, const F90flds &)
int F90error_covariance
Definition: QgFortran.h:51
void qg_wspeed_gettraj_f90(const int &, const oops::Variables &, const F90gom &)
void qg_geom_iter_clone_f90(F90iter &, const F90iter &)
void qg_obsvec_mul_scal_f90(const F90ovec &, const double &)
void qg_fields_change_resol_f90(const F90flds &, const F90flds &)
void qg_fields_write_file_f90(const F90flds &, const eckit::Configuration &, const util::DateTime &)
void qg_geom_delete_f90(F90geom &)
void qg_obsvec_invert_f90(const F90ovec &)
void qg_gom_dotprod_f90(const F90gom &, const F90gom &, double &)
void qg_fields_ones_f90(const F90flds &)
void qg_fields_to_atlas_f90(const F90flds &, const oops::Variables &, atlas::field::FieldSetImpl *)
void qg_wind_equiv_tl_f90(const F90gom &, const F90ovec &, const double &)
void qg_fields_delete_f90(F90flds &)
void qg_fields_lbc_f90(const F90flds &, int &)
int F90gom
Definition: QgFortran.h:47
void qg_obsvec_size_f90(const F90ovec &, int &)
void qg_stream_equiv_ad_f90(const F90gom &, const F90ovec &, double &)
void qg_wspeed_equiv_ad_f90(const F90gom &, const F90ovec &, const F90gom &, double &)
void qg_fields_create_from_other_f90(F90flds &, const F90flds &, const F90geom &)
void qg_gom_diff_f90(const F90gom &, const F90gom &)
void qg_obsdb_get_f90(const F90odb &, const int &, const char *, const int &, const char *, const F90ovec &)
void qg_fields_analytic_init_f90(const F90flds &, const eckit::Configuration &, util::DateTime &)
void qg_obsdb_delete_f90(F90odb &)
void qg_obsvec_mask_f90(const F90ovec &obsvector_key, const F90ovec &mask_key)
void qg_wspeed_equiv_tl_f90(const F90gom &, const F90ovec &, const F90gom &, const double &)
void qg_obsvec_sub_f90(const F90ovec &, const F90ovec &)
void qg_geom_iter_delete_f90(F90iter &)
void qg_fields_copy_f90(const F90flds &, const F90flds &)
void qg_wspeed_settraj_f90(const F90gom &, const F90gom &)
void qg_change_var_f90(const F90flds &, const F90flds &)
Interface to Fortran QG model.
void qg_fields_from_atlas_f90(const F90flds &, const oops::Variables &, atlas::field::FieldSetImpl *)
void qg_geom_iter_next_f90(const F90iter &)
void qg_fields_zero_f90(const F90flds &)
void qg_wind_equiv_f90(const F90gom &, const F90ovec &, const double &)
void qg_stream_equiv_tl_f90(const F90gom &, const F90ovec &, const double &)
void qg_gom_random_f90(const F90gom &)
void qg_gom_stats_f90(const F90gom &, int &, double &, double &, double &)
void qg_obsvec_div_f90(const F90ovec &, const F90ovec &)
void qg_geom_iter_equals_f90(const F90iter &, const F90iter &, int &)
void qg_fields_self_schur_f90(const F90flds &, const F90flds &)
void qg_fields_sizes_f90(const F90flds &, int &, int &, int &)
void qg_obsdb_setup_f90(F90odb &, const eckit::Configuration &, const util::DateTime &, const util::DateTime &)
void qg_getvalues_interp_f90(const LocationsQG &, const F90flds &, const util::DateTime &, const util::DateTime &, const F90gom &)
void qg_gom_add_f90(const F90gom &, const F90gom &)
int F90iter
Definition: QgFortran.h:43
void qg_gom_schurmult_f90(const F90gom &, const F90gom &)
void qg_gom_mult_f90(const F90gom &, const double &)
void qg_gom_rms_f90(const F90gom &, double &)
void qg_obsvec_add_f90(const F90ovec &, const F90ovec &)
void qg_fields_dirac_f90(const F90flds &, const eckit::Configuration &)
void qg_fields_self_mul_f90(const F90flds &, const double &)
void qg_obsvec_delete_f90(F90ovec &)
void qg_geom_info_f90(const F90geom &, int &, int &, int &, double &, double &)
void qg_obsvec_copy_f90(const F90ovec &, const F90ovec &)
void qg_gom_divide_f90(const F90gom &, const F90gom &)
void qg_obsvec_axpy_f90(const F90ovec &, const double &, const F90ovec &)
void qg_stream_equiv_f90(const F90gom &, const F90ovec &, const double &)
void qg_fields_setpoint_f90(const F90flds &, const F90iter &, const int &, const double &)
void qg_model_propagate_ad_f90(const F90model &, const F90flds &, const F90flds &)
void qg_obsvec_clone_f90(F90ovec &, const F90ovec &)
void qg_fields_read_file_f90(const F90flds &, const eckit::Configuration &, util::DateTime &)
void qg_fields_gpnorm_f90(const F90flds &, int[], double[], double[], double[])
void qg_fields_serialize_f90(const F90flds &, const int &, double[])
void qg_error_covariance_mult_f90(const F90error_covariance &, const F90flds &, const F90flds &)
void qg_error_covariance_delete_f90(F90error_covariance &)
int F90lclz
Definition: QgFortran.h:57
void qg_gom_delete_f90(F90gom &)
void qg_getvalues_interp_ad_f90(const LocationsQG &, const F90flds &, const util::DateTime &, const util::DateTime &, const F90gom &)
void qg_obsdb_generate_f90(const F90odb &, const int &, const char *, const eckit::Configuration &, const util::DateTime &, const util::Duration &, const int &, int &)
void qg_obsdb_nobs_f90(const F90odb &, const int &, const char *, int &)
void qg_gom_maxloc_f90(const F90gom &, double &, int &, const oops::Variables &)
void qg_obsvec_nobs_f90(const F90ovec &, int &)
void qg_obsdb_locations_f90(const F90odb &, const int &, const char *, atlas::field::FieldSetImpl *, std::vector< util::DateTime > &)
void qg_geom_set_atlas_lonlat_f90(const F90geom &, atlas::field::FieldSetImpl *)
void qg_model_propagate_f90(const F90model &, const F90flds &)
void qg_model_propagate_tl_f90(const F90model &, const F90flds &, const F90flds &)
void qg_geom_clone_f90(F90geom &, const F90geom &)
int F90ovec
Definition: QgFortran.h:53
void qg_fields_dot_prod_f90(const F90flds &, const F90flds &, double &)
void qg_error_covariance_inv_mult_f90(const F90error_covariance &, const F90flds &, const F90flds &)
void qg_wspeed_equiv_f90(const F90gom &, const F90ovec &, const double &)
void qg_fields_deserialize_f90(const F90flds &, const int &, const double[], int &)
void qg_obsvec_random_f90(const ObsSpaceQG &, const F90ovec &)
Definition: TLML95.h:34