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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
{
"metadata": {
"name": "",
"signature": "sha256:8ebaaa4d9fc694c6b4303418dc1faf3eef2d83f1637b122e018c6c5eac0aba66"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 10 - Dynamic lift"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2a - Pg 427"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#calculate the max. theoretical propulsive force\n",
"#Initialization of variables\n",
"import math\n",
"vel=50. #mph\n",
"w=240. #rpm\n",
"r0=3. #ft\n",
"L=30. #ft\n",
"rho=0.00230 #slug/ft^2\n",
"theta=30*math.pi/180. #radians\n",
"#calculations\n",
"V=vel*5280./3600.\n",
"T=2*math.pi*r0*r0 *w*2*math.pi/60.\n",
"Fl=rho*V*T*L\n",
"F=r0*Fl*math.cos(theta)\n",
"#results\n",
"print '%s %d %s' %(\"Max. theoretical porpulsive force =\",F,\"lb\")\n",
"print '%s' %(\"The answers are a bit different from textbook due to rounding off error\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Max. theoretical porpulsive force = 18683 lb\n",
"The answers are a bit different from textbook due to rounding off error\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2b - Pg 428"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#calculate the force required for the operation\n",
"#Initialization of variables\n",
"import math\n",
"vel=50. #mph\n",
"w=240. #rpm\n",
"r0=3. #ft\n",
"L=30. #ft\n",
"rho=0.00230 #slug/ft^2\n",
"theta=30*math.pi/180. #radians\n",
"Cl=2\n",
"Cd=1\n",
"#calculations\n",
"vc=r0*w\n",
"V=vel*5280./3600.\n",
"vr=vc/V\n",
"A=2*r0*L\n",
"Fl=Cl*A*0.5*rho*V*V \n",
"Fd=Cd*A*0.5*rho*V*V\n",
"F=r0*(Fl*math.cos(theta) + Fd*math.sin(theta))\n",
"#results\n",
"print '%s %d %s' %(\"Force required =\",F,\"lb\")\n",
"print '%s' %(\"The answers are a bit different from textbook due to rounding off error\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Force required = 7454 lb\n",
"The answers are a bit different from textbook due to rounding off error\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3a - Pg 432"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#calculate the boundary circulation\n",
"#Initialization of variables\n",
"W=7500 #pounds\n",
"rho=0.00230\n",
"V=175*5280/3600 #ft/s\n",
"B=50\n",
"#calculations\n",
"T=W/(rho*V*B)\n",
"#results\n",
"print '%s %d %s' %(\"Boundary circulation =\",T,\"ft^2/s\")\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Boundary circulation = 254 ft^2/s\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3b - Pg 433"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#calculate the horsepower required for the operation\n",
"#Initialization of variables\n",
"W=7500. #pounds\n",
"rho=0.00230\n",
"V=175*5280./3600. #ft/s\n",
"B=50.\n",
"A=350. #ft^2\n",
"#calculations\n",
"Cl=W/(A*0.5*rho*V*V)\n",
"Cd=0.03\n",
"Fd=Cd*A*0.5*rho*V*V \n",
"hp=Fd*V/550.\n",
"#results\n",
"print '%s %d %s' %(\"Horsepower required =\",hp,\"hp\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Horsepower required = 371 hp\n"
]
}
],
"prompt_number": 5
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 4 - Pg 437"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#calculate the horsepower required for the operation\n",
"#Initialization of variables\n",
"import math\n",
"Fl=7500. #pounds\n",
"rho=0.00230\n",
"V=175*5280./3600. #ft/s\n",
"B=50\n",
"A=350 #ft^2\n",
"#calculations\n",
"Vi=2*Fl/(math.pi*rho*V*B*B)\n",
"Cl=Fl/(A*0.5*rho*V*V)\n",
"Cdi=Cl*Vi/(V)\n",
"Fdi=Cdi*A*0.5*rho*V*V\n",
"hp=Fdi*V/550\n",
"#results\n",
"print '%s %.1f %s' %(\"Horsepower required =\",hp,\"hp\")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Horsepower required = 44.1 hp\n"
]
}
],
"prompt_number": 6
}
],
"metadata": {}
}
]
}
|