File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -38,23 +38,11 @@ def equivalent_height(self: Profile):
38
38
return np .sqrt (self .cross_section .area * self .height / self .width )
39
39
40
40
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
-
47
41
@Profile .equivalent_width
48
42
def equivalent_width (self : Profile ):
49
43
return np .sqrt (self .cross_section .area * self .width / self .height )
50
44
51
45
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
-
58
46
@Profile .equivalent_rectangle
59
47
def equivalent_rectangle (self : Profile ):
60
48
return rectangle (self .equivalent_width , self .equivalent_height )
You can’t perform that action at this time.
0 commit comments