Rhino – Grasshopper – Archicad Live Connection – Simple Example

Vimal Kumar
Graphisoft
Graphisoft

In this article I will be focusing on a simple example to demonstrate RH-GH-AC live connection, another wonderful OPEN BIM workflow from Graphisoft. We will start with an input from a Archicad (AC) file and based on that input a set of balconies will be created using Grasshopper (GH) which is running on top of Rhino (RH). There is not much use of RH but we need Rhino to run Grasshopper.

Initial Setup

Make sure all the three applications (AC, RH and GH) were installed along with live connection add-on from Graphisoft running.

Refer to Grasshopper Archicad Live Connection 2.3 User Guide from the following link:
Grasshopper-Archicad Live Connection 2.3 User Guide (Graphisoft.com)

Chapters to focus:

  1. Getting Started
  2. Launch the Applications
  3. Start the Connection
  4. Grasshopper Palette in Archicad

Grasshopper Help

To understand this exercise there is a need for basic understanding of Grasshopper. Please refer to the following links:
http://grasshopperprimer.com/en/1-foundations/1-1/2_the-grasshopper-ui.html
https://vimeopro.com/rhino/grasshopper-getting-started-by-david-rutten

Input from AC

  1. In Archicad create a simple building with 10 Story + Roof. Set the Story to Story height as 3000 mm. Create a Complex Profile for the railing as well. 
  2. Use Line tool to draw a line from point P1 to P2, suggest to draw the line in 2nd Storey.
  3. Select the line just drawn using the Arrow tool.

rga01.png

 

 

2D Curve in GH

Place a 2D Curve component in GH from the Archicad tab.

rga02.png

 

Link the AC Line to GH 2D Curve Parameter

  1. Right click on the 2D Curve component in GH and
  2. Choose Set one 2D Curve in Archicad from the context menu,
  3. Now the 2D Curve in GH and the Line in AC are connected.

rga03.png

 

Move the Starting Position

Move the starting position to one storey up to start the first balcony location from 2nd Storey. This might not be required in all scenarios.

  1. Place a Move component in GH. This component takes 2 inputs, 1st is the Geometry to move and the 2nd is the Motion (direction + distance) and transforms the given geometry by the given motion.

rga04.png

 

Place Unit Z component which outputs a unit vector in the Z direction. Vector data holds both direction and distance. Unit vector is with a distance of one unit.

rga05.png

 

Connect the Components

  1. Left click on the semi-circle next to the outputs and inputs of the components in a sequence to connect them. 1 to 2 and 3 to 4.

rga06.png

 

Unit Z component takes in an input Factor which multiplies the unit vector by the given input. Use the storey height (3000 mm) as the factor. Once done the vector will have the length as 3000 mm long and the direction as Z.

This can be done with a Panel component. Panel component is used because there will not be a drastic change in storey height and this will also be used in the later part of the solution. Right click on the panel component to rename it as Storey Height for the ease of identification.

rga07.png

 

Find the Unit Vector of the 2D Curve

Need to find the direction of the selected line (2D Curve) to decide the balcony orientation.

  1. Place End Points component which takes in Cure and extracts the Start point and End point
  2. Pass the points to Vector 2Pt This component will out put a vector from the points which has the length of the line.
  3. What we required is a unit vector. So, pass in a Boolean Toggle with the value set to True to the Unitize parameter to make the output vector as a unit vector.

rga08.png

 

Rotate the Vector

Need to rotate the vector to define the extrusion direction of the balcony. In addition make the rotation as parametric to allow design changes.

  1. Place a Rotate component and pass the vector output from the previous step.
  2. Place a Unit Z component (unit vector in Z direction) and pass it to the Axis parameter of Rotate component. This will act as an axis of rotation.
  3. Place a Control Knob component and pass it to the Angle parameter of Rotate component. This will allow to parametrically control the rotation of balcony extrusion.
  • Set the Min and Max as 0 and 90 respectively. This gives the users a range of 90 degree.

Click OK to finish the settings.

rga09.png

 

Right click on the Angle of the Rotate component to set to Degree. Default might not be degree.

rga10.png

 

Multiply the Vector by Balcony Width

