Soil Water Balance (SWB2)
|
Functions/Subroutines | |
subroutine | weather_data_tabular_initialize () |
subroutine | weather_data_find_date_indx (dt) |
subroutine | weather_data_tabular_get_precip (dt, precip_value) |
subroutine | weather_data_tabular_get_tmax (dt, tmax_value) |
subroutine | weather_data_tabular_get_tmin (dt, tmin_value) |
Variables | |
real(c_float), dimension(:), allocatable | tmin |
real(c_float), dimension(:), allocatable | tmax |
real(c_float), dimension(:), allocatable | precip |
type(datetime_t), dimension(:), allocatable | weather_date |
integer(c_int), save, private | date_indx = 1 |
subroutine weather_data_tabular::weather_data_find_date_indx | ( | type (datetime_t), intent(in) | dt | ) |
Definition at line 122 of file weather_data_tabular.F90.
subroutine weather_data_tabular::weather_data_tabular_get_precip | ( | type (datetime_t), intent(in) | dt, |
real (kind=c_float), intent(out) | precip_value ) |
subroutine weather_data_tabular::weather_data_tabular_get_tmax | ( | type (datetime_t), intent(in) | dt, |
real (kind=c_float), intent(out) | tmax_value ) |
subroutine weather_data_tabular::weather_data_tabular_get_tmin | ( | type (datetime_t), intent(in) | dt, |
real (kind=c_float), intent(out) | tmin_value ) |
subroutine weather_data_tabular::weather_data_tabular_initialize |
read in dates as a string list
Definition at line 26 of file weather_data_tabular.F90.
|
private |
Definition at line 20 of file weather_data_tabular.F90.
real (c_float), dimension(:), allocatable weather_data_tabular::precip |
Definition at line 17 of file weather_data_tabular.F90.
real (c_float), dimension(:), allocatable weather_data_tabular::tmax |
Definition at line 16 of file weather_data_tabular.F90.
real (c_float), dimension(:), allocatable weather_data_tabular::tmin |
Definition at line 15 of file weather_data_tabular.F90.
type (datetime_t), dimension(:), allocatable weather_data_tabular::weather_date |
Definition at line 18 of file weather_data_tabular.F90.