tutorials:architecture-model
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:architecture-model [2024/11/15 16:40] – [Diameter] tim | tutorials:architecture-model [2024/11/19 13:06] (current) – [Apical growth] tim | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Growth models step by step ====== | ====== Growth models step by step ====== | ||
- | In this tutorial a growth model for a crown architecture | + | In this tutorial |
- | + | ||
- | The model is based on a yearly scale, meaning that each execution of the growth function will simulate one year of growth. | + | |
+ | The model is based on an annual scale, meaning that each run of the growth function simulates one year of growth. This way of simulating a tree in GroIMP is only one of many, and this tutorial focuses on understanding the development. | ||
===== Organs ===== | ===== Organs ===== | ||
{{ : | {{ : | ||
- | | ||
- | As said above the model considers only the branching structure. Therefore it only requires two organs, shoots and buds. | ||
+ | As mentioned above, the model only considers the branching structure. Therefore it needs only two organs, shoots and buds. | ||
==== Shoots ==== | ==== Shoots ==== | ||
- | A shoot in this tutorial always | + | In this tutorial, a shoot is always an annual shoot, |
- | We do not considers | + | We do not take into account the bending |
- | In GroIMP our shoot will therefore be an module that extends the turtle command F which draws a cylinder. | + | In GroIMP, our shoot will therefore be a module that extends the turtle command F, which draws a cylinder. |
<code java> | <code java> | ||
module Shoot extends F; | module Shoot extends F; | ||
Line 22: | Line 20: | ||
==== Buds ==== | ==== Buds ==== | ||
- | Every bud considered in this tutorial will create | + | Each bud considered in this tutorial will generate |
- | In our GroIMP model a bud can be represented by a small sphere, which means our module | + | In our GroIMP model, a bud is represented by a small sphere. This means that our bud module extends the sphere |
<code java> | <code java> | ||
Line 32: | Line 30: | ||
===== The initial condition ===== | ===== The initial condition ===== | ||
- | In this model we assume the simulation | + | In this model we assume |
- | + | ||
- | As described in the code structure tutorial, the initial state of the simulation is described in the init function. In this case we replace the axiom of our model with one bud. | + | |
+ | As described in the code structure tutorial, the initial state of the simulation is described in the init function. In this case we replace the axiom of our model with a bud. | ||
<code java> | <code java> | ||
protected void init () | protected void init () | ||
Line 47: | Line 44: | ||
{{ : | {{ : | ||
- | Considering | + | Looking at our two organs, we can define our very first rule: //a bud becomes |
- | To write this in a XL query is quite strait forward:'' | + | Writing |
- | This means our rule has to be a bit more complex, not only for our fun but also to keep up with real plant growth.{{ : | + | This means that our rule has to be a bit more complex, not just for fun, but to keep up with real plant growth.{{ : |
- | Therefore | + | So our rule is really |
As an XL query this can be described as '' | As an XL query this can be described as '' | ||
Line 63: | Line 60: | ||
] | ] | ||
</ | </ | ||
- | + | Applying our new rule three times would always replace the bud with a new shoot and a bud, leaving | |
- | Applying our new rule three times would always replace the bud by a new shoot and a bud, while the old shoots | + | |
{{ : | {{ : | ||
===== Parameters ===== | ===== Parameters ===== | ||
- | Now with our newly created model we can step wise create a chain of shoots, basically a branch 8-) . | + | With our newly created model we can now create a chain of shoots |
- | Yet our model growth complete | + | However, the growth of our model is completely |
{{ : | {{ : | ||
- | In a formal way we want that our bud creates | + | Formally, |
- | + | A first step brings us back to our organs. A shoot is no longer | |
- | A first step brings us back to our organs. A shoot is not longer | + | |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | This describes that a Shoot can handle a float parameter and also that this parameter is forwarded | + | This describes that a Shoot can handle a float parameter and also that this parameter is passed |
<code java> | <code java> | ||
module Bud(float len) extends Sphere(0.1); | module Bud(float len) extends Sphere(0.1); | ||
</ | </ | ||
- | This parameter is not used in the bud, it is only stored as knowledge (a variable). | + | This parameter is not used in the bud, it is just stored as knowledge (a variable). |
- | + | ||
- | Assuming the length of all shoots is still 1, the initial rule would become | + | |
+ | Assuming that the length of all shoots is still 1, the initial rule would be | ||
'' | '' | ||
Line 94: | Line 88: | ||
'' | '' | ||
- | Now we can additionally | + | In addition, |
'' | '' | ||
- | This means each Bud in our model is now replaced by a shoot of the length of that Bud. And the same for the new bud. Finally we can just decrease | + | This means that each bud in our model is now replaced by a shoot the length of that bud. And the same for the new bud. Finally, we can simply reduce |
'' | '' | ||
- | + | This means that if the initial (yellow) bud has a length parameter of 1, the yellow shoot will be of size 1, but the red bud will have a length parameter of 0.8. So in the next step the red shoot will be of size 0.8 and the green bud will have a length parameter of 0.64... | |
- | This means if the initial (yellow) bud has a length parameter of 1 the yellow shoot will be of the size 1 but the red bud get a length parameter of 0.8. Therefore | + | |
===== Lateral growth ===== | ===== Lateral growth ===== | ||
{{ : | {{ : | ||
- | Even so our little model improves, it can still only grow in one direction which is quite untypical | + | Although |
{{: | {{: | ||
- | Knowing that our first rule is turning | + | Knowing that our first rule is to turn a bud into a shoot and a bud, we can estimate what the first step towards |
- | This leads us to the task of updating our rule. We now want to //replace a but by a shoot, a but on top and two buds on the side//. | + | This brings |
==== Turtle Geometry ==== | ==== Turtle Geometry ==== | ||
- | For this new rule we have to get a little inside on how GroIMP | + | For this new rule we need to look at how GroIMP |
- | This chain of cylinders and the bud is stored in GroIMP in a graph, the project graph. This graph holds almost all information | + | This chain of cylinders and bud is stored in GroIMP in a graph, the project graph. This graph contains |
|{{: | |{{: | ||
| Left: Our apical shoot as a drawn image, a GroIMP 2d Graph and the GroIMP visualization, | | Left: Our apical shoot as a drawn image, a GroIMP 2d Graph and the GroIMP visualization, | ||
- | + | GroIMP comes with a set of commands | |
- | GroIMP comes with a howl set of commands | + | |
Line 131: | Line 123: | ||
{{: | {{: | ||
- | To first get a feeling | + | To get a feel for this turtle geometry, we will create a rule that turns the bud into a shoot with a bud on the right side. First we need the shoot and then we add the side bud. Knowing that the turtle will be at the end of the shoot after we draw it means that we have to move back from that position. |
- | Assuming our shoot growth with a length of $l$, the turtle will move l up with '' | + | Assuming our shoot has a length of $l$, the turtle will move l up with '' |
- | **Rotating** the turtle | + | You can **rotate** the turtle along the three axes x, y and z. We can see an example of the rotation tool on the right with the possible rotations in colors: x=red, y=blue and z=green. In the turtle geometry we can rotate |
- | For our little shoot with the apical bud, this means we have to rotate it on y axis (up, if the branch would lay on the side). Therefore we need the RU command and come the following rule: | + | For our little shoot with the apical bud, this means that we have to rotate it on the y-axis (up, if the branch would lie on the side). Therefore we need the RU command and the following rule: |
'' | '' | ||
- | which,after 3 iterations, | + | |
+ | which, after 3 iterations, produces the " | ||
{{ : | {{ : | ||
- | === Growing in several directions === | + | ==== Growing in several directions |
- | We have already two possible rules to create our little plant, we either grow to the top or to the right. In the next step we want to do both in one rule. Doing this with one turtle | + | We already |
- | In L-Systems, and also in GroIMP, this is solved by using a stack of turtle states (the current position, rotation, scale color etc.). | + | In most L-Systems, and also in GroIMP, this is solved by using a stack of turtle states (the current position, rotation, scale color, etc.). |
- | " | + | " |
'' | '' | ||
- | + | The order of the elements (why we go back before | |
- | The order of the elements (why we move back before | + | |
| | ||
- | + | In GroIMP' | |
- | In GroIMP' | + | |
Line 165: | Line 156: | ||
- | As said above, the turtle state is stored in a stack, | + | As mentioned |
- | In our case this allows us to add some more lateral buds around (rotate by the head axes) the shoot: | + | In our case, this allows us to add some more lateral buds around |
< | < | ||
Line 180: | Line 171: | ||
</ | </ | ||
- | Which gives us an already quite nice little plant like structure: | + | This gives us a nice little plant-like structure: |
{{ : | {{ : | ||
- | You can now already | + | You can now play around with the values to change the shape of the tree, e.g. make the side branches shorter (x*0.5 |
===== Branching orders ===== | ===== Branching orders ===== | ||
Line 191: | Line 181: | ||
{{ : | {{ : | ||
- | Looking | + | If we look at trees, we can see that most of them have different growth behavior on the trunk and on the branches. To simulate this, we will use the concept of branching |
- | + | ||
- | We, as many other modelers before us, will use this concept to give our tree more structure by defining different growth rules for the different orders. | + | |
- | * A bud on the stem (of order 0) creates a shoot, a new apical bud with the order 0 and three lateral buds around it with the order 1 | + | |
- | * A bud of the order 1 will create a shoot a new apical bud with the order 1 and two lateral buds of order 2 to the left and the right | + | |
- | * A bud of order 2 creates a shoot and a new bud of order 2 | + | |
+ | We, like many other modelers before us, will use this concept to give our tree more structure by defining different growth rules for the different orders. | ||
+ | * A bud on the trunk (of order 0) creates a shoot, a new apical bud of order 0, and three lateral buds of order 1 around it. | ||
+ | * A bud of order 1 creates a shoot, a new apical bud of order 1, and two lateral buds of order 2 to the left and right. | ||
+ | * A bud of order 2 creates a shoot and a new bud of order 2. | ||
- | To use this rules, we first need the knowledge of the branching order for each bud. Therefore | + | To use these rules, we first need to know the branching order for each bud. To do this, we need to add an additional parameter |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | And now we learn a new trick, because on the left side of a XL rule it is also possible to specify which value the selected node should have: '' | + | And now we learn a new trick, because on the left side of an XL rule you can also specify which value a parameter of the selected node should have: '' |
<code java> | <code java> | ||
Line 218: | Line 207: | ||
</ | </ | ||
+ | We now replace only the buds of order 0 (the stem) and give the new buds the correct orders, the lateral buds get order 1 and the apical bud gets 0. | ||
- | I now only replaces the buds of order 0 (the stem) and gives the new buds the right orders, the lateral buds get order 1 and the apical bud get 0. | + | For the first-order branches, |
- | + | ||
- | For the branches of the first order the new rule is as following, using the rotation | + | |
<code java> | <code java> | ||
Bud(1, | Bud(1, | ||
Line 234: | Line 222: | ||
</ | </ | ||
- | finally the one for the second order is just as we know it from the very beginning. | + | Finally, |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | This three rules result in a already quite nice looking structure. (Don't be confused, I resized the radius of the buds a bit) | + | These three rules result in a pretty |
{{ : | {{ : | ||
===== Diameter ===== | ===== Diameter ===== | ||
- | Now in the last real step of this tutorial we want to look at the diameters of our little tree. | + | Now, in the last real step of this tutorial, we want to look at the diameters of our little tree. |
- | In the F class that our shoot extends the diameter can be given as an second parameter: '' | + | In the F class that our shoot extends, the diameter can be given as a second parameter: '' |
<code java> | <code java> | ||
| | ||
</ | </ | ||
- | Now for defining | + | To define |
- | Even so this gives our tree already | + | Even though |
<code java> | <code java> | ||
Line 257: | Line 245: | ||
</ | </ | ||
+ | |||
+ | With the diameter, our tree now looks like this: | ||
+ | {{ : | ||
+ | |||
+ | |||
+ | ===== Final ===== | ||
+ | |||
+ | That is basically it for this tutorial. Below you will find the code for this little tree. Now you can start playing around with it, adding more parameters and rotations to suit your needs. | ||
+ | <code java> | ||
+ | |||
+ | | ||
+ | | ||
+ | |||
+ | | ||
+ | Axiom ==> Bud(0,1); | ||
+ | ] | ||
+ | |||
+ | | ||
+ | |||
+ | Bud(0,x) ==> Shoot(x, | ||
+ | | ||
+ | RU(80) Bud(1, | ||
+ | ] RH(120) [ | ||
+ | RU(80) Bud(1, | ||
+ | ] RH(120)[ | ||
+ | RU(80) Bud(1, | ||
+ | ] | ||
+ | ]Bud(0, | ||
+ | | ||
+ | M(-0.5*x) | ||
+ | | ||
+ | RL(70) Bud(2, | ||
+ | | ||
+ | | ||
+ | RL(-70) Bud(2, | ||
+ | | ||
+ | | ||
+ | |||
+ | | ||
+ | |||
+ | |||
+ | | ||
+ | ] | ||
+ | </ | ||
tutorials/architecture-model.1731685219.txt.gz · Last modified: 2024/11/15 16:40 by tim