OOPS
|
Data Types | |
interface | qg_obsvec_random_i |
type | qg_obsvec |
Functions/Subroutines | |
subroutine, public | qg_obsvec_setup (self, nlev, nobs) |
Linked list implementation. More... | |
subroutine, public | qg_obsvec_clone (self, other) |
Clone observation vector. More... | |
subroutine, public | qg_obsvec_delete (self) |
Delete observation vector. More... | |
subroutine, public | qg_obsvec_copy (self, other) |
Copy observation vector. More... | |
subroutine, public | qg_obsvec_zero (self) |
Set observation vector to zero. More... | |
subroutine, public | qg_obsvec_settomissing_ith (self, i) |
Set i-th value of observation vector to missing value. More... | |
subroutine, public | qg_obsvec_ones (self) |
Set observation vector to ones. More... | |
subroutine, public | qg_obsvec_mask (self, mask) |
Mask observation vector (set values to missing values where mask == 1) More... | |
subroutine, public | qg_obsvec_mask_with_missing (self, mask) |
Mask observation vector (set values to missing values where mask == missing value) More... | |
subroutine, public | qg_obsvec_mul_scal (self, zz) |
Multiply observation vector with a scalar. More... | |
subroutine, public | qg_obsvec_add (self, other) |
Add observation vector. More... | |
subroutine, public | qg_obsvec_sub (self, other) |
Subtract observation vector. More... | |
subroutine, public | qg_obsvec_mul (self, other) |
Multiply observation vector. More... | |
subroutine, public | qg_obsvec_div (self, other) |
Divide observation vector. More... | |
subroutine, public | qg_obsvec_axpy (self, zz, other) |
Apply axpy on observation vector. More... | |
subroutine, public | qg_obsvec_invert (self) |
Invert observation vector. More... | |
subroutine, public | qg_obsvec_random (c_odb, self) |
Generate random observation vector. More... | |
subroutine, public | qg_obsvec_dotprod (obsvec1, obsvec2, zz) |
Compute dot product between observation vectors. More... | |
subroutine, public | qg_obsvec_stats (self, zmin, zmax, zavg) |
Compute observation vector statistics. More... | |
subroutine, public | qg_obsvec_size (self, kobs) |
Get observation vector size. More... | |
subroutine, public | qg_obsvec_nobs (self, kobs) |
Get observation vector size. More... | |
subroutine, public | qg_obsvec_nobs_withmask (self, obsmask, kobs) |
Get observation vector size (only non-masked observations) More... | |
subroutine, public | qg_obsvec_get_withmask (self, obsmask, vals, nvals) |
Get non-missing values from observation vector into vals array. More... | |
Variables | |
type(registry_t), public | qg_obsvec_registry |
Linked list interface - defines registry_t type. More... | |
subroutine, public qg_obsvec_mod::qg_obsvec_add | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | other | ||
) |
Add observation vector.
[in,out] | self | Observation vector |
[in] | other | Other observation vector |
Definition at line 228 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_axpy | ( | type(qg_obsvec), intent(inout) | self, |
real(kind_real), intent(in) | zz, | ||
type(qg_obsvec), intent(in) | other | ||
) |
Apply axpy on observation vector.
[in,out] | self | Observation vector |
[in] | zz | Multiplier |
[in] | other | Other observation vector |
Definition at line 308 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_clone | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | other | ||
) |
Clone observation vector.
[in,out] | self | Observation vector |
[in] | other | Other observation vector |
Definition at line 87 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_copy | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | other | ||
) |
Copy observation vector.
[in,out] | self | Observation vector |
[in] | other | Other observation vector |
Definition at line 119 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_delete | ( | type(qg_obsvec), intent(inout) | self | ) |
Delete observation vector.
[in,out] | self | Observation vector |
Definition at line 106 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_div | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | other | ||
) |
Divide observation vector.
[in,out] | self | Observation vector |
[in] | other | Other observation vector |
Definition at line 288 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_dotprod | ( | type(qg_obsvec), intent(in) | obsvec1, |
type(qg_obsvec), intent(in) | obsvec2, | ||
real(kind_real), intent(inout) | zz | ||
) |
Compute dot product between observation vectors.
[in] | obsvec1 | Observation vector 1 |
[in] | obsvec2 | Observation vector 2 |
[in,out] | zz | Dot product |
Definition at line 362 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_get_withmask | ( | type(qg_obsvec), intent(in) | self, |
type(qg_obsvec), intent(in) | obsmask, | ||
real(kind_real), dimension(nvals), intent(out) | vals, | ||
integer, intent(in) | nvals | ||
) |
Get non-missing values from observation vector into vals array.
[in] | self | Observation vector |
[in] | obsmask | mask |
[in] | nvals | Number of non-missing values |
[out] | vals | returned value |
Definition at line 461 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_invert | ( | type(qg_obsvec), intent(inout) | self | ) |
Invert observation vector.
[in,out] | self | Observation vector |
Definition at line 329 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_mask | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | mask | ||
) |
Mask observation vector (set values to missing values where mask == 1)
[in,out] | self | Observation vector |
Definition at line 186 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_mask_with_missing | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | mask | ||
) |
Mask observation vector (set values to missing values where mask == missing value)
[in,out] | self | Observation vector |
Definition at line 200 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_mul | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | other | ||
) |
Multiply observation vector.
[in,out] | self | Observation vector |
[in] | other | Other observation vector |
Definition at line 268 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_mul_scal | ( | type(qg_obsvec), intent(inout) | self, |
real(kind_real), intent(in) | zz | ||
) |
Multiply observation vector with a scalar.
[in,out] | self | Observation vector |
[in] | zz | Multiplier |
Definition at line 214 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_nobs | ( | type(qg_obsvec), intent(in) | self, |
integer, intent(inout) | kobs | ||
) |
Get observation vector size.
[in] | self | Observation vector |
[in,out] | kobs | Observation vector size |
Definition at line 429 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_nobs_withmask | ( | type(qg_obsvec), intent(in) | self, |
type(qg_obsvec), intent(in) | obsmask, | ||
integer, intent(inout) | kobs | ||
) |
Get observation vector size (only non-masked observations)
[in] | self | Observation vector |
[in] | obsmask | mask |
[in,out] | kobs | Observation vector size |
Definition at line 444 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_ones | ( | type(qg_obsvec), intent(inout) | self | ) |
Set observation vector to ones.
[in,out] | self | Observation vector |
Definition at line 173 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_random | ( | type(c_ptr), intent(in) | c_odb, |
type(qg_obsvec), intent(inout) | self | ||
) |
Generate random observation vector.
[in] | c_odb | Observation data base |
[in,out] | self | Observation vector |
Definition at line 342 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_settomissing_ith | ( | type(qg_obsvec), intent(inout) | self, |
integer, intent(in) | i | ||
) |
Set i-th value of observation vector to missing value.
[in,out] | self | Observation vector |
Definition at line 159 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_setup | ( | type(qg_obsvec), intent(inout) | self, |
integer, intent(in) | nlev, | ||
integer, intent(in) | nobs | ||
) |
Linked list implementation.
Setup observation vector
[in,out] | self | Observation vector |
[in] | nlev | Number of levels |
[in] | nobs | Number of observations |
Definition at line 61 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_size | ( | type(qg_obsvec), intent(in) | self, |
integer, intent(inout) | kobs | ||
) |
Get observation vector size.
[in] | self | Observation vector |
[in,out] | kobs | Observation vector size |
Definition at line 420 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_stats | ( | type(qg_obsvec), intent(in) | self, |
real(kind_real), intent(inout) | zmin, | ||
real(kind_real), intent(inout) | zmax, | ||
real(kind_real), intent(inout) | zavg | ||
) |
Compute observation vector statistics.
[in] | self | Observation vector |
[in,out] | zmin | Minimum |
[in,out] | zmax | Maximum |
[in,out] | zavg | Average |
Definition at line 392 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_sub | ( | type(qg_obsvec), intent(inout) | self, |
type(qg_obsvec), intent(in) | other | ||
) |
Subtract observation vector.
[in,out] | self | Observation vector |
[in] | other | Other observation vector |
Definition at line 248 of file qg_obsvec_mod.F90.
subroutine, public qg_obsvec_mod::qg_obsvec_zero | ( | type(qg_obsvec), intent(inout) | self | ) |
Set observation vector to zero.
[in,out] | self | Observation vector |
Definition at line 146 of file qg_obsvec_mod.F90.
type(registry_t), public qg_obsvec_mod::qg_obsvec_registry |
Linked list interface - defines registry_t type.
Global registry
Definition at line 51 of file qg_obsvec_mod.F90.