tutorials:radiation-model-in-crop_model8
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
tutorials:radiation-model-in-crop_model8 [2025/05/27 18:31] – created barley1965 | tutorials:radiation-model-in-crop_model8 [2025/05/28 14:03] (current) – barley1965 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | // | + | // |
- | We have now introduced | + | This model produces |
- | const int PL_NO = 4; | + | The parameters you may change in the code can be found in Example1.rgg, lines 5 - 13: |
- | Task: run the model, | + | |
- | By changing plant density, can you increase | + | <code java> |
- | Next, you may increase or decrease branching angle, leaf angle, final leaf size, leaf curvature, leaf folding, and phyllochron by up to 20 per cent to optimize fruit yield (L. 76 – 81): | + | /* Parameters |
+ | public @Editable @Range(min=90,max=200) float GOLDEN_ANGLE = 137.5; // | ||
+ | public @Editable @Range(min=30,max=90) float BRANCH_ANGLE = 50;//50 | ||
+ | float LEAF_ANGLE = BRANCH_ANGLE+10; | ||
+ | const float LEAF_CURVATURE = 2; //between 1 and 5 | ||
+ | const float LEAF_FOLDING = 20; //20 between 0 and 50 | ||
+ | public @Editable @Range(min=9,max=20) int PHYLLOCHRON = 9; //15 between 9 and 20 | ||
+ | public @Editable @Range(min=1,max=5) int PL_NO = 4; //5 | ||
+ | public @Editable @Range(min=1,max=5) int ROW_NO = 4; //4 | ||
+ | public @Editable @Range(min=1, | ||
+ | </ | ||
+ | However, it is also possible (and much easier? | ||
+ | |||
+ | {{: | ||
- | N.B.: Do not forget | + | //Task: run the model, and see how many fruits you get in the end! |
+ | By changing plant density, can you increase the number of fruits?// | ||
+ | |||
+ | Next, you may increase or decrease branching angle, leaf angle, final leaf size, leaf curvature, leaf folding, and phyllochron by up to 20 per cent to optimize fruit yield. Note that you cannot change leaf curvature and leaf folding from the slider panel, you need to modify the code and recompile. | ||
+ | |||
+ | N.B.: After having changed values with the slider, you have to press the '' | ||
+ | |||
+ | Finally, note that this model is just a traing tool (toy...), and not based on any measurements of real plants! | ||
+ | |||
+ | {{tutorials: | ||
+ | {{tutorials: | ||
+ | |||
+ | |||
tutorials/radiation-model-in-crop_model8.1748363494.txt.gz · Last modified: 2025/05/27 18:31 by barley1965