SABER
|
Fit-related tools. More...
Functions/Subroutines | |
subroutine, public | fast_fit (mpl, n, iz, dist, raw, fit_r) |
Fast fit length-scale estimation based on the value at mid-height. More... | |
subroutine, public | ver_smooth (mpl, n, x, rv, profile) |
Homogeneous smoothing of a vertical profile. More... | |
subroutine, public | ver_fill (mpl, n, x, profile) |
Missing values filling of a vertical profile. More... | |
Variables | |
integer, parameter | itermax = 10 |
Fit-related tools.
subroutine, public tools_fit::fast_fit | ( | type(mpl_type), intent(inout) | mpl, |
integer, intent(in) | n, | ||
integer, intent(in) | iz, | ||
real(kind_real), dimension(n), intent(in) | dist, | ||
real(kind_real), dimension(n), intent(in) | raw, | ||
real(kind_real), intent(out) | fit_r | ||
) |
Fast fit length-scale estimation based on the value at mid-height.
[in,out] | mpl | MPI data |
[in] | n | Vector size |
[in] | iz | Zero separation index |
[in] | dist | Distance |
[in] | raw | Raw data |
[out] | fit_r | Fast fit result |
Definition at line 28 of file tools_fit.F90.
subroutine, public tools_fit::ver_fill | ( | type(mpl_type), intent(inout) | mpl, |
integer, intent(in) | n, | ||
real(kind_real), dimension(n), intent(in) | x, | ||
real(kind_real), dimension(n), intent(inout) | profile | ||
) |
Missing values filling of a vertical profile.
[in,out] | mpl | MPI data |
[in] | n | Vector size |
[in] | x | Coordinate |
[in,out] | profile | Vertical profile |
Definition at line 229 of file tools_fit.F90.
subroutine, public tools_fit::ver_smooth | ( | type(mpl_type), intent(inout) | mpl, |
integer, intent(in) | n, | ||
real(kind_real), dimension(n), intent(in) | x, | ||
real(kind_real), intent(in) | rv, | ||
real(kind_real), dimension(n), intent(inout) | profile | ||
) |
Homogeneous smoothing of a vertical profile.
[in,out] | mpl | MPI data |
[in] | n | Vector size |
[in] | x | Coordinate |
[in] | rv | Filtering support radius |
[in,out] | profile | Vertical profile |
Definition at line 175 of file tools_fit.F90.
integer, parameter tools_fit::itermax = 10 |
Definition at line 17 of file tools_fit.F90.