2021-03-19 10:55:52 +11:00
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-03-19 10:55:52 +11:00
|
|
|
self.file = file
|
2021-06-20 20:57:12 +02:00
|
|
|
self.settings = {"connection": None, "boundary_condition": None}
|
2021-03-19 10:55:52 +11:00
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
2021-06-20 20:57:12 +02:00
|
|
|
if self.settings["connection"]:
|
|
|
|
|
# remove boundary condition from a connection
|
|
|
|
|
if not self.settings["connection"].AppliedCondition:
|
|
|
|
|
return
|
|
|
|
|
if len(self.file.get_inverse(self.settings["connection"].AppliedCondition)) == 1:
|
|
|
|
|
self.file.remove(self.settings["connection"].AppliedCondition)
|
|
|
|
|
self.settings["connection"].AppliedCondition = None
|
|
|
|
|
else:
|
|
|
|
|
# remove the boundary condition
|
|
|
|
|
for conn in self.file.get_inverse(self.settings["boundary_condition"]):
|
|
|
|
|
conn.AppliedCondition = None
|
|
|
|
|
self.file.remove(self.settings["boundary_condition"])
|