mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
81 lines
3.1 KiB
Python
81 lines
3.1 KiB
Python
# 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/>.
|
|
|
|
import ifcopenshell.api.root
|
|
import ifcopenshell.api.project
|
|
import ifcopenshell.api.owner.settings
|
|
import ifcopenshell.util.date
|
|
from datetime import datetime, time
|
|
from typing import Optional, Union
|
|
|
|
|
|
def add_work_plan(
|
|
file: ifcopenshell.file,
|
|
name: Optional[str] = None,
|
|
predefined_type: str = "NOTDEFINED",
|
|
start_time: Optional[Union[str, time]] = None,
|
|
) -> ifcopenshell.entity_instance:
|
|
"""Add a new work plan
|
|
|
|
A work plan is a group of work schedules. Since work schedules may have
|
|
different purposes, such as for maintenance or construction scheduling,
|
|
baseline comparison, or phasing, work plans can be used to group related
|
|
work schedules. At a minimum, it is recommended to use work plans to
|
|
indicate whether the work schedules are for facility management or for
|
|
construction scheduling.
|
|
|
|
:param name: The name of the work plan. Recommended to be "Maintenance"
|
|
or "Construction" for the two main purposes.
|
|
:param predefined_type: The type of work plan, used for baselining.
|
|
Leave as "NOTDEFINED" if unsure.
|
|
:param start_time: The earliest start time when the schedules grouped
|
|
within the work plan are relevant.
|
|
:return: The newly created IfcWorkPlan
|
|
|
|
Example:
|
|
|
|
.. code:: python
|
|
|
|
# This will hold all our construction schedules
|
|
work_plan = ifcopenshell.api.sequence.add_work_plan(model, name="Construction")
|
|
|
|
# This is one of our schedules in our work plan.
|
|
schedule = ifcopenshell.api.sequence.add_work_schedule(model,
|
|
name="Construction Schedule A", work_plan=work_plan)
|
|
"""
|
|
start_time = start_time or datetime.now()
|
|
work_plan = ifcopenshell.api.root.create_entity(
|
|
file,
|
|
ifc_class="IfcWorkPlan",
|
|
predefined_type=predefined_type,
|
|
name=name,
|
|
)
|
|
work_plan.CreationDate = ifcopenshell.util.date.datetime2ifc(datetime.now(), "IfcDateTime")
|
|
user = ifcopenshell.api.owner.settings.get_user(file)
|
|
if user:
|
|
work_plan.Creators = [user.ThePerson]
|
|
work_plan.StartTime = ifcopenshell.util.date.datetime2ifc(start_time, "IfcDateTime")
|
|
|
|
context = file.by_type("IfcContext")[0]
|
|
ifcopenshell.api.project.assign_declaration(
|
|
file,
|
|
definitions=[work_plan],
|
|
relating_context=context,
|
|
)
|
|
return work_plan
|