COURSES

-> About this Resource
Scope *______
Map *____

-> Preliminary Courses
Contents & Objectives *__________________
Map *____
-> Botany
Contents & Objectives *__________________
Map *____
-> Axis Typology Patterns
Typology basis *___________
Pictograms *_________
Sexuality & development *___________________
Growth *______
Branching rhythms *______________
Branching delays *_____________
Branching positional *________________
Branching arrangement *__________________
Axis orientation *_____________
Architectural models *________________
-> Architectural Unit
About Arc. Models *______________
Models limitations *______________
Architectural Units *______________
Reiteration *_________
Sequence of development *___________________
Morphogenetic gradients *___________________
Physiological age *_____________
-> An Example
Wild Cherry (young) *_______________
Wild Cherry (adult) *______________
Wild Cherry (mature) *________________
Quiz *____
Case study Quiz *_____________
Supplementary resources *____________________

-> Eco-Physiology
Contents & Objectives *__________________
Map *____
-> Growth Factors
Factors affecting Growth *___________________
Endogenous Processes *_________________
Environmental Factors *_________________
Thermal Time *___________
-> Light interaction
P.A.R. *_____
Light absorption *_____________
Photosynthesis *___________
Respiration *_________
Maintenance respiration *__________________
L.U.E. Model *__________
Density effect *___________
Density effect on crop *__________________
-> Biomass
Biomass Pool *__________
Biomass Partitioning *_______________
Crop models *__________
A Crop model example *__________________
Quiz *____
Supplementary resources *___________________

-> Applied Mathematics
Contents & Objectives *__________________
Map *____
-> Probabilities
Section contents *____________
Discrete Random Variable *___________________
Expected value, Variance *___________________
Properties *________
-> Useful Laws
Bernoulli Trials *___________
Binomial Law *__________
Geometric Law *____________
Negative Binomial Law *_________________
-> Dynamic systems
Section contents *_____________
Useful functions *____________
Beta density *__________
Exercises *________
Negative Exponential *________________
Systems functions *______________
Discrete dynamic systems *___________________
Parameter Identification *__________________
Parameter estimation *________________
Supplementary Resources *____________________


-> GreenLab courses
GreenLab presentation *__________________
-> Overview
Presentation & Objectives *____________________
Map *____
Growth and components *___________________
Plant architecture *_______________
Biomass production *________________
Modelling - FSPM *______________
GreenLab principles *________________
Applications *__________
Supplementary resources *_____________________
-> Principles
Presentation & Objectives *____________________
Map *____
-> About modelling
Scientific disciplines *________________
Organs: tree components *___________________
Factors affecting growth *___________________
Model-simulation workflow *____________________
GreenLab inherits from *__________________
GreenLab positioning *_________________
The growth cycle *______________
Inside the growth cycle *___________________
Implementations *______________
Supplementary resources *____________________
-> Development
Presentation & Objectives *____________________
Map *____
Modelling Scheme *______________
Tree traversal modes *________________
-> Stochastic modelling
Principles *_______
-> Development
Growth Rhythm *____________
Damped growth *____________
Viability *______
Rhythmic axis *___________
Branching *________
Stochastic automaton *_________________
-> Organogenesis equations
Principles *_______
Organ cohorts *___________
Organ numbering *_____________
Substructure factorization *____________________
Stochastic case *____________
-> Structure construction
Construction modes *_______________
Construction basis *______________
Axis of development *________________
Stochastic reconstruction *___________________
Implicit construction *________________
Explicit construction *________________
3D construction *____________
Supplementary resources *____________________
-> Production-Expansion
Presentation & Objectives *____________________
Map *____
-> EcoPhysiology reminders
Relevant concepts *______________
Temperature *__________
Light interception *______________
Photosynthesis *___________
Biomass common pool *_________________
Density *______
-> Principals
Growth cycle *__________
Refining PbMs *___________
Organ cohorts *___________
GreenLab vs PbM & FSPM *___________________
-> GreenLab's equations
Summary *_______
Production equation *_______________
Plant demand *__________
Organ dimensions *______________
A dynamic system view *__________________
Equation terms *____________
Full Model *________
Model behaviour *______________
Supplementary resources *____________________
-> Applications
Presentation & Objectives *____________________
Map *____
-> Measurements
Agronomic traits *_____________
Mesurable/hidden param. *___________________
Fitting procedure *______________
-> Fitting structure
Principles *_______
-> Development
Simple development *_______________
Damped growth *____________
Rhythmic growth *_____________
Rhythmic growth samples *___________________
Mortality *_______
Branching *________
-> Crown analysis
Analysis principles *______________
Equations *________
Example / Exercise *_______________
-> Case study
Plant Architecture *______________
Development simulation *__________________
Introducing Biomass *_______________
Biomass partitioning *_______________
Equilibrium state *_____________
Supplementary resources *____________________

