2022-03-21 12:03:15 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2022 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
|
2023-11-27 18:31:42 +11:00
|
|
|
import ifcopenshell.util.element
|
2022-03-21 12:03:15 +11:00
|
|
|
|
|
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
def remove_material_set(file, material=None) -> None:
|
|
|
|
|
"""Removes a material set
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
All set items, such as layers, profiles, or constituents will also be
|
|
|
|
|
removed. However, the materials and profile curves used by the layers,
|
|
|
|
|
profiles and constituents will not be removed.
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
:param material: The IfcMaterialLayerSet, IfcMaterialConstituentSet,
|
|
|
|
|
IfcMaterialProfileSet entity you want to remove.
|
|
|
|
|
:type material: ifcopenshell.entity_instance
|
|
|
|
|
:return: None
|
|
|
|
|
:rtype: None
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
Example:
|
2023-01-10 10:16:28 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
.. code:: python
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Create a material set
|
|
|
|
|
material_set = ifcopenshell.api.run("material.add_material_set", model,
|
|
|
|
|
name="GYP-ST-GYP", set_type="IfcMaterialLayerSet")
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Create some materials
|
|
|
|
|
gypsum = ifcopenshell.api.run("material.add_material", model, name="PB01", category="gypsum")
|
|
|
|
|
steel = ifcopenshell.api.run("material.add_material", model, name="ST01", category="steel")
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Add some layers
|
|
|
|
|
layer = ifcopenshell.api.run("material.add_layer", model, layer_set=material_set, material=gypsum)
|
|
|
|
|
layer = ifcopenshell.api.run("material.add_layer", model, layer_set=material_set, material=steel)
|
|
|
|
|
layer = ifcopenshell.api.run("material.add_layer", model, layer_set=material_set, material=gypsum)
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Completely delete the set and all layers. The gypsum and steel
|
|
|
|
|
# material still exist, though.
|
|
|
|
|
ifcopenshell.api.run("material.remove_material_set", model, material=material_set)
|
|
|
|
|
"""
|
2022-12-07 17:30:08 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
settings = {"material": material}
|
2022-03-21 12:03:15 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
inverse_elements = file.get_inverse(settings["material"])
|
|
|
|
|
if settings["material"].is_a("IfcMaterialLayerSet"):
|
|
|
|
|
set_items = settings["material"].MaterialLayers or []
|
|
|
|
|
elif settings["material"].is_a("IfcMaterialProfileSet"):
|
|
|
|
|
set_items = settings["material"].MaterialProfiles or []
|
|
|
|
|
elif settings["material"].is_a("IfcMaterialConstituentSet"):
|
|
|
|
|
set_items = settings["material"].MaterialConstituents or []
|
|
|
|
|
elif settings["material"].is_a("IfcMaterialList"):
|
|
|
|
|
set_items = []
|
|
|
|
|
for set_item in set_items:
|
|
|
|
|
file.remove(set_item)
|
|
|
|
|
file.remove(settings["material"])
|
|
|
|
|
for inverse in inverse_elements:
|
|
|
|
|
if inverse.is_a("IfcRelAssociatesMaterial"):
|
|
|
|
|
history = inverse.OwnerHistory
|
|
|
|
|
file.remove(inverse)
|
|
|
|
|
if history:
|
|
|
|
|
ifcopenshell.util.element.remove_deep2(file, history)
|
|
|
|
|
elif inverse.is_a("IfcMaterialProperties"):
|
|
|
|
|
for prop in inverse.Properties or []:
|
|
|
|
|
file.remove(prop)
|
|
|
|
|
file.remove(inverse)
|