I am new to .NET xBim Toolkit and I wonder if it can help with calculating the volume of some objects in an IFC model. In particular, there is module called XbimGeometry but I am unsure if and how it could be used for this purpose. Or if it is just meant for graphics.
Can xBim toolkit help me calculate the volume of some objects in an IFC model?
205 Views Asked by oli At
1
There are 1 best solutions below
Related Questions in 3D
- Is there a way to import Collada files into Java?
- 3d mouse aim camera 3rd person vertical C#
- 3D B-Spline approximation
- MatLab 3-vector plot/mesh with colour-scale
- Matplotlib 3d: surface does not cover a line
- Draw a sphere on a billboard with world normal from a pointlist
- babylon skybox from hell
- Create histogram
- How to get accurate 3D depth from 2D screen mouse click for large scale object in OpenGL?
- Custom WhirlyGlobe Skin
- Converting 2D images to 3D
- How to setup camera to point at object
- Finding 3D coordinate of object
- MATLAB 3D sliding window on a volume
- How to check for collisions in ThreeJS?
Related Questions in IFC
- IFC - Representation of triangle mesh
- Compliance to a schema in neo4j
- How to represent IFC models on Android?
- How to export an IFC file of a high-rise based on each storey
- Xbim IFC Viewer ASP.NET
- Find out what is causing the ifc file to not complete importing
- How the Revit MEP Connector properties can be exported to IFC entity?
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- Autodesk Revit: IfcGUID for Rooms changes every time
- How to modify ifc file with xbim explorer
- XBIM - how to get rotation of an object (flowterminal)
- Compilation error when compiling IFC++ and TBB
- how to parse Industry Foundation Classes (IFC) files using perl or javascript?
- IFC express model parser in C#
- TypeError: string indices must be integers when using itemgetter with string argument
Related Questions in BIM
- external Ids exist in SQLlite file but not in model derivative API
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- BIM Model Performance in Forge
- BimServer 1.4 getModel always returns an empty model
- How to create a 3D view just like BimViews using Java?
- IfcOpenShell: Segfault when trying to return a dictionary containing ifcopenshell objects and their corresponding shapes
- how do you transfer a Revit property into openmodelica?
- IFC : IfcReinforcingBar example
- How to exclude door sweep from bounding box using revit API
- Ugly shading in Xbim
- BIM and IoT sensor integration
- How can I create a triangle mesh in an .ifc file from scratch in python?
- How to I extract only the lowest-level objects in Xbim?
- Ifc object with multiple colors
- How do I determine whether a 3D coordinate is located within the boundaries of a 3D object in BIM? I'm using Xbim working with IFC-files
Related Questions in XBIM
- Xbim web viewer
- Xbim IFC Viewer ASP.NET
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- How to modify ifc file with xbim explorer
- XBIM - how to get rotation of an object (flowterminal)
- How do you get IFCWindow sill height
- How to make a simple 3D Ifc Viewer in WPF with Xbim
- How to use Xbim in WPF to visualise an .IFC in 3D
- Get FinishFloorHeight of IfcSpace using Xbim
- IfcRoof won't work without own ShapeRepresentation
- Different results for the same code with different Ifc versions
- Get TotalThickness value of IFCWALL element
- Ugly shading in Xbim
- How to I extract only the lowest-level objects in Xbim?
- How do I determine whether a 3D coordinate is located within the boundaries of a 3D object in BIM? I'm using Xbim working with IFC-files
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes it can. In Xbim.Geometry v5.1 (the latest in develop/master) you can calculate the volume of some IFC geometry primitives.
Typically the Geometry Engine is used to create a Scene which is tessellated / meshed, but it can also be used to calculate more fundamental geometry data.
E.g. in this unit test you can see how to get the volume of a single IfcSweptDiskSolid object https://github.com/xBimTeam/XbimGeometry/blob/c1c22812601d0bd506c5f9230b731d0ab0c6e08a/Xbim.Geometry.Engine.Interop.Tests/IfcExtrudedAreaSolidTests.cs#L74
Clearly this is quite low level, and you'll need to account for voids (holes etc - using the Boolean cut capabilities in the engine), and account the many different geometry types (Sweeps, Breps, Extrusions etc). And remember this code above is a single geometric item that forms part of an Object and could be just one part of a entity's set of shapes. i.e. Objects are often represented by a composite of these individual representations.
i.e. this Window is made up of 4 separate representations:
This is just one object and items are much more complex.
So 'calculating the volume' may need a bit of clarifications.
Ultimately your actual answer will depend on what you want to do with the volume data. Do you want to do a material-based quantity take off? Do you just want the overall volume of an object (bear in mind that something like a Wall could have multiple materials and voids)? Do you want a bounding box volume?
There's quite a few improvements in the v6 Xbim.Geometry in this area so may be worth checking that netcore branch out. I believe there are some higher order implementations in that version.