The BioCro C++ Library
multilayer_rue_canopy.cpp
Go to the documentation of this file.
2
5
6int const ten_layer_rue_canopy::nlayers = 10; // Set the number of layers
7
8string_vector ten_layer_rue_canopy::get_inputs()
9{
10 // Just call the parent class's input function with the appropriate number
11 // of layers
13 ten_layer_rue_canopy::nlayers);
14}
15
17{
18 // Just call the parent class's output function with the appropriate number
19 // of layers
21 ten_layer_rue_canopy::nlayers);
22}
23
24void ten_layer_rue_canopy::do_operation() const
25{
26 // Just call the parent class's run operation
28}
Applies a leaf photosynthesis module to each layer and leaf class of a multilayer canopy.
Represents a ten layer canopy where leaf-level photosynthesis is calculated using a simple radiation ...