ifcopenshell.api.system.remove_system
¶
Module Contents¶
- ifcopenshell.api.system.remove_system.remove_system(file: ifcopenshell.file, system: ifcopenshell.entity_instance) None ¶
Removes a distribution system
All the distribution elements within the system are retained.
- Parameters:
system (ifcopenshell.entity_instance) – The IfcSystem to remove.
- Returns:
None
- Return type:
None
Example:
# A completely empty distribution system system = ifcopenshell.api.system.add_system(model) # Delete it. ifcopenshell.api.system.remove_system(model, system=system)