Files
IfcOpenShell/src/ifcopenshell-python/ifcopenshell/api/owner/add_actor.py
T

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

71 lines
2.7 KiB
Python
Raw Normal View History

2022-02-04 17:56:45 +11:00
# IfcOpenShell - IFC toolkit and geometry engine
# Copyright (C) 2022 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/>.
import ifcopenshell
import ifcopenshell.api.root
2024-05-13 12:27:53 +05:00
from typing import Literal
2022-02-04 17:56:45 +11:00
2024-06-27 14:07:48 +05:00
ACTOR_TYPE = Literal["IfcActor", "IfcOccupant"]
2024-05-13 12:27:53 +05:00
def add_actor(
file: ifcopenshell.file,
actor: ifcopenshell.entity_instance,
2024-06-27 14:07:48 +05:00
ifc_class: ACTOR_TYPE = "IfcActor",
2024-05-13 12:27:53 +05:00
) -> ifcopenshell.entity_instance:
"""Adds a new actor
2022-12-14 15:58:31 +11:00
An actor is a person or an organisation who has a responsibility or role
to play in a project. Actor roles include design consultants,
architects, engineers, cost planners, suppliers, manufacturers,
warrantors, owners, subcontractors, etc.
2022-12-14 15:58:31 +11:00
Actors may either be project actors, who are responsible for the
delivery of the project, or occupants, who are responsible for the
consumption of the project.
2022-12-14 15:58:31 +11:00
Identifying and managing actors is critical for asset management, and
identifying liability for legal submissions.
2022-12-14 15:58:31 +11:00
:param actor: Most commonly, an IfcOrganization (in compliance with GDPR
requirements for non personally identifiable information), or an
IfcPerson if it is a sole individual, or an IfcPersonAndOrganization
if a specific person is liable within an organisation and must be
legally nominated.
:param ifc_class: Either "IfcActor" or "IfcOccupant".
:return: The newly created IfcActor or IfcOccupant
2022-12-14 15:58:31 +11:00
Example:
2023-01-10 10:16:28 +11:00
.. code:: python
2022-12-14 15:58:31 +11:00
# Setup an organisation with a single role
organisation = ifcopenshell.api.owner.add_organisation(model,
identification="AWB", name="Architects Without Ballpens")
role = ifcopenshell.api.owner.add_role(model, assigned_object=organisation, role="ARCHITECT")
2022-12-14 15:58:31 +11:00
# Assign that organisation to a newly created actor
actor = ifcopenshell.api.owner.add_actor(model, actor=organisation)
"""
2025-03-14 10:43:47 +05:00
ifc_class = ifc_class or "IfcActor"
actor_ = ifcopenshell.api.root.create_entity(file, ifc_class=ifc_class)
actor_.TheActor = actor
return actor_