2022-01-19 12:18:33 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.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/>.
|
|
|
|
|
|
2021-05-07 18:41:03 +10:00
|
|
|
import ifcopenshell.api
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Usecase:
|
2023-01-03 17:32:08 +11:00
|
|
|
def __init__(
|
|
|
|
|
self,
|
|
|
|
|
file,
|
|
|
|
|
ifc_class="IfcStructuralPlanarAction",
|
|
|
|
|
predefined_type="CONST",
|
|
|
|
|
global_or_local="GLOBAL_COORDS",
|
|
|
|
|
applied_load=None,
|
|
|
|
|
structural_member=None,
|
|
|
|
|
):
|
|
|
|
|
"""Adds a new structural activity
|
|
|
|
|
|
|
|
|
|
A structural activity is either a structural action or a reaction. It
|
|
|
|
|
may be applied to a point, a curve, or a planar surface, and may be a
|
|
|
|
|
constant load, linear, etc.
|
|
|
|
|
|
|
|
|
|
The activity must be defined using an applied load, and associated with
|
|
|
|
|
a structural member.
|
|
|
|
|
|
|
|
|
|
:param ifc_class: Choose from any subtype of IfcStructuralActivity.
|
|
|
|
|
:type ifc_class: str
|
|
|
|
|
:param predefined_type: View the IFC documentation for what valid
|
|
|
|
|
predefined types may be chosen.
|
|
|
|
|
:type predefined_type: str
|
|
|
|
|
:param global_or_local: The location coordinates of the load is always
|
|
|
|
|
defined locally relative to the structural member the activity is
|
|
|
|
|
assigned to. However, the directions of the applied load may either
|
|
|
|
|
be specified globally or locally depending on how this argument is
|
|
|
|
|
set. Choose from GLOBAL_COORDS or LOCAL_COORDS.
|
|
|
|
|
:type global_or_local: str
|
|
|
|
|
:param applied_load: The IfcStructuralLoad that is applied in this
|
|
|
|
|
activity.
|
|
|
|
|
:type applied_load: ifcopenshell.entity_instance.entity_instance
|
|
|
|
|
:param structural_member: The IfcStructuralMember that the load is
|
|
|
|
|
applied to.
|
|
|
|
|
:type structural_member: ifcopenshell.entity_instance.entity_instance
|
|
|
|
|
:return: The newly created entity based on the ifc_class
|
|
|
|
|
:rtype: ifcopenshell.entity_instance.entity_instance
|
|
|
|
|
"""
|
2021-05-07 18:41:03 +10:00
|
|
|
self.file = file
|
|
|
|
|
self.settings = {
|
2023-01-03 17:32:08 +11:00
|
|
|
"ifc_class": ifc_class,
|
|
|
|
|
"predefined_type": predefined_type,
|
|
|
|
|
"global_or_local": global_or_local,
|
|
|
|
|
"applied_load": applied_load,
|
|
|
|
|
"structural_member": structural_member,
|
2021-05-07 18:41:03 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
activity = ifcopenshell.api.run(
|
|
|
|
|
"root.create_entity",
|
|
|
|
|
self.file,
|
|
|
|
|
ifc_class=self.settings["ifc_class"],
|
|
|
|
|
predefined_type=self.settings["predefined_type"],
|
|
|
|
|
)
|
2021-05-13 18:04:50 +10:00
|
|
|
activity.AppliedLoad = self.settings["applied_load"]
|
2021-05-07 18:41:03 +10:00
|
|
|
activity.GlobalOrLocal = self.settings["global_or_local"]
|
|
|
|
|
|
|
|
|
|
rel = ifcopenshell.api.run("root.create_entity", self.file, ifc_class="IfcRelConnectsStructuralActivity")
|
|
|
|
|
rel.RelatingElement = self.settings["structural_member"]
|
|
|
|
|
rel.RelatedStructuralActivity = activity
|
|
|
|
|
return activity
|