This step is basically to add the width of the balcony as parameter to the solution. Need to multiply the vector by the width parameter.

  1. Place a Multiplication Pass the vector from the previous step to the A parameter.
  2. Place a Slider component, double click on the Slider to access it’s settings
  • Change the Name to Balcony Width for easy identification
  • Set the Rounding to N (Integer Number)
  • Set the Min and Max in the Numeric domain as 1000 and 2000 This gives the users a range of 1000 mm from 1000 mm to 2000 mm
  • Click OK to finish the settings.
  1. Pass the Slider’s output to B parameter of Multiplication component. Now the vector will have the distance as the balcony width.

rga11.png

 

Corner Points of the Balcony

Create 4 corner points of our balcony from the data created in the previous steps

  1. Place 4 X Point
  2. Connect the Start of End Points component to Corner Pt 1, End of End Points component to Corner Pt 2, move (3) the End of End Points component by Balcony Width (Slider + Multiplication) and connect to Corner Pt 3 and finally move (3) the Start of End Points component by Balcony Width (Slider + Multiplication) and connect to Corner Pt 4. The points will be in an anti-clockwise direction. Direction does not matter but make sure the points are in sequence.

rga12.png

 

Create PolyLine for the Balcony Slab and Railing

Create 2 X polyline, one for the balcony slab (must be closed) and another for the Railing or Parapet from the 4 corner points created in the previous step.

  1. Place Create Set
  2. Place PolyLine Pass the Set parameter of Create Set component to Vertices parameter of PolyLine component.
  3. Repeat this step for the slab polyline as well. In addition pass a True value with a Panel component to make the polyline closed.

Note: Please refer to previous steps on where to place Panel component from.

rga13.png

 

Pass the Points to the List parameter of the Create Set components. Please make sure of the points order. The order of the points is important as that will form the slab and railing correctly.

For Slab Cr Pt1, Cr Pt2, Cr Pt3 and Cr Pt4

For Railing Cr Pt2, Cr Pt3, Cr Pt4 and Cr Pt1

Note: Press Shift key in your keyboard to connect multiple output to single input of the components.

rga14.png

 

Array in Z Direction

Need to array the both the polylines vertically based on the number of storey and storey height.

  1. Place Linear Array component, pass the polyline to Geometry
  2. Place UnitZ component and multiply it by 3000mm (Storey Height). Pass the Result to the Direction parameter of Linear Array component. The slider for Storey Height shall have the Min as 2000mm and Max 3500mm.
  3. Place a Panel component, name it as Number of Storey. Add a value as 9 (based on the number of storey the building has) and pass it to Count parameter of Linear Array component.

Repeat the steps for the slab’s polyline.

Note: Please refer to previous steps on where to place UnitZ and Panel components from.

rga15.png

 

Create Slabs and Railings

  1. Place Wall
  2. Place Slab

Pass the Geometry created in the previous step to the Curve parameter of Wall and Slab.

rga16.png

 

In addition:

  1. Place WallSetP (Profile) and
  2. Place SlabSetB

Pass the Settings parameter of both to Settings parameter of respective elements.

rga17.png

 

Note: To get the profile for the wall right click on the WallSet() component and choose Complex Profile from the Structure menu.

rga18.png

 

Next:

  1. Place Building Material component and pass it to Building Material parameter of the SlabSetB
  2. Place Profile component and pass it to Profile parameter of the WallSetP

Note: Building Material and Profile will be read from the linked AC file. The railing profile must be created in AC before linking in this step. Please refer to the link to learn how to create a complex profile.

rga19.png

 

Reference

Refer to the following document to understand how other elements in AC can be created from GH:
Grasshopper-Archicad Live Connection 2.3 User Guide (Graphisoft.com)

Just a little Tweak…

  1. Place a Random Pass Number of Storey to its Number parameter, Pass a Integer value (Slider shall be used to change the value to try different offsets) and any integer value shall be passed to the Seed parameter (Panel component can be used).
  2. Right click on the Random component and choose Integer Numbers.
  3. Round off the number with the nearest value with the Round
  4. Multiply the value with -1 to make it negative as the balcony in each floor need to move inwards the building.
  5. Take the vector created initially from the line (input from AC) and multiply in with the random number.
  6. Insert Move component before the Slab and Wall in the solution. Pass the Result from the previous step to the Motion parameters of the Move component and pass the Geometry from the Linear Arrays to the Geometry of Move component. Take the Geometry output of Move component and pass it to the Curve input of Slab and Wall.

rga20.png

 

Result

rga21.png

 

Catch-up with everyone soon with another post…

Still looking?

Browse more articles

Back to articles

See latest solutions

Accepted solutions

Start a new discussion!