Application of Graph Databases and Graph Theory Concepts For Advanced Analysing of BIM Models Based On IFC Standard Presentation
Application of Graph Databases and Graph Theory Concepts For Advanced Analysing of BIM Models Based On IFC Standard Presentation
Scherer
Motivation
Objectives
Workflow for automatic transformation of IFC
EXPRESS schema and IFC models into IFC Meta
and Object Graph databases
Utilizing graph theory concepts to explore, manage
and analyse all information inside BIM models by:
Demo:
http://ifcwebserver.org/ifc2neo4j
Neo4j features
Cypher Graph Query Language
Cypher is a declarative graph query language that allows for expressive
and efficient querying and updating of a property graph. Cypher is a
relatively simple but still very powerful language. Very complicated
database queries can easily be expressed through Cypher
Labeled Property Graphs
The labeled property graph model consists of a set of nodes and edges
(relationships) . An edge is always related to exactly two nodes with a fixed
direction from a start to an end node, defining the property graph as a directed
graph. Apart from that, two nodes can be connected by multiple edges at the
same time, thus being a multigraph. Both, nodes and edges, can store a set of
key-value pairs, called properties and nodes can be tagged with labels additionally.
IFC Meta Graph (IMG) model
IFC classes
Attributes
Relationships
IFC Meta Graph (IMG) model
Mapping mechanism
Mapping mechanism
Optional= true
IFC Meta Graph (IMG) model
MATCH (a:IfcRoot{Version:'IFC2x3'})-[r*]-(b:IfcSlab)
RETURN r
Outcomes
IFC Object Graph (IOG) models
BIM Software -> IFC -> IFCWebserver -> Cypher -> Graph DB
(2) Generate DB
IFC Object Graph (IOG) models
Multi-models graph DB
Multi-labelled nodes
IFC Object Graph (IOG) models
Verification of graph
database
Evaluation of graph
capabilities
Topology analysis
Filters and Queries
Verification of Graph DB
IFC class types and entity list
MATCH (n {Model: 'Muster003.ifc'})
WITH DISTINCT LABELS (n) AS LABELS, COUNT (n) AS
temp
Cypher command UNWIND LABELS AS Class_name
RETURN DISTINCT Class_name, SUM (temp) AS
Number_of_entities
ORDER BY Class_name
Class_name Number_of_entities
IfcApplication 1
IfcArbitraryOpenProfileDef 57
IfcAxis2Placement2D 33
Outcomes
IfcAxis2Placement3D 153
IfcBuilding 1
IfcBuildingStorey 1
IfcCartesianPoint 2534
…………… ………
Filters and Queries
Unconnected nodes
Number_of_unconnected_enti
Class_name
ties
IfcDerivedUnit 2
IfcMaterial 3
Outcomes
IfcPresentationLayerAssignment 4
IfcPresentationStyleAssignment 16
IfcProductRepresentation 9
Filters and Queries
Outcomes
Filters and Queries
MATCH
(d: IfcDoor {Model: 'Muster003.ifc‘, globalId:xyz})-[*1..5]-(m: IfcMaterial)
RETURN DISTINCT (m.IFCID) AS IFCID, (m.name) AS material_name
Filters and Queries
MATCH p=(s1:IfcSpace)-
[r1:BoundedBy]-
(d:IfcDoor)-
[r2:BoundedBy]-
(s2:IfcSpace)
WHERE s1.IFCID >
s2.IFCID
RETURN p
Filters and Queries
MATCH p=(s1:IfcSpace)
<-[r1:RelatingSpace]-
(b:IfcRelSpaceBoundary)
-[r2:RelatingSpace]-
>(s2:IfcSpace)
WHERE s1.IFCID >
s2.IFCID
RETURN p
Filters and Queries
Slide 24 of 40
Filters and Queries
Slide 25 of 40
Filters and Queries
‘Office_A’ model-Neo4j
Slide 26 of 40
Filters and Queries
Week 26 Week 27
Week 28
https://github.com/openBIMstandards/DataSetSchependomlaan
Find out the new windows installed in the Week37 compared with the
Week30
Filters and Queries
Discussion and conclusion
Achievements
Generic approaches
Cypher queries
Pre-defined queries
Outlook
Questions ?
e-mail: ali.ismail@tu-dresden.de