LandscapeDNDC 1.37.0
mbe_common.h
1
7#ifndef LDNDC_SUBSTATE_COMMON_H_
8#define LDNDC_SUBSTATE_COMMON_H_
9
10#include <input/soillayers/soillayers.h>
11#include <input/soilparameters/soilparameters.h>
12#include <input/site/site.h>
13#include "state/mbe_state.h"
14
15
16namespace ldndc {
17
18double get_bulk_density_without_stones( double _bulk_density_with_stones,
19 double _stone_fraction);
20
21}
22
23#define STRATUMINFO(...) \
24{ \
25 if ( sl == sl_st0 ) \
26 { \
27 LOGINFO(__VA_ARGS__); \
28 } \
29} \
30
31#define STRATUM_INFO(...) \
32{ \
33 if ( _info ) \
34 { \
35 LOGINFO(__VA_ARGS__); \
36 } \
37} \
38
39
40#endif /* !LDNDC_SUBSTATE_COMMON_H_ */
Spatially explicit groundwater model.
Definition: airchemistryput.h:15