10.014 CTD
  • Overview
  • Schedule
  • Administrative
    • Accessing Rhino remotely
    • Rhino for Mac
  • ASSIGNMENTS
    • Dates and rubrics
    • Generative design
      • Generative design
    • Parametric design
      • Parametric design
    • Simulated design
      • Simulated design
      • Simulated design
  • SESSION 1B
    • Computer Aided Design
    • Ranges and expressions 1
      • Ranges and expressions 2
      • Ranges and expressions 3
      • Ranges and expressions 4
      • Ranges and expressions 5
      • Ranges and expressions 6
  • SESSION 2A
    • Visual programming 1
      • Visual programming 2
      • Visual programming 3
      • Visual programming 4
    • Associative modelling 1
      • Associative modelling 2
      • Associative modelling 3
  • SESSION 2B
    • Logical Patterns 1
      • Logical patterns 2
      • Logical patterns 3
  • SESSION 3A
    • Spatial geometry 1
      • Spatial geometry 2
      • Spatial geometry 3
      • Spatial geometry 4
      • Spatial geometry 5
      • Spatial geometry 6
      • Spatial geometry 7
    • Curve geometry 1
      • Curve geometry 2
      • Curve geometry 3
      • Curve geometry 4
  • SESSION 3B
    • Surface geometry
    • Parametric modelling 1
      • Parametric modelling 2
      • Parametric modelling 3
      • Parametric modelling 4
  • SESSION 4A
    • Information nesting 1
      • Information nesting 2
      • Information nesting 3
    • Data landscapes 1
      • Data landscapes 2
      • Data Landscapes 3
      • Data landscapes 4
  • SESSION 4B
    • Mesh geometry 1
      • Mesh geometry 2
      • Mesh geometry 3
  • SESSION 5A
    • Space and time 1
      • Space and time 2
    • Modelling entities 1
      • Modelling entities 2
      • Modelling entities 3
  • SESSION 5B
    • Multibody dynamics 1
      • Multibody dynamics 2
    • Material elasticity 1
      • Material elasticity 2
      • Material elasticity 3
  • SESSION 6A
    • Form-finding 1
      • Form-finding 2
      • Form-finding 3
      • Form-finding 4
  • SESSION 6B
    • AI Image generation 1
      • AI Image generation 2
      • AI Image generation 3
  • APPENDIX
    • Spirograph 1
      • Spirograph 2
    • Curves
    • Swarm Intelligence 1
      • Swarm Intelligence 2
    • Hybrid programming 1
      • Hybrid programming 2
Powered by GitBook
On this page
  1. SESSION 6A
  2. Form-finding 1

Form-finding 2

Vaults, minimal surfaces and mesh relaxation

PreviousForm-finding 1NextForm-finding 3

Last updated 9 months ago

Compression Vaults

Having developed perhaps the most complex graph in the term, we can proceed with some applications. The first example emulates the vaults and arches [] designed by Antoni Gaudi []. The idea is derived from the observation that a hanging network of ropes and weights, when inverted, it represents an idealized geometry for structures that primarily work in compression [], such as masonry vaults and arches [].

Model Setup

The setup cluster defines a rectangular sheet with a number of tiles per column and row. The important aspect here is that beyond particle system initialization data, the cluster also outputs face and edge connectivity data we need for force analysis and visualization purposes subsequently.

We construct the grid of tiles using the “mesh plane” component. We may or not use the “triangulate” mesh component to convert the default quadrilateral mesh faces to triangles. The mesh is passed to the “topology” cluster which computes the nodes i.e. particle position data, faces i.e. visualization data and edges i.e. spring linkage data.

Velocities are constructed by multiplying all points by zero and reinterpreting the result as vectors. The complexity for computing the masses is because we wish to fix the four corners of the net without manually inputting each point index value. The sub-graph computes those using indexing logic but we will develop a more intuitive approach in the later section.

Force Analysis Revisited

The force analysis cluster component needs to be updated such that we can use the edge table to apply the spring forces selectively. The springs cluster needs also to input the edge table as seen below. Notice also that gravity has been inverted such that the vault it popped upwards.

The spring force computation is seen below. We use “list item” to select all neighbours of each particle. We then produce all the force vectors via a Cartesian product and compute the spring force partials. Finally, we compute the sum of forces for each particle using the summation component.

This definition is not only much simpler compared to the hanging chain model but also much faster because we did the heavy lifting of generating the edge list upfront once instead of inferring particle relationships for every time step of the simulation.

Visualization Revisited

Updating the display cluster is also straightforward. We input apart from particle states and sum of forces, the mesh faces list. Exactly because we did not alter the point order in the list of vertices, we can just reconstruct the mesh by supplying the updated particle positions and face data.

The difference between a rectangular versus a triangulated mesh sheet seen below is quite dramatic. This is purely the result of edge connectivity. Similar to a single rope curve, the restrained particles need to support the weight of all internal nodes and as such their edges are excessively elongated. Internal nodes, having sufficient freedom to move, eventually balance out the effects of gravity as well as inter-particle spring forces resulting in a rather smooth triangulation.

Practice

  • Experiment with other types of mesh creation primitives beyond the “mesh plane” component. For instance use the “mesh sphere” to create a tear drop vault.

  • Use the sum of forces information to produce color-coding data for each mesh vertex such as the force magnitude or even better the normal force per unit area.

>
>
>
>
71KB
6A_Vaults.gh
Inside the Setup(Sheet) cluster
Inside the Force Analysis cluster
Inside the Springs cluster
Inside the Display cluster