ifcopenshell.api.sequence.remove_time_period
¶
Module Contents¶
- ifcopenshell.api.sequence.remove_time_period.remove_time_period(file: ifcopenshell.file, time_period: ifcopenshell.entity_instance) None ¶
Removes a time period
- Parameters:
time_period (ifcopenshell.entity_instance) – The IfcTimePeriod to remove.
- Returns:
None
- Return type:
None
Example:
# Let's create a new calendar. calendar = ifcopenshell.api.sequence.add_work_calendar(model) # Let's start defining the times that we work during the week. work_time = ifcopenshell.api.sequence.add_work_time(model, work_calendar=calendar, time_type="WorkingTimes") # We create a weekly recurrence pattern = ifcopenshell.api.sequence.assign_recurrence_pattern(model, parent=work_time, recurrence_type="WEEKLY") # State that we work from weekdays 1 to 5 (i.e. Monday to Friday) ifcopenshell.api.sequence.edit_recurrence_pattern(model, recurrence_pattern=pattern, attributes={"WeekdayComponent": [1, 2, 3, 4, 5]}) # The morning work session, lunch, then the afternoon work session. morning = ifcopenshell.api.sequence.add_time_period(model, recurrence_pattern=pattern, start_time="09:00", end_time="12:00") afternoon = ifcopenshell.api.sequence.add_time_period(model, recurrence_pattern=pattern, start_time="13:00", end_time="17:00") # Let's take the afternoon off! ifcopenshell.api.sequence.remove_time_period(model, time_period=afternoon)