summaryrefslogtreecommitdiff
path: root/sample_notebooks/yashwanth kumarmada/sample_notes_1.ipynb
blob: faacb548705659616825ac075e6ce15cddf3bb1f (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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {
    "collapsed": true
   },
   "source": [
    "# CHAPTER 2 :Physical Properties of Hydraulic Fluids"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "collapsed": false
   },
   "source": [
    "##Example2_1"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "the weight is 129.0\n"
     ]
    }
   ],
   "source": [
    "# Aim:To Find Weight of Body\n",
    "# Given:\n",
    "# Mass of the Body:\n",
    "m=4; #slugs\n",
    "\n",
    "# Solutions:\n",
    "# we know acceleration due to gravity,\n",
    "g=32.2; #ft/s**2\n",
    "W=(m*g);\n",
    "\n",
    "# Results:\n",
    "print  \"the weight(lbs) is\",round(W,0)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_2"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Results:  \n",
      " The specific weight of Body is lb/ft**3. 71.7\n"
     ]
    }
   ],
   "source": [
    "# Aim:To find the specific weight of a body\n",
    "# Given:\n",
    "# Weigth of the Body:\n",
    "W=129; #lb\n",
    "# Volume of the Body:\n",
    "V=1.8; #ft**3\n",
    "\n",
    "# Solution:\n",
    "# we know specific weight,\n",
    "# gamma=(Weigth of the Body/Volume of the Body)\n",
    "gamma1=(W/V); #lb/ft^3\n",
    "# rounding off the above answer\n",
    "gamma1=round(gamma1)+(round((gamma1-round(gamma1))*10)/10); #lb/ft^3\n",
    "   \n",
    "# Results:\n",
    "print \" Results:  \"\n",
    "print \" The specific weight of Body is lb/ft**3.\",gamma1\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_3"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Results:  \n",
      "The specific gravity of air  0.00121\n"
     ]
    }
   ],
   "source": [
    "# Aim:To find the specific gravity of air at 68 degF\n",
    "# Given:\n",
    "# specific weight of air at 68 degF:\n",
    "gamma_air=0.0752; #lb/ft**3\n",
    "\n",
    "\n",
    "# Solution:\n",
    "# we know,\n",
    "# specific gravity of air=(specific weight of air/specific weight of water)\n",
    "# also we know,specific weight of water at 68 degF,\n",
    "gamma_water=62.4; #lb/ft**3\n",
    "SG_air=gamma_air/gamma_water;\n",
    "\n",
    "# Results:\n",
    "print  \"Results:  \"\n",
    "print  \"The specific gravity of air \",round(SG_air,5) \n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_4"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Results:  \n",
      "The Density of Body is  slugs/ft**3. 2.2222\n",
      "The Density of Body is  slugs/ft**3. 2.2236\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# Aim:To find Density of body of Example 2-1 and 2-2\n",
    "# Given:\n",
    "# mass of the Body:\n",
    "m=4; #slugs\n",
    "# Volume of the Body:\n",
    "V=1.8; #ft**3\n",
    "\n",
    "# Solution:\n",
    "# we know density,\n",
    "# rho1=(mass of the Body/Volume of the Body)\n",
    "rho1=(m/V); #slugs/ft**3\n",
    "# also density,rho2=(specific weight/acceleration due to gravity)\n",
    "g=32.2; #ft/s**2\n",
    "gamma1=71.6; #lb/ft**3\n",
    "rho2=(gamma1/g); #slugs/ft**3\n",
    "\n",
    "# Results:\n",
    "print \"Results:  \"\n",
    "print \"The Density of Body is  slugs/ft**3.\",round(rho1,4)\n",
    "print \"The Density of Body is  slugs/ft**3.\",round(rho2,4)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_5"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "  Results:  \n",
      " The pressure on skin diver is  psi. 26.0\n"
     ]
    }
   ],
   "source": [
    "# Aim:To find pressure on the skin diver\n",
    "# Given:\n",
    "# Depth of Water Body:\n",
    "H=60; #ft\n",
    "\n",
    "# Solution:\n",
    "# specific Weight of water,\n",
    "gamma1=0.0361; #lb/in**3 \n",
    "# Conversion: \n",
    "# 1 feet = 12 inches\n",
    "# 1 lb/in**2 = 1 psi            \n",
    "# we know pressure,\n",
    "# p=(specific weight of liquid * liquid column height)\n",
    "p=(gamma1*H*12); #psi\n",
    "\n",
    "# Results:\n",
    "print \"  Results:  \"\n",
    "print \" The pressure on skin diver is  psi.\",round(p,1)\n",
    "\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_6"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Results:  \n",
      " The Height of water column is  ft. 33.8\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# Aim:To find tube height of a Barometer\n",
    "# Given:\n",
    "# liquid used is Water instead of Mercury.\n",
    "\n",
    "# Solution:\n",
    "# specific Weight of water,\n",
    "gamma1=0.0361; #lb/in**3 \n",
    "# We also knows Atmospheric Pressure,\n",
    "p=14.7; #psi\n",
    "# Conversion: \n",
    "# 1 feet = 12 inches\n",
    "# 1 lb/in**2 = 1 psi            \n",
    "# we know pressure,\n",
    "# p=(specific weight of liquid * liquid column height)\n",
    "# Therefore,\n",
    "H=(p/gamma1); #in\n",
    "# He=Height in Feet.\n",
    "He=H*0.083; #ft\n",
    "\n",
    "# Results:\n",
    "print \" Results:  \"\n",
    "print \" The Height of water column is  ft.\",round(He,1)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_7"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "  Results:  \n",
      " The Absolute Pressure is  psi. 9.7\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# Aim:To convert given pressure into absolute pressure\n",
    "# Given:\n",
    "# Gage Pressure:\n",
    "Pg=-5; #psi\n",
    "\n",
    "# Solution:\n",
    "# Atmospheric Pressure,\n",
    "Po=14.7; #psi           \n",
    "# Absolute Pressure(Pa) =Gage Pressure + Atmospheric Pressure\n",
    "Pa=Pg+Po;\n",
    "\n",
    "# Results:\n",
    "print \"  Results:  \"\n",
    "print \" The Absolute Pressure is  psi.\",Pa\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_8"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "  Results:  \n",
      "The Absolute Pressure is  psi. 40.7\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# Aim:To find absolute pressure on skin diver of Example 2-5\n",
    "# Given:\n",
    "# Gage Pressure:\n",
    "Pg=26; #psi\n",
    "\n",
    "# Solution:\n",
    "# Atmospheric Pressure,\n",
    "Po=14.7; #psi           \n",
    "# Absolute Pressure(Pa) =Gage Pressure + Atmospheric Pressure\n",
    "Pa=Pg+Po; #psi\n",
    "\n",
    "# Results:\n",
    "print \"  Results:  \"\n",
    "print \"The Absolute Pressure is  psi.\",Pa\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_9"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "  Results:  \n",
      "The specific weights is  N/m**3. 8792\n",
      " The answer in the program is different than that in textbook. It may be due to no.s of significant digit in data and calculation\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# Aim:To Determine specific weights in N/m**3\n",
    "# Given:\n",
    "# specific weight:\n",
    "gamma1=56; #lb/ft**3\n",
    "\n",
    "\n",
    "# Solution:\n",
    "# We know,\n",
    "# 1 N/m**3 = 157 lb/ft**3\n",
    "gamma2=157*gamma1; #N/m**3\n",
    "\n",
    "# Results:\n",
    "print \"  Results:  \"\n",
    "print \"The specific weights is  N/m**3.\",gamma2\n",
    "print \" The answer in the program is different than that in textbook. It may be due to no.s of significant digit in data and calculation\"\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example2_10"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      " Results:  \n",
      " The temp at which Fahrenheit and Celsius values are equal is  deg. -40.0\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# Aim:To find Temperature at which Fahrenheit and Celsius values are equal \n",
    "# Given:\n",
    "# T(degF) = T(degC)  #Eqn - 1\n",
    "\n",
    "# Solution:\n",
    "# We know that,\n",
    "# T(degF)=((1.8*T(degC))+32)  #Eqn - 2         \n",
    "# From Eqn 1 and 2\n",
    "# ((1.8*T(degC))+32)= T(degC)\n",
    "# (1-1.8)*T(degC)=32\n",
    "# -0.8*T(degC)=32\n",
    "TdegC=-32/0.8;\n",
    "\n",
    "# Results:\n",
    "print \" Results:  \"\n",
    "print \" The temp at which Fahrenheit and Celsius values are equal is  deg.\",TdegC\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 2",
   "language": "python",
   "name": "python2"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 2
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython2",
   "version": "2.7.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 0
}