get_G_from_monthly_T: Get the ground heat flux in

Description Usage Arguments Details Examples

View source: R/fao_penman_monteith.R

Description

Get the ground heat flux in

Usage

1
get_G_from_monthly_T(T_month_iminus1, T_month_iplus1 = NULL, T_month_i = NULL)

Arguments

T_month_iminus1

air temperature at month i-1, deg C

T_month_iplus1

air temperature at month i-1, deg C

T_month_i

air temperature at month i, deg C

Details

Must specify T_month_iminus1 and either T_month_iplus1 or T_month_i. T_month_iplus1 is given preference. The calculation is then either

G = 0.07 * (T_month_iplus1 - T_month_iminus1), eq 43 FAO 56, Ch 3, or

G = 0.14 * (T_month_i - T_month_iminus1) # eq 44 FAO 56, Ch 3

G soil heat flux, MJ / m^2/ day T_month_iplus1 air temperature at month i+1, deg C T_month_i air temperature at month i+1, deg C T_month_iminus1 air temperature at month i-1, deg C

Examples

1
2
get_G_from_monthly_T(15, 18)
get_G_from_monthly_T(15, T_month_i = 18)

gopalpenny/fao56 documentation built on Feb. 14, 2022, 6:01 a.m.