LandscapeDNDC 1.37.0
ld_penman.h
1
10#ifndef LD_PENMAN_H_
11#define LD_PENMAN_H_
12
13#include <cbm_errors.h>
14
15namespace ldndc {
16
21enum
22surface_type
23{
24 water,
25 bare_soil,
26 short_grass
27};
28
33double
34penman(
35 surface_type /* surface charaterization */,
36 int /* day of year */,
37 int /* number of days of year */,
38 double /* albedo */,
39 double /* latitude */,
40 double /* short-wave radiation */,
41 double /* temperature */,
42 double /* wind speed */,
43 double /* vapour pressure */);
44
49double
50wind_function(
51 surface_type /* surface charaterization */,
52 double /* wind velocity */);
53
58lerr_t
59saturated_vapour_pressure(
60 double /* temperature */,
61 double * /* saturated vapour pressure */,
62 double * /* slope */);
63
64} /* end namespace ldndc */
65
66#endif /* !LD_PENMAN_H_ */
Spatially explicit groundwater model.
Definition: airchemistryput.h:15