Files
IfcOpenShell/src/ifcopenshell-python/ifcopenshell/api/alignment/add_stationing_referent.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

130 lines
4.8 KiB
Python
Raw Normal View History

2025-07-08 10:09:14 -07:00
# IfcOpenShell - IFC toolkit and geometry engine
# Copyright (C) 2025 Thomas Krijnen <thomas@aecgeeks.com>
#
# This file is part of IfcOpenShell.
#
# IfcOpenShell is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# IfcOpenShell is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
2025-12-19 18:53:04 +05:00
import numpy as np
2025-07-08 10:09:14 -07:00
import ifcopenshell
import ifcopenshell.api.alignment
from ifcopenshell.api.alignment.update_fallback_position import update_fallback_position
2025-07-08 10:09:14 -07:00
import ifcopenshell.api.pset
2025-07-10 11:30:09 +05:00
import ifcopenshell.geom
2025-07-08 10:09:14 -07:00
import ifcopenshell.guid
2025-09-15 09:52:30 +05:00
import ifcopenshell.util.element
2025-07-10 11:30:09 +05:00
import ifcopenshell.util.unit
2025-12-19 18:53:04 +05:00
from ifcopenshell import entity_instance, ifcopenshell_wrapper
2025-07-08 10:09:14 -07:00
def add_stationing_referent(
file: ifcopenshell.file,
2025-08-29 12:48:03 -07:00
alignment: entity_instance,
2025-07-08 10:09:14 -07:00
distance_along: float,
station: float,
name: str,
2025-08-28 10:57:26 +05:00
positioned_product: entity_instance,
2025-07-08 10:09:14 -07:00
) -> entity_instance:
"""
2025-08-29 12:48:03 -07:00
Adds an IfcReferent to the alignment with the Pset_Stationing property set.
2025-07-08 10:09:14 -07:00
2025-08-29 12:48:03 -07:00
:param alignment: the alignment to receive the referent
:param distance_along: distance along the alignment basis curve
2025-07-08 10:09:14 -07:00
:param station: station value
:param name: name to assign to IfcReferent.Name, typically a stringized version of the station value
2025-08-28 10:57:26 +05:00
:param positioned_product: the product whose position is informed by the referent
2025-07-08 10:09:14 -07:00
:return: referent
Example:
.. code:: python
alignment = model.by_type("IfcAlignment")[0]
2025-08-29 12:48:03 -07:00
ifcopenshell.api.alignment.add_stationing_referent(model,alignment=alignment,distance_along=0.0,station=100.0)
2025-07-08 10:09:14 -07:00
"""
basis_curve = ifcopenshell.api.alignment.get_basis_curve(alignment)
2025-07-08 10:09:14 -07:00
object_placement = None
representation = None
if basis_curve and basis_curve.is_a("IfcCompositeCurve") and 0 < len(basis_curve.Segments):
2025-07-08 10:09:14 -07:00
object_placement = file.createIfcLinearPlacement(
RelativePlacement=file.createIfcAxis2PlacementLinear(
Location=file.createIfcPointByDistanceExpression(
DistanceAlong=file.createIfcLengthMeasure(distance_along),
OffsetLateral=None,
OffsetVertical=None,
OffsetLongitudinal=None,
BasisCurve=basis_curve,
)
),
)
update_fallback_position(file, object_placement)
else:
object_placement = file.createIfcLocalPlacement(
PlacementRelTo=None,
RelativePlacement=file.createIfcAxis2Placement2D(
Location=file.createIfcCartesianPoint(alignment.ObjectPlacement.RelativePlacement.Location.Coordinates)
),
2025-08-29 12:48:03 -07:00
)
2025-08-29 14:37:17 -07:00
2025-07-08 10:09:14 -07:00
# this commented out code is what you would do to add a geometric representation of the referent
# the example is a circle. a better way would be to pass a representation into the function
# representation = file.create_entity(
# name="IfcCircle",
# position=file.createIfcAxis2Placement2D(Location=file.createIfcCartesianPoint(Coordinates=(0.0, 0.0)),
# radius=1.0)
# )
# create referent for the station
referent = file.createIfcReferent(
GlobalId=ifcopenshell.guid.new(),
OwnerHistory=None,
Name=name,
Description=None,
ObjectType=None,
ObjectPlacement=object_placement,
Representation=representation,
2025-08-29 12:48:03 -07:00
PredefinedType="STATION",
2025-07-08 10:09:14 -07:00
)
pset_stationing = ifcopenshell.api.pset.add_pset(file, product=referent, name="Pset_Stationing")
ifcopenshell.api.pset.edit_pset(file, pset=pset_stationing, properties={"Station": station})
2025-08-29 12:48:03 -07:00
nest = ifcopenshell.api.alignment.get_referent_nest(file, alignment)
if nest is None:
nest = file.createIfcRelNests(
GlobalId=ifcopenshell.guid.new(), RelatingObject=alignment, RelatedObjects=(referent,)
)
else:
nest.RelatedObjects += (referent,)
2025-07-08 10:09:14 -07:00
2025-08-29 14:37:17 -07:00
nest.RelatedObjects = sorted(
nest.RelatedObjects, key=lambda x: ifcopenshell.util.element.get_pset(x, name="Pset_Stationing", prop="Station")
)
2025-08-29 12:48:03 -07:00
2025-08-27 11:32:25 -07:00
if len(referent.Positions) == 0:
2025-07-08 10:09:14 -07:00
rel_positions = file.createIfcRelPositions(
GlobalId=ifcopenshell.guid.new(),
2025-08-27 11:32:25 -07:00
RelatingPositioningElement=referent,
2025-07-08 10:09:14 -07:00
RelatedProducts=[
2025-08-27 11:32:25 -07:00
positioned_product,
2025-07-08 10:09:14 -07:00
],
)
else:
2025-08-27 11:32:25 -07:00
referent.Positions[0].RelatedProducts += (positioned_product,)
2025-07-08 10:09:14 -07:00
return referent