ifcopenshell.api.sequence.edit_work_time#

Module Contents#

class ifcopenshell.api.sequence.edit_work_time.Usecase(file, work_time=None, attributes=None)#

Edits the attributes of an IfcWorkTime

For more information about the attributes and data types of an IfcWorkTime, consult the IFC documentation.

Parameters
Returns

None

Return type

None

Example:

# Let's create a new calendar.
calendar = ifcopenshell.api.run("sequence.add_work_calendar", model)

# Let's start defining the times that we work during the week.
work_time = ifcopenshell.api.run("sequence.add_work_time", model,
    work_calendar=calendar, time_type="WorkingTimes")

# If we don't specify any recurring time periods in our work time,
# we need to specify a start and end date of the work time. It
# starts at 0:00 on the start date and 24:00 at the end date.
ifcopenshell.api.run("sequence.edit_work_time", model,
    work_time=work_time, attributes={"StartDate": "2000-01-01", "FinishDate": "2000-01-02"})
execute(self)#