OOPS
|
Functions/Subroutines | |
subroutine | qg_obsvec_setup_c (c_key_self, nlev, nobs) |
Setup observation vector. More... | |
subroutine | qg_obsvec_clone_c (c_key_self, c_key_other) |
Clone observation vector. More... | |
subroutine | qg_obsvec_delete_c (c_key_self) |
Delete observation vector. More... | |
subroutine | qg_obsvec_copy_c (c_key_self, c_key_other) |
Copy observation vector. More... | |
subroutine | qg_obsvec_zero_c (c_key_self) |
Set observation vector to zero. More... | |
subroutine | qg_obsvec_settomissing_ith_c (c_key_self, i) |
Set i-th value of the observation vector to missing value. More... | |
subroutine | qg_obsvec_ones_c (c_key_self) |
Set observation vector to ones. More... | |
subroutine | qg_obsvec_mask_c (c_key_self, c_key_mask) |
Mask self observation vector (set values to missing where mask is set) More... | |
subroutine | qg_obsvec_mask_with_missing_c (c_key_self, c_key_mask) |
Mask self observation vector (set values to missing where mask is a missing value) More... | |
subroutine | qg_obsvec_mul_scal_c (c_key_self, zz) |
Multiply observation vector with a scalar. More... | |
subroutine | qg_obsvec_add_c (c_key_self, c_key_other) |
Add observation vector. More... | |
subroutine | qg_obsvec_sub_c (c_key_self, c_key_other) |
Subtract observation vector. More... | |
subroutine | qg_obsvec_mul_c (c_key_self, c_key_other) |
Multiply observation vector. More... | |
subroutine | qg_obsvec_div_c (c_key_self, c_key_other) |
Divide observation vector. More... | |
subroutine | qg_obsvec_axpy_c (c_key_self, zz, c_key_other) |
Apply axpy on observation vector. More... | |
subroutine | qg_obsvec_invert_c (c_key_self) |
Invert observation vector. More... | |
subroutine | qg_obsvec_random_c (c_odb, c_self) |
Generate random observation vector. More... | |
subroutine | qg_obsvec_dotprod_c (c_key_obsvec1, c_key_obsvec2, zz) |
Compute dot product between observation vectors. More... | |
subroutine | qg_obsvec_stats_c (c_key_self, zmin, zmax, zavg) |
Compute observation vector statistics. More... | |
subroutine | qg_obsvec_nobs_c (c_key_self, kobs) |
Get number of observations (not missing) More... | |
subroutine | qg_obsvec_size_c (c_key_self, kobs) |
Get observation vector size. More... | |
subroutine | qg_obsvec_nobs_withmask_c (c_key_self, c_key_mask, kobs) |
Get observation vector size (only non-masked observations) More... | |
subroutine | qg_obsvec_get_withmask_c (c_key_self, c_key_mask, vals, nvals) |
Get all non-masked out observation values. More... | |
|
private |
Add observation vector.
[in] | c_key_self | Observation vector |
[in] | c_key_other | Other observation vector |
Definition at line 231 of file qg_obsvec_interface.F90.
|
private |
Apply axpy on observation vector.
[in] | c_key_self | Observation vector |
[in] | zz | Multiplier |
[in] | c_key_other | Other observation vector |
Definition at line 315 of file qg_obsvec_interface.F90.
|
private |
Clone observation vector.
[in,out] | c_key_self | Observation vector |
[in] | c_key_other | Other observation vector |
Definition at line 45 of file qg_obsvec_interface.F90.
|
private |
Copy observation vector.
[in] | c_key_self | Observation vector |
[in] | c_key_other | Other observation vector |
Definition at line 90 of file qg_obsvec_interface.F90.
|
private |
Delete observation vector.
[in,out] | c_key_self | Observation vector |
Definition at line 68 of file qg_obsvec_interface.F90.
|
private |
Divide observation vector.
[in] | c_key_self | Observation vector |
[in] | c_key_other | Other observation vector |
Definition at line 294 of file qg_obsvec_interface.F90.
|
private |
Compute dot product between observation vectors.
[in] | c_key_obsvec1 | Observation vector 1 |
[in] | c_key_obsvec2 | Observation vector 2 |
[in,out] | zz | Dot product |
Definition at line 376 of file qg_obsvec_interface.F90.
|
private |
Get all non-masked out observation values.
[in] | c_key_self | Observation vector |
[in] | c_key_mask | Mask |
[in] | nvals | number of obs |
[out] | vals | ob. values |
Definition at line 483 of file qg_obsvec_interface.F90.
|
private |
Invert observation vector.
[in] | c_key_self | Observation vector |
Definition at line 337 of file qg_obsvec_interface.F90.
|
private |
Mask self observation vector (set values to missing where mask is set)
[in] | c_key_self | Observation vector |
[in] | c_key_mask | Mask |
Definition at line 169 of file qg_obsvec_interface.F90.
|
private |
Mask self observation vector (set values to missing where mask is a missing value)
[in] | c_key_self | Observation vector |
[in] | c_key_mask | Mask |
Definition at line 190 of file qg_obsvec_interface.F90.
|
private |
Multiply observation vector.
[in] | c_key_self | Observation vector |
[in] | c_key_other | Other observation vector |
Definition at line 273 of file qg_obsvec_interface.F90.
|
private |
Multiply observation vector with a scalar.
[in] | c_key_self | Observation vector |
[in] | zz | Multiplier |
Definition at line 211 of file qg_obsvec_interface.F90.
|
private |
Get number of observations (not missing)
[in] | c_key_self | Observation vector |
[in,out] | kobs | Observation vector size |
Definition at line 420 of file qg_obsvec_interface.F90.
|
private |
Get observation vector size (only non-masked observations)
[in] | c_key_self | Observation vector |
[in] | c_key_mask | Mask |
[in,out] | kobs | Observation vector size |
Definition at line 460 of file qg_obsvec_interface.F90.
|
private |
Set observation vector to ones.
[in] | c_key_self | Observation vector |
Definition at line 150 of file qg_obsvec_interface.F90.
|
private |
Generate random observation vector.
[in] | c_odb | Observation data base |
[in] | c_self | Observation vector |
Definition at line 356 of file qg_obsvec_interface.F90.
|
private |
Set i-th value of the observation vector to missing value.
[in] | c_key_self | Observation vector |
[in] | i | index of value to be set to missing value |
Definition at line 130 of file qg_obsvec_interface.F90.
|
private |
Setup observation vector.
[in,out] | c_key_self | Observation vector |
[in] | nlev | Number of levels |
[in] | nobs | Number of observations |
Definition at line 22 of file qg_obsvec_interface.F90.
|
private |
Get observation vector size.
[in] | c_key_self | Observation vector |
[in,out] | kobs | Observation vector size |
Definition at line 440 of file qg_obsvec_interface.F90.
|
private |
Compute observation vector statistics.
[in] | c_key_self | Observation vector |
[in,out] | zmin | Minimum |
[in,out] | zmax | Maximum |
[in,out] | zavg | Average |
Definition at line 398 of file qg_obsvec_interface.F90.
|
private |
Subtract observation vector.
[in] | c_key_self | Observation vector |
[in] | c_key_other | Other observation vector |
Definition at line 252 of file qg_obsvec_interface.F90.
|
private |
Set observation vector to zero.
[in] | c_key_self | Observation vector |
Definition at line 111 of file qg_obsvec_interface.F90.