-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Description
To support the Occupant Movement Analysis (OMA) framework, we need to bifurcate our IFC parsing logic. The engine must distinguish between Static Geometry (navigation surfaces) and Occupancy Data (population parameters) as defined by the OMA IDS schema.
What is IDS
1. Geometry & Topology Layer
This layer defines the "Navigation Graph" using IFC entities for physical pathfinding.
- IfcDoor / IfcWindow: Extract
OverallWidthandLocationto generate JuPedSim Checkpoint polygons. - IfcSpace Connectivity: Use
IfcRelSpaceBoundaryto infer the topological links between rooms. - Vertical Circulation: Map
IfcStairandIfcRampas specific circulation zones with rise/run attributes.
2. Occupancy & Behavioral Layer
This layer populates the geometry with simulation-ready data based on the OMA IDS classification.
-
Space-Level Attributes: - Occupancy Type: Map usage (e.g., "Office," "Assembly") to define agent behavioral profiles.
-
Design Load: Extract the "Occupant Load Factor" (persons/) or "Design Occupant Load" to automatically spawn agent populations.
-
Egress Classification: Identify spaces as "Egress Paths," "Refuge Areas," or "Final Exits".
-
Door Constraints: Map "Egress Function" (e.g., normally locked, emergency exit only) to determine if a Checkpoint is available in the navigation graph.
Technical Tasks
-
XML Parser Integration: Utilize the OMA IDS XML to validate that every
IfcSpacehas a required occupancy count before simulation start. -
JuPedSim Mapping:
-
Geometry maps to Thin Polygons (Checkpoints) and Boundaries.
-
Occupancy maps to Agent Source Terms (spawners).
-
Validation Log: Generate a report if geometry exists without corresponding occupancy data (e.g., an empty room).
Acceptance Criteria
- Loading an IFC file creates the full 2D/3D geometry and automatically populates it with agents based on the
OccupantLoadproperty. - The user can toggle between "Geometric View" and "Occupancy Heatmap" (showing intended densities per OMA IDS).
- Checkpoints correctly inherit "Egress Function" metadata from their parent
IfcDoor.