Ejemplo n.º 1
0
    /// <summary>
    /// 各节间分配光合产物
    /// </summary>
    /// <param name="biomass">分配到茎的生物量</param>
    private static void StemPhotosynthateAllocation(TreeModel treeModel, double biomass)
    {
        List <BranchIndex> indexes = treeModel.GetBranchIndexes();                        //获取该类型器官的索引

        OrganPhotosynthateAllocation <BranchIndex>(MaizeParams.STEM_S, biomass, indexes); //分配生物量
    }