LandscapeDNDC 1.37.0
ld_thornthwaite.h
1
10#ifndef LD_POTENTIALEVAPOTRANSPIRATION_H_
11#define LD_POTENTIALEVAPOTRANSPIRATION_H_
12
13#include "ld_modelsconfig.h"
14
15namespace ldndc {
16
17double
19 double /* latitude */,
20 size_t /* days in year */,
21 double /* annual average temperature */,
22 double /* annual temperature amplitude */);
23
24double
25LDNDC_API thornthwaite(
26 double /* air temperature (oC) */,
27 double /* daylength (hr) */,
28 double /* daylength of the avg. day in the month (hr) */,
29 double /* number of days in the month */,
30 double /* heat index */);
31
32} /*namespace ldndc*/
33
34#endif /* !LD_POTENTIALEVAPOTRANSPIRATION_H_ */
35
Spatially explicit groundwater model.
Definition: airchemistryput.h:15
double LDNDC_API thornthwaite_heat_index(double, size_t, double, double)
Thornthwaite heat index.
Definition: ld_thornthwaite.cpp:100
double LDNDC_API thornthwaite(double, double, double, double, double)
Potential evapotranspiration after .
Definition: ld_thornthwaite.cpp:41