Building: Parametric modeling

1. Introduction:

This system is designated to parametrize frameworks of buildings. This kind of structures consist of repetitive components, for example columns, slabs and girders. Therefore, it would be a relief from that onerous work if models of framework can be automatically generated. The skeleton of this model is a node array with interconnected lines.

2. Design challenge, performance criteria and parameters:

Design challenge

The design challenge here is to realize an flexible model which can generate new parts with the configuration of scales and layouts. Based on that scope,  every scale should be computed based on given parameters, namely Building length, Building Hight, Building width, Span in X direction, Span in Y direction, Span in Z direction. The parameters is shown in the figure below.

Chart 1.  design parameters

snipaste_2022-02-13_16-07-30

To achieve that goal, it is not enough to use nodes in the Dynamo toolbox. As a result, python scripts are introduced to manipulate this high flexible structure. The node array, which is shown in the figure below, can be easily generated with a three-layer loop statement.snipaste_2022-02-13_16-14-33

Figure 1. node array

The next challenge is to draw inner lines based on the node array. It’s very intuitive to figure out that lines can be generated with matched points from opposite sides. However, the schemes of linking part will lead to different performances of the model.

  snipaste_2022-02-13_16-21-29             snipaste_2022-02-13_16-19-47

Figure 2. original scheme                                                  Figure 3. optimized scheme

Figure 2 shows the code in the 2nd assignment, which is simplistic in logics but  of substantial computation costs. The total computation number is

 snipaste_2022-02-13_16-28-29

Therefore, the model is very likely to freeze when the number of nodes is getting larger. While in the optimized version, this number is declined to

 snipaste_2022-02-13_16-30-29

Because paired points will be disposed, the times of computation is considerably decreased.

High Performance Criteria

The three high performance criteria are total stiffness, material usage and available space. To achieve a high ratio of available space, the components need to be slim while they undermine the stiffness of the building. The material usage also correlate to the total cost. Therefore, they are conflicted.

  • The total stiffness is computed by D value method, which is highly used in seismic analysis. snipaste_2022-02-13_17-06-18

Figure 4. Schematic of distributed shear force and moment

           The computation is simplified based on the analogous dimension of each span.

  • The material usage is computed by scales of each column, girder and slab with the fundamental parameters of the building.
  • The available space is computed by the difference between total space and the material usage.

All these parameters and geometries constitute this Dynamo BIM model.

3. Logic of the parametric model:

snipaste_2022-02-13_17-29-29

 

The logic of the parametric model is quite straight and simple. The model begins with an original point and axis on three directions. A node array is generated as explained in the above section. Lines are connected to form the skeleton of the structure. Building on that, scales of components are set up and the 3D shape are formed.

4. Discussing the design space:

As mentioned at the beginning of the introduction, engineers often have to do a tedious series of work to get a rough shape of the designed product. This model is capable to be used in rapid decision making, shaping the general sketch of the product with good visualization. The model is highly configurable so personalized requests can be obtained and satisfied.

export (2) by hyx666 on Sketchfab


To the Building Ontology:

Building: Ontological Modeling