ifcopenshell.api.sequence.edit_recurrence_pattern

Module Contents

ifcopenshell.api.sequence.edit_recurrence_pattern.edit_recurrence_pattern(file, recurrence_pattern=None, attributes=None) None

Edits the attributes of an IfcRecurrencePattern

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

Parameters:
  • recurrence_pattern (ifcopenshell.entity_instance) – The IfcRecurrencePattern entity you want to edit

  • attributes (dict, optional) – a dictionary of attribute names and values.

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")

# We create a weekly recurrence
pattern = ifcopenshell.api.run("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.run("sequence.edit_recurrence_pattern", model,
    recurrence_pattern=pattern, attributes={"WeekdayComponent": [1, 2, 3, 4, 5]})