Monday 20 February 2017

Dynamo to Generate Wind Loads in Revit

Dynamo-to-Generate-Wind-Loads-in-Revit---thumb2

High winds can be very destructive because they generate pressure against the surface of a structure. In structural engineering we call the intensity of this pressure the wind load. The effect of the wind is dependent upon the size and shape of the structure. Calculating wind load is necessary for the design and construction of safer and more wind-resistant buildings.

Effect of the wind

In Revit, depending on the load duration and type, different natures of loads can be created (dead, live, wind, etc.). Structural engineers can add, delete and modify parameters of any defined load case.

Load Cases

Load Cases 2

Then various types of loads (nodal, linear, planar) can be applied to a structure and assigned to previously defined load cases.

Loads

Recently when I was applying wind loads to my structure I needed to add them to over 70 structural beams—and this was only for one building elevation! That means a lot of clicks and my finger was getting tired. Moreover, because the building stories each had different heights, on each floor I had to have different wind load values and I needed to calculate the right load distribution to beams for each instance.

001

This is a common problem for many structural engineers, and in cases like this it is possible to find the right tools at the right time to aid in the structural design process.  Robot Structural Analysis Professional provides the Cladding tool for applying loads and helping to streamline the process. The Cladding tool is an auxiliary object used to define loads.  Structural Engineers can take advantage of cladding when generating bar loads from planar objects and snow/wind loads in 3D geometry. This tool is very productive and it saves a lot of time when working on the analytical model.

In Revit there are not built-in native tools which would help us generate such loads. These wind loads need to be distributed/calculated and applied manually which can be a very tedious process and prone to errors.

Knowing the tools available to me in Robot and Revit, I started thinking how I could improve applying wind loads in Revit for this particular project and future ones.

This is an instance where Dynamo for Revit comes in handy.

I made two assumptions:

  • Wind load pressure is constant along a height of a building and linear load values should be calculated automatically based on the building’s geometry.
  • Linear wind loads should be added to the analytical model automatically. They should be also assigned to the appropriate load case.

I ended up with a Dynamo script with the following input parameters:

  • List of analytical elements selected in Revit
  • Wind load pressure value [N/m2]
  • Revit load case (ID number)

Input

In my script before I start adding loads to the model I need to calculate their appropriate values.

First I filter out elements I select. In my Revit window selection I can have beams and columns but because I will be generating loads only on structural beams I need to have analytical beams objects kept in my list of analytical elements only.

Filter Elements

Visual programming has many advantages. It allows you to create programs without learning special syntax in an intuitive visual interface. However, a visual program sometimes can become cluttered, and can at times fall short in functionality.

Python offers much more achievable methods for writing conditional statements (if/then) and looping. Python is a powerful tool that can extend the capabilities of Dynamo and allow you to replace many nodes with a few concise lines of code.

Like code blocks, Python nodes are a scripting interface within a visual programming environment. The Python node can be found under Core>Scripting in the library.

Python Script Node

Double clicking the node opens the python script editor (you can also right click on the node and select Edit…).

This short Python script allows me to filter out the selected elements.

Scrpt01

Next I convert analytical model sticks to curves.

Convert Analytical Model Sticks to Lines

Then I need to find Z-coordinates of the selected elements and create a sorted list of unique Z coordinates. It gives me a list of levels where my structural beams are defined.

Scrpt02

Levels

Associate Levels to Analytical Model Sticks.

Scrpt03

Assign Levels to Analytical Model Sticks

Associate Load Distribution Distances to Levels

Scrpt04

Assign Load Distribution Distances to Levels

 

Next script associates load distribution distances to analytical beams.

Scrpt05

With such defined two output lists I am ready to start applying loads to the analytical elements.

You are probably wondering which Dynamo nodes we can use to create structural loads in Revit… Actually Dynamo does not have such nodes but we can do it using the Revit API.

Adding Loads

Now that I have demonstrated how to use Python scripts in Dynamo, let’s take a look at connecting Revit libraries into the scripting environment. To import the Revit nodes, Revit elements, and the Revit document manager, I only have to add a few more lines.

Scrpt06-0

This gives me access to the Revit API and offers custom scripting for any Revit task. By combining the process of visual programming with Revit API scripting, collaboration and tool development improve significantly.

OK – Now it’s time to create some wind loads and apply them to appropriate elements and the load case. The below script demonstrates ways how to implement Revit-specific operations from Dynamo using Python.

Scrpt06-1

 

The only thing left to do is to run this Dynamo script and see results in Revit 🙂

Results

With this solution you can quickly apply loads to your structural elements. Watch the Dynamo script in action:

Learn more on structural analysis in Revit:

5 great features in Structural Analysis for Revit

@tomekf

The post Dynamo to Generate Wind Loads in Revit appeared first on BIM and Beam.



from my Autodesk source Bim & Beam: BIM and Beam at http://blogs.autodesk.com/bim-and-beam/2017/02/20/dynamo-to-generate-wind-loads-in-revit/
via IFTTT

No comments:

Post a Comment