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-05 14:22:18 +02:00
|
|
|
import ifcopenshell.api
|
|
|
|
|
|
2021-05-06 18:24:13 +10:00
|
|
|
|
2024-05-10 11:21:53 +05:00
|
|
|
def add_structural_load_case(
|
|
|
|
|
file: ifcopenshell.file, name: str = "Unnamed", action_type: str = "NOTDEFINED", action_source: str = "NOTDEFINED"
|
|
|
|
|
) -> ifcopenshell.entity_instance:
|
2024-05-06 14:35:39 +10:00
|
|
|
"""Adds a new load case, which is a collection of related load groups
|
2023-01-03 17:32:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
:param name: The name of the load case
|
|
|
|
|
:type name: str
|
|
|
|
|
:param action_type: Choose from EXTRAORDINARY_A, PERMANENT_G,
|
|
|
|
|
or VARIABLE_Q, taken from the Eurocode standard.
|
|
|
|
|
:type action_type: str
|
|
|
|
|
:param action_source: The source of the load case, such as DEAD_LOAD_G,
|
|
|
|
|
LIVE_LOAD_Q, TRANSPORT, ICE, etc. For the full list consult
|
|
|
|
|
IfcActionSourceTypeEnum in the IFC documentation.
|
|
|
|
|
:type action_source: str
|
|
|
|
|
:return: The new IfcStructuralLoadCase
|
|
|
|
|
:rtype: ifcopenshell.entity_instance
|
|
|
|
|
"""
|
2021-05-05 14:22:18 +02:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
load_case = ifcopenshell.api.run(
|
|
|
|
|
"root.create_entity",
|
|
|
|
|
file,
|
|
|
|
|
ifc_class="IfcStructuralLoadCase",
|
|
|
|
|
predefined_type="LOAD_CASE",
|
2024-05-10 11:21:53 +05:00
|
|
|
name=name
|
2024-05-06 14:35:39 +10:00
|
|
|
)
|
2024-05-10 11:21:53 +05:00
|
|
|
load_case.ActionType = action_type
|
|
|
|
|
load_case.ActionSource = action_source
|
2024-05-06 14:35:39 +10:00
|
|
|
return load_case
|