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?
208 Views Asked by oli At
1
There are 1 best solutions below
Related Questions in 3D
- Issues with a rotation gizmo and sign flips when converting back to euler angles
- coded one, but renderer renders two 3D models in three.js
- WorldToScreen function
- Sweep shape along 3D path in Python
- How to add another panel or window to the open3d.visualization.O3DVisualizer class? (In python open3d)
- How to estimate the memory size of a binary voxelized geometry?
- LibGDX Normal Textures Not Showing Up in 3D (Blender) Model Java
- A way to warp an image based on a map
- 3D surface won't show data on plotly
- Creating 3D python data from index sums of 2D data
- 3D graph in Rstudio (time vs intensity vs coefficient)
- Combining multiple plots with mayavi
- JavaFX 3D API does not work on all Android deivces
- Manual retargeting - How to compute target pose bone positions correctly?
- How do I dynamically change vertex colors using Direct3d 12 and Visual C++?
Related Questions in IFC
- openbim-components with node js
- How to make FragmentHighlighter to highlight an element with pure highlighter's color in openbim-components (IFCjs) + THREE.js
- openbim-components | OrthoPerspectiveCamera is slow/stuck when I zoom in the model
- IFC File, React, change elements color
- How Highlight IFC Model in Three.js with Raycasting
- Colorize, Transparent and Move Selected Entities on Xbim Control
- Set material only to one instance of the fragmentMesh class from Open Bim Components library / Three js
- Revit vb.net change IFC Parameter value
- Compilation error when compiling IFC++ and TBB
- XBIM - how to get rotation of an object (flowterminal)
- How to modify ifc file with xbim explorer
- Autodesk Revit: IfcGUID for Rooms changes every time
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- How the Revit MEP Connector properties can be exported to IFC entity?
- Find out what is causing the ifc file to not complete importing
Related Questions in BIM
- openbim-components with node js
- Open-bim-components - Global ID/Express ID from Selection
- Navisworks API selection null reference exception
- Applying rotation matrices from Open3D to objects in IFC OpenShell
- Revit Model Opening Automation
- Dynamo/ Revit Clash Detection
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- external Ids exist in SQLlite file but not in model derivative API
- Extracting external walls from an IFC file using the selector syntax in IFCOPENSHELL
- Facing Bad Request Issue when Creating A Model Set using AutoDesk API
- Is it possible to add custom properties to a translated SVF2 file via API or at Runtime in Forge?
- Repeated error when trying to run Admixture with .bed file
- How to create element with arbitrary shape using xbim toolkit?
- Problem in python script using ifcopenshell module
- From BIM model to Unity for VR
Related Questions in XBIM
- XBIM how to calculate boundingbox dimensions (X,Y) flowfitting
- Colorize, Transparent and Move Selected Entities on Xbim Control
- XBIM - how to get rotation of an object (flowterminal)
- How to modify ifc file with xbim explorer
- Can xBim toolkit help me calculate the volume of some objects in an IFC model?
- Xbim IFC Viewer ASP.NET
- Xbim web viewer
- Xbim library does not find all properties
- xbim distances between elements in a non axis aligned system
- How to create element with arbitrary shape using xbim toolkit?
- Ugly shading in Xbim
- How to get all the elements from the .ifc file?
- No IFC projects found in file in IFC file created by xbim toolkit
- Select IFC Physical Simple Quantity of Wall
- How to stop xBim IfcStore.Open() operation?
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 # Hahtags
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.