-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
144 lines (124 loc) · 4.01 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
from handcalcs.decorator import handcalc
import forallpeople as si
import math
@handcalc()
def debit(area: float, n: float, ir=float) -> float:
"""
calculates the debit of rainwater with the constant ir:5*10-5 from NEN1991-1-1-3 table NB 1
area is in m^2, and n is the number of overloads per area.
"""
ir=5*10**-5
Qhi = (area * ir) / n
return Qhi
@handcalc()
def waterheight(width_overload: float, Qhi: float) -> float:
"""
calculates the waterheight above the overload
with the debit and overload width in mm.
"""
Dndi=0.7 * ((Qhi / (width_overload/1000)) ** (2/3))*10**3
return Dndi
@handcalc()
def water_above_roof(Dndi:float,height_aboveroof: float) -> float:
"""
height of water above the roof in mm, adding the distance between top of roof and bottom of overload
"""
dhw = Dndi + height_aboveroof
return dhw
@handcalc()
def critical_height(height_aboveroof:float,height_of_overload:float) -> float:
"""
height under which there still is enough waterflow,
there should always be 30mm above the max water level to prevent any branches or leaves getting stuck.
above this level there is no sufficient size for the overload to do its proper work.
"""
hcrit=height_aboveroof + height_of_overload-30
return hcrit
@handcalc()
def equivalent_load(dhw:float)-> float:
"""
waterheight multiplied by the volumic mass of water.
"""
equivalentload=dhw*10/1000
return equivalentload
@handcalc()
def flat_roof(dhw: float) -> float:
"""
waterheight for a flat roof, where d== dhw
"""
d = dhw
return d
@handcalc()
def curved_roof(dhw: float, z: float) -> float:
"""
waterheight for a roof with a middle curvature in mm.
"""
d = dhw - 0.8 * z
return d
@handcalc()
def sloped_roof_bi_al(dhw: float, al: float, z: float) -> float:
"""
waterheight for a roof with a one sided slope in mm, where the slope is bigger than dhw.
"""
d = dhw - 0.5 * al
return d
@handcalc()
def sloped_roof_sm_al(dhw: float, al: float, z: float) -> float:
"""
waterheight for a roof with a one sided slope in mm, where the slope is smaller than dhw.
"""
z = 0
x = 1 - ((dhw - 0.8 * z) / al)
c = 0.5 - 0.3 * x**2 - 0.2 * x**3
d = dhw - c * al
return d
@handcalc()
def curved_and_sloped_roof_bi_al(dhw: float, al: float, z: float) -> float:
"""
waterheight for a roof with a one sided slope and a curvature in mm, where the slope\curve is bigger than dhw.
"""
d = dhw - 0.8 * z - 0.5 * al
return d
@handcalc()
def curved_and_sloped_roof_sm_al(dhw: float, al: float, z: float) -> float:
"""
waterheight for a roof with a one sided slope and a curvature in mm, where the slope\curve is smaller than dhw.
"""
x = 1 - ((dhw - 0.8 * z) / al)
c = 0.5 - 0.3 * x**2 - 0.2 * x**3
d = dhw - 0.8 * z - 0.5 * c * al
return d
@handcalc()
def critical_stifness(fac: float,hoh: float,l: float,y_rep:float=10)-> float:
"""
critical stifness of the system, based on the tpye of support, length of the beam and hoh distance in m.
"""
EI_cr=((y_rep * fac * hoh * l**4 )/(math.pi**4))*10**9
return EI_cr
@handcalc()
def mult_factor(I_y:float,y_m:float,EI_cr:float,E:float=21000)->float:
"""
intermediate multiplication factor for the extra waterload.
"""
n= (E * I_y*10**4)/(y_m * EI_cr)
return n
@handcalc()
def N_factor(n: float) -> float:
"""
intermediate multiplication factor for the extra waterload.
"""
N= n / (n - 1)
return N
# Handle the special case where n is equal to 1
def calculate_N_factor(n: float) -> float:
if n == 1:
return float('inf') # or any other value you prefer
else:
return N_factor(n)
@handcalc()
def factored_equivalent_load(d:float,N_factor:float)-> float:
"""
calculation of the additional waterload to be taken into account for further calculations of the beam.
"""
factored_equivalentload=d*10/1000* N_factor
return factored_equivalentload