Hey Guys!
I hope to get some help here. I would like to grow or expand curves (with simulate the boundary of forest areas) as long as they touch each other. This should simulate the growth of these woodlands to show the expansion of the green area in some areas of Ethiopia.
What are the best and easiest grasshopper components to do this?
I think you need to provide more informations to a simulation which could be quiet complex.
Should the simulation stop as soon two forests intersect?
Should the growth of two forests stop as they intersect and the simulation still run on the other?
Should the growth in the direction to the intersection stop, and still go on on the other sides?
How your input boundary look? Polylines or curves?
For the first two questions, you could use offset or scale, for the third, you need something more complex, which modifies the segments individually. You may want to convert your boundary to a polyline with smaller segments. For example: one forest is a triangle, the other one rectangle. They may intersect at their corner, but the growth should go on, till thereās a line between them both.
May have a look at this:
What are the best components to do that?
Thereās no single component, neither a best one. Depending on your parameters.
I would suggest using anemone to loop the growth. You could also use kangaroo to simulate the collision of the boundary curves.
If you have a specific question on your script, it will be easier to help you.
I uploaded the Grasshopper file which I have to far, but I think I have to define each forest (hope you can see them on the map) block on a different curve componentā¦
Basically I would like to let the different forest āislandā grow as far as they create some woodland structure. A possible parameter might be, that for the first, they geow double their size or at least until the touch other woodland sectionsā¦For
Hi @Pilsprinz,
Having two daughter-in-laws from Addis Ababa this post caught my attention.
I would consider āimplicit surfacesā for this. This is due to the fact that you actually want āorganic growthā and, this is important, so many different growth factors can easily be incorporated into the āstrengthā or āenergy fieldsā of the points forming surfaces and itās boundaries.
Think of points with āstrengthā or āenergy fieldsā normalized to values between 0ā¦1 with diminishing strength according to radius, like so:
When two or more points are close and thus contributing to a certain strength (in an area) then you have a surface based on āintersecting forcesā, like water drops adding up to gradually bigger puddles.
Jumping directly past the surfaces and their boundaries (works fine also in 3D) - consider what the āforcesā making upi the surfaces could consist of (apart from the distance to each other) where every factor is normalized and added to each pointās āforrest growh strength potentialā;
Distance (to next point)
Existing plants
Soil quality
Rain / Period
Height above Sea level (mesh.Vertex[ix].Z ā¦)
Erosion
Time
ā¦ you name it.
= Growth potential at each point = implicit surface.
When summing up all the factors at each point, combining explicit surfaces (GIS) with your scaling factors and play it with time, then you (implicitly) have the growing surfaces and its boundaries in all directions. Or growing deserts in the Afar region)
Changing in ārealtimeā any of the factors making up for the āstrengthā of each point to make live simulations demonstrating the relative influence of these factors andā¦ possibilities are endless. Have a look at the first part of this clip (three topics, starting with Implicit Surfaces):
Somewhat related, but perhaps not an introduction (the concept is dead simple, an trees can be obscured by entire forestsā¦)
In ecology, Voronoi diagrams are used to study the growth patterns of forests and forest canopies, and may also be helpful in developing predictive models for forest fires.
āA Voronoi tessellation emerges by radial growth from seeds outward.ā
Interesting how lots of people in the design/architecture field seem to only know it for making funny-looking holes
@RIL implicit surfaces sound like an interesting approach, I can see it happening with two surfaces (positive and negative āfieldsā ā find the zero-value isocurve boundary) but it seems difficult to extend to multiple forests unless thereās some additional trick involved?
The points mentioned above could be interpreted as using different metrics instead of Euclidean distance for the Voronoi diagrams, I wonder if thereās a GH plugin out there that does thisā¦