Skip to content

Commit 700c144

Browse files
committed
remove equivalent rectangle cycle hooks
1 parent 2ef1dae commit 700c144

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

pyroll/core/profile/hookimpls.py

-12
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,11 @@ def equivalent_height(self: Profile):
3838
return np.sqrt(self.cross_section.area * self.height / self.width)
3939

4040

41-
@Profile.equivalent_height
42-
def equivalent_height(self: Profile):
43-
if self.has_set_or_cached("equivalent_rectangle"):
44-
return self.equivalent_rectangle.height
45-
46-
4741
@Profile.equivalent_width
4842
def equivalent_width(self: Profile):
4943
return np.sqrt(self.cross_section.area * self.width / self.height)
5044

5145

52-
@Profile.equivalent_width
53-
def equivalent_width(self: Profile):
54-
if self.has_set_or_cached("equivalent_rectangle"):
55-
return self.equivalent_rectangle.width
56-
57-
5846
@Profile.equivalent_rectangle
5947
def equivalent_rectangle(self: Profile):
6048
return rectangle(self.equivalent_width, self.equivalent_height)

0 commit comments

Comments
 (0)