summaryrefslogtreecommitdiff
path: root/sample_notebooks/saikiran/Chapter3.ipynb
blob: 9b3286513e5c1212fcf7094ecb112a6ed18fe2bd (plain)
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
235
236
237
238
239
240
{
 "metadata": {
  "name": "",
  "signature": "sha256:e5ce604b49bc138fd65826c495598b13c742523cc595beeb292a2a1aa22f7c49"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter3-Engine Thrust and Performance Parameters"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Ex1-pg101"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "#calculate The ram drag for given engine in kN\n",
      "M0=0.85 ##Mach no.\n",
      "a0=300. ##speed of sound in m/s\n",
      "m=50. ##Air mass flow rate in kg/s\n",
      "##Calculations\n",
      "V0=M0*a0 ##Flight speed\n",
      "Dr=m*V0 ##Ram drag\n",
      "Dk=Dr/1000. ##in kN\n",
      "print'%s %.2f %s'%(\"The ram drag for given engine in kN:\",Dk,\"\")"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The ram drag for given engine in kN: 12.75 \n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Ex2-pg102"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#calculate gross thurst of the core and fan nozzles\n",
      "\n",
      "Cv=450. ##exhaust velocity at core in m/s\n",
      "Nv=350. ##exhaust velocity at nozzle in m/s\n",
      "Cm=50. ##Mass flow rate through core in kg/s\n",
      "Nm=350. ##Mass flow rate through nozzle in kg/s\n",
      "##Calculations:\n",
      "##Newton's second law\n",
      "Fgc=Cm*Cv ##gross thrust of the core\n",
      "Fgf=Nm*Nv ##gross thrust of the nozzle fan\n",
      "print'%s %.f %s'%(\"Gross thrust of the core in\",Fgc,\"N\")\n",
      "print'%s %.f %s'%(\"Gross thrust of the fan nozzles in\",Fgf,\"N\")\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Gross thrust of the core in 22500 N\n",
        "Gross thrust of the fan nozzles in 122500 N\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Ex3-pg111"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "#calculate The rocket gross thrust and pressure thurst\n",
      "V9=4000 ##in m/s\n",
      "p9=200*10**3 ##in Pa\n",
      "p0=100*10**3 ## in Pa\n",
      "D=2. ##in meter\n",
      "m=200.+50. ## in kg/s\n",
      "A=math.pi*(D**2)/4. ##nozzle exit area\n",
      "##let p=(p9-p0)*A i.e. pressure thrust\n",
      "p=(p9-p0)*A\n",
      "mt=m*V9 ##momentum thrust.\n",
      "t=p+mt ##rocket gross thrust\n",
      "print'%s %.2f %s'%(\"The pressure thrust in\",p,\"N\")\n",
      "print'%s %.1f %s'%(\"The rocket gross thrust in\",t,\"N\")"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The pressure thrust in 314159.27 N\n",
        "The rocket gross thrust in 1314159.3 N\n"
       ]
      }
     ],
     "prompt_number": 5
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Ex4-pg114"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "#calcualte engine thurst takeoff\n",
      "m0=100. ##air flow rate in kg/s\n",
      "V0=0. ##takeoff assumptions in m/s\n",
      "mf=2. ##2% of fuel-to-air ratio\n",
      "Qr=43000. ##Heating value of typical hydrocarbon fuel in kJ/kg\n",
      "V9=900. ##high speed exhaust jet (in m/s)\n",
      "e=((m0+mf)*(V9)**2.)/(2.*(mf)*(Qr)*1000.)\n",
      "m9=m0+mf\n",
      "t=m9*V9 ## the engine thrust at takeoff.\n",
      "print'%s %.f %s'%(\"The engine thrust at takeoff in SI units\",t,\"N\")"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The engine thrust at takeoff in SI units 91800 N\n"
       ]
      }
     ],
     "prompt_number": 7
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Ex5-pg117"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#calculate the  Engine propulsive efficiency\n",
      "V9=900. ## in m/s\n",
      "V0=200. ## in m/s\n",
      "e=2./(1.+(V9/V0))\n",
      "print'%s %.7f %s'%(\"Engine propulsive efficiency\",e,\"\")"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Engine propulsive efficiency 0.3636364 \n"
       ]
      }
     ],
     "prompt_number": 9
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Ex6-pg118"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#estimate Propulsive efficiency\n",
      "import math\n",
      "V9=250. ##in m/s\n",
      "V0=200. ##in m/s\n",
      "##Calculations:\n",
      "e=2./(1.+(V9/V0))\n",
      "print'%s %.3f %s'%(\"Propulsive efficiency:\",e,\"\")"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Propulsive efficiency: 0.889 \n"
       ]
      }
     ],
     "prompt_number": 8
    }
   ],
   "metadata": {}
  }
 ]
}