Josh Mesenbrink - Module 3

Model

Front View:

image

Back View:

image

Modeling Approach

The first grouping of code in the grasshopper file defines the points for the arcs based upon the desired structure length. Those points are then used to create the two main arcs of the structure in the second grouping of code. The first arc is replicated to the height of the structure while the second arc is replicated to the roof height. Also, within this grouping the arc bridging the top of the structure is created.

image

In the next grouping of code, the roof surface is constructed. In this case the roof is constructed to have sinusoidal behavior that can be altered by amplitude or number of waves.

image
image

The next group of code uses the lofted roof surface to create quadrilateral roof panels and store them as a surface while defining the edges of the panels as pipes.

image

To create the pipe for the arc atop the structure the group of code defines the shape of the pipe as a function of diameter and creates a perp frame that sweeps across the arc.

image

A similar process is used to create the pipes that support the roof. Before implementing the sweep command, a grid was defined, and the transverse curves were extracted and used as the location for the roof supporting pipes.

image

The following group of code creates the roof pipe along the wall that connects all of the pipes together. This was achieved by using the geometry defined in the roof supporting pipes code block to create the curve that matched the sinusoidal roof behavior. Then using the same process as for the arc atop the structure this pipe was created.

image

To create the diamond wall panels, the group of code merges the base curve and the sinusoidal roof curve. It then lofts as surface between those two curves and divides it into a grid for the placement of the diamond panels.

image

Then to create the vertical wall pipes the base curve was merged with the arc atop the structure. These two curves were then divided into segments which created the pipe placement points. A surface was then lofted between these two curves and divided into a grid. The transverse curves are then extracted, and the sweep function was used to create the pipes as a function of diameter.

image

Lastly, the group of code the creates the framework on the sides creates the endpoints of the framework. It then creates lines connecting those points and merges them. Just like the other sections the sweep function is implemented to create the pipes as function of pipe diameter.

image

Adjustable Parameters

The parameters that can be flexed and dynamically changed in my structure are the structure length and height. Additionally, the roof height can be altered to be angled upwards are downwards. The shape of the roof can also be altered by manipulating the number of sine waves and their amplitude. The number of roof and wall panel points can also be dynamically adjusted. Also, the number of roof and wall pipes can be adjusted. The pipe geometry can also be altered to create thinner or thicker pipes. Lastly, the arcs can be manipulated allowing the curvature of the structure to change.