Generating Simulation Data from BIM Datasets

Tue Feb 06, 2018

One of the important uses of 3D models in the building information modeling (BIM) process is as inputs to analysis. There are many different areas of building analysis, the most obvious ones being structural analysis for static loads, for dynamic loading under winds, or the stress resulting from earthquakes.

More recently environmental issues have been getting more focused (green design is providing benefits not only in reducing the carbon footprint of a building but also its running costs). Government sponsorship for energy analysis has meant that there are several free packages available for download. I thought it would be interesting to try one and see how difficult it would be to use 3D geometric models to generate the inputs for a simulation.

The package, EnergyPlus, uses a text-based input file to describe the model and conditions to be analyzed. This file is read in and used to produce an Excel spreadsheet showing the requested outputs. Additionally, the program can produce a DXF model of the input, which is a nice touch to help visually verify the inputs. The input file describes the geometry of each object in the building as a set of four planar vertices representing the outside face of the object.

GeneratingSimulationData1.png

My task was to find the external face of each of the components that made up my 3D model and extract the coordinates of the four vertices. Each wall was defined as a rectangular profile extruded from the floor to the ceiling. The convention used was that the wall had its own coordinate system, with the origin at the lower vertex of the inside wall, with the X direction along the wall and the Y direction pointing towards the outside.

 

 

Once constructed the wall is transformed into the object space of the building. To get the external face of the wall, I had to find the centroid of the wall and fire a ray towards the outside — the resulting hit was an outside face. Not surprisingly this scheme almost worked, but I got a warning in the output

The Zone="ZONE ONE" is not fully enclosed

generating_siulation_data.jpg

When I looked at the DXF data for the simulation, this error was easy to diagnose. The outside faces of my model do not all meet up because the roof and the floor have additional side faces that are also external. To get around this issue, I could use the internal faces, but then I would feel cheated out of some of the volume of my house. Then it occurred to me that using the geometry of the objects as my inputs, I could simply unite the walls, floor and roof into a single geometric object. Then using my ray-firing technique on the combined model, this would find the exterior face for each wall. Now that the exterior faces meet the roof and floor, the building model is watertight. Sure enough, reworking the model cleared the warning message (see the images at the top of this blog for the final result).

 

In conclusion, I thought I would simply be querying the geometry to get the inputs for my simulation but was surprised that I needed to perform geometric operations as well to satisfy the input requirements for the analysis. The analysis package was straightforward to use for this very simple example, although I found that there were many other inputs I had not considered, such as layers of insulation. But additional components like heaters and air conditioners will have to be the subject for another time.

Learn More:

Subscribe to the D2D Blog

No Comments Yet

Let us know what you think