-> Tools (software)
Presentation & Objectives *_____________________
Map *____
Fitting, Stats *___________
Simulation *_________
Online tools *__________

GreenLab Course

Development

Explicit Structure construction



Axes of development state lists define the patterns on which the structure is built.
Building a tree structure thus means defining paths in these axes from state to state, withing the same axis (axis development), or jumping to another axis (branching).

The structure matrix mode stores the number of visits of a given state.

While the structure list mode stores the state paths.


List mode


    Building the structure in list mode

    Building the structure means updating the list structure for consecutive growth cycles.

    In our implementations, we chose to define the list structure at the final simulation stage, using a prefix tree transversal construction.
    The structure list is therefore never updated on past states; it only adds
    states along the tree transversal at the final stage.
    Topological information (what is borne by what) is not necessary in our application but helps for geometrical feature integration (mechanics) and visualisation.

    Given an empty list lst <- 0, a final age N expressed in growth cycles, and the axis of development Axdφ(), the construction scheme introduces a stack S and can be described as follows:

    Step 1:
      lst <- 0 ; the list is empty
      i = 1 ; the current growth cycle, initialized to 1
      φ = 1 ; the current physiological age, initialized to 1
    Step 2:
      S <- Axdφ=1(i=1) ; stack the first phytomer
    Step 3:
      if (S is living, awake and i < N) check if the phytomer is awake and if its age has not reached the tree age
        lst <- S ; store the top of the Stack (the current phytomer of axis φ and cycle i)
        for (each axillary of S not processed yet)
          S <- axillary(S); Stack the axillary with i=i+1 and φ set to the axillary physio age
          goto step 3 ; process the branched substructure
        S <- Axd(&phy;,i+1); Stack the next phytomer on the axis with i=i+1 and same φ
        goto Step 3; Process the axis
        end for
        else all branches in the current stack are explored
        Unstack S; go back to the barrier axis
        if (S is empty)
          goto Step 4 ; the stack is empty, all branches are explored
          else
          goto Step 3; the barrier axis must be explored
    Step 4:
      end; all states are written in lst

    Optimizing reconstruction

      The proposed algorithm constructs an exhaustive list of all states.
      It can be optimized, if the list item allows instantiation indexes instead of exhaustive contents:
      - either lst(n) contains a state with its attributes (a phytomer with its bearing organs)
      - or lst(n) contains a reference to another list item and the length of its description
      This implements the sub-structure approach: on the first call to Stack S with (φ,i) arguments the axes of development are explored and the list is updated, while on the next call to the Stack with the same arguments the existing position in the list is retrieved, and the exploration is skipped and a simple reference item is added to the list.

    Once more, the stochastic case is derived straightforwardly from the deterministic case, using the stochastic axes of developments for each random identifier in Stack S. Each stochastic plant structure realization will be attributed a different list lst.


    In more detail, as for the matrix mode, the list state should be filtered by its attributes:
    - the appropriate number of organs per phytomer
    - filter organ occurrence in respect of a minimal ontogenetic age if required
    - filter organ occurrence according to its lifespan
    - limit reiteration development if the maximal order is reached.