Vorozheikina Aleksandra - Module 2

Model

image

image

Design Approach

I divided my design into different steps, so it was easier to follow the procedure and change parameters. I started by creating a grid of target points where the cylinders should be located. I used sliders to easily change a number of grid points.

image

My next step was creating an attractor point that can be controlled by number sliders representing X,Y and Z directions of the point.

image

Then I calculated the distance between an attractor point and grid points, multiplied it by the number of waves that can be controlled by the number slider, and used it as an input for the sin function. The height of the cylinders was then calculated as base offset+(sin*amplification factor). The result was giving me a sin shape, where the amplification factor and base offset can be controlled by number sliders.

image

image

My next step was achieving a diminishing effect. I found a formula for a diminishing sin wave as y = A sin(ωt + Φ)e^(-at). Using a code block, I wrote e^(-0.2*distance) and multiplied this result by the sin values I got in the previous step. I forgot to take a screenshot of this block, but here’s a picture of one of the attempts of playing with a shape using this new diminishing sin wave function.

image

Finally, I created a block responsible for creating Revit cylinders. I downloaded a cylinder family from the Revit library and used a “Family instance by point” function to match the Dynamo environment in Revit. Cylinders’ radius can be controlled by the code block, while the height is controlled by the diminishing wave function explained above. After some time of playing with a number of grid points, number of waves, and amplification factor (and crushing Revit a couple of times) I got the shape I liked the most.

image