Пример #1
0
 /// <summary>
 /// Calculates the LAI for the sunlit/shaded areas of the canopy, based on the position of the sun
 /// </summary>
 private void CalcLAI()
 {
     Sunlit.LAI = Absorbed.CalculateSunlitLAI();
     Shaded.LAI = LAI - Sunlit.LAI;
 }