FreeCAD/FreeCAD setting up a model for IFC export

From Wiki.OSArch
< FreeCAD
Revision as of 13:08, 26 May 2020 by Yorik (talk | contribs)

Read FreeCAD setup first to get FreeCAD and install everything you need.

FreeCAD being at its base a generic, non-BIM oriented modelling platform, it allows to model and organize your model pretty much the way you want, using not only the tools from the BIM workbench, but just any other tool provided by other FreeCAD workbenches.

FreeCAD is, however, a first-class IFC citizen, and unlike many commercial applications, allows a very high level of control of the IFC files you produce from it. Everything, from the model structure, objects names, tagging and classification, materials and IFC-specific properties is accessible and customizable.

When exporting to IFC, several best practices should be kept in mind. There are several IFC export-related options settable under menu Edit -> Preferences -> Import/Export -> IFC export, and the BIM workbench also features a Preflight tool that can help you detect possible issues in your model, prior to exporting.

  • Anything can be exported to IFC. Just select the objects you wish to export, or their top-level containers (group, building, level, site, project) then the use menu File -> Export -> Industry Foundation Classes.
  • The IFC standard require one IfcProject (or IfcProjectLibrary) in every IFC file. In FreeCAD, you can add a Project object yourself in your model, but if you don't, one will automatically be added to any IFC file exported from FreeCAD.
  • The IFC standard requires at least one building container (such as IfcBuilding or IfcBuildingStorey) to be present in your model. Usually, IFC files almost always contain one IfcSite, which contains one IfcBuilding and at least one IfcBuildingStorey. In FreeCAD, you can add yourself sites, buildings and levels (storeys), preferentially each part dragged into the former (and the site inside the project)
  • All building objects, such as walls or windows, should always be placed inside a building container.
  • If you don't follow the above structure, with the default IFC export options, all this structure will be added automatically to your IFC file on export, and all objects not inside a container will be added to one. In the IFC export options, however, you can disable all this, and export an IFC file that reflects exactly how you organized your model in FreeCAD. Note that this can lead to producing a non-standard IFC file (if you disable automatic structure creation and don't add your objects to a building container yourself. But at FreeCAD we believe this structure is not always necessary and it should be your right to decide if you need it or not, and should be able to export a file with just the objects and no building structure).
  • Only BIM objects have support for BIM types (wall, window, etc), IFC properties and materials. Any other FreeCAD object will be exported to IFC as a default IfcBuildingElementProxy, and you won't be able to change its type, add IFC properties to it or set its material.
  • Any non-BIM object can easily be converted to a BIM object using the turn to BIM component tool. The object will still be editable but it will gain all the IFC properties of other BIM objects.
  • If an object has a material, the material will be exported to IFC both as an IfcMaterial and IfcSurfaceStyle. If an object doesn't have a material, an IfcSurfaceStyle will be automatically be created from its color.
  • Most objects that are the result of an extrusion, such as walls, columns or simple extrusions will be stored as extrusions (IfcSweptAreaSolid, or IfcExtrudedAreaSolid) inside the IFC file. Any other object which cannot be described as a simple extrusion, will be stored as IfcFacetedBrep.
  • IfcOpenShell v0.6 onwards features a serializer able to create IfcAdvancedBrep objects, that can contain curved surfaces. if using the correct version, and the use of the serializer is turned on in the FreeCAD IFC export preferences, IfcAdvancedBrep objects will be created for objects that contain curved faces. Otherwise, they will be triangulated and exported as IfcFacetedBrep.
  • Any object with IFC type as Element Assembly, will be exported as an IfcElementAssembly, which allows it to contain other BIM objects. building parts (levels) are a convenient tool to use to create assemblies.
  • Some other BIM applications sometimes have limitations and specific requirements. The Preflight tool is able to notify you of several of them.