-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathICohort.cs
More file actions
53 lines (43 loc) · 1.17 KB
/
Copy pathICohort.cs
File metadata and controls
53 lines (43 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Authors: Robert M. Scheller, James B. Domingo
using Landis.SpatialModeling;
namespace Landis.Library.DensityCohorts
{
/// <summary>
/// A species cohort with number of tree information.
/// </summary>
public interface ICohort
:BiomassCohorts.ICohort, Landis.Library.AgeOnlyCohorts.ICohort
{
/// <summary>
/// The number of individual trees in the cohort.
/// </summary>
int Treenumber
{
get;
}
float Diameter
{
get;
}
int Biomass
{
get;
}
// ushort Age
//{
// get;
//}
//---------------------------------------------------------------------
/// <summary>
/// Computes the relative density of a cohort.
/// </summary>
/// <param name="cohort">
/// The site where the cohort is located.
/// </param>
float ComputeCohortRD(Cohort cohort);
double ComputeCohortBasalArea(ICohort cohort);
int ComputeNonWoodyBiomass(ActiveSite site);
void ChangeTreenumber(int delta);
void IncrementAge();
}
}