Skip to content

Generating Simulation Data from BIM Datasets

David Hornsby | 06-02-2018

One of the important uses of 3D models in the building information modeling (BIM) process is as inputs to building analysis.

generating_siulation_data
Hexagon pattern 1

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:

You might also like...

5 Min read
CGM Modeler
Software components are like the stage crew at a big concert performance: the audience doesn’t see them, but their...
Application Lifecycle Management Flow
4 Min read
CGM Modeler
When you hear the term, Application Lifecycle Management (ALM), you likely think about the process that a software...
8 Min read
CGM Modeler
What is Computer Aided Manufacturing The CAM Market Who Uses CAM Software? Trends in CAM What do CAM Software...
8 Min read
CGM Modeler
There’s a lot of confusion around what the terms additive manufacturing and 3D printing mean.
4 Min read
3D Modeling
Additive manufacturing, often referred to as 3D printing, is a computer-controlled process for creating 3D objects.
7 Min read
3D InterOp
Table of Contents Why industrial automation is important Advantages and Disadvantages of Industrial Automation The...
5 Min read
CGM Modeler
Computational Fluid Dynamics (CFD) is a type of analysis that provides insight into solving complex problems, and...
2 Min read
CGM Modeler
WRL files are an extension of the Virtual Reality Modeling Language (VRML) format . VRML file types enable browser...
Voxel model example
3 Min read
CGM Modeler
Voxels are to 3D what pixels are to 2D. Firstly -- let’s examine what pixels actually are. Everything you see on your...
Point_cloud_torus
2 Min read
CGM Modeler
Point-cloud modeling is typically used in the process of 3D scanning objects. Rather than defining surfaces through...
Polygonal Modeling
2 Min read
CGM Modeler
Polygonal (or polyhedral) modeling is the most common type of modeling for video games and animation studios. This type...
aerodynamics-CFD
9 Min read
CGM Modeler
Computational fluid dynamics (CFD) is a science that uses data structures to solve issues of fluid flow -- like...
BREP Model example
2 Min read
CGM Modeler
BRep modeling, or Boundary Representation modeling, is, in CAD applications, the most common type of modeling. BRep is...
Feature Recognition Zoomed
5 Min read
CGM Modeler
IN THIS ARTICLE: What is FEA (Finite Element Analysis) Principles of Finite Element Analysis and Simulation Software A...
3YourMind and Spatial
3 Min read
3D Modeling
As manufacturers begin to rely more and more on additive manufacturing (AM), moving from a few select piece parts that...
Voxeldance and Spatial
2 Min read
3D InterOp
To the uninitiated, 3D printing may seem a simple process — download your CAD file and hit print. But the world of...
6 Min read
3D Interoperability
The increased use of mobile devices in engineering processes has the interesting side effect of requiring the...
missing_triangles.png
3 Min read
3D Interoperability
When coming from a standard format, very often that data has to be repaired or improved, and Spatial does that as part...