summaryrefslogtreecommitdiff
path: root/Internal_Combustion_Engines_by_H._B._Keswani/ch16.ipynb
blob: 8a8ad89dd486919cd65059b741bc1617f94ca2f1 (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
{
 "metadata": {
  "name": "",
  "signature": "sha256:188e5ca03e48e521630f0518a9d462567af55f5cfab6623682e9d579c84b2da8"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 16 : Combustion In Compresson Ignition Engines"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 16.1  Page no :  315"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math \n",
      "from numpy import array\n",
      "\t\t\t\t\t\n",
      "#Input data\n",
      "s = 0.005\t\t\t\t\t#Delay in sec\n",
      "d = 30.\t\t\t\t\t#Bore in cm\n",
      "N = 600.\t\t\t\t\t#Speed in r.p.m\n",
      "dx = array([10,15,20])\t\t\t\t\t#Bore diameters in cm\n",
      "\n",
      "\t\t\t\t\t\n",
      "#Calculations\n",
      "t = (s/d)*dx\t\t\t\t\t#Time of delay in sec. In textbook, t[1] is given wrong as 0.00025 sec instead of 0.0025 sec\n",
      "\n",
      "\t\t\t\t\t\n",
      "#Output\n",
      "print 'The delay time for %i cm diameter bore is %3.5f sec  \\\n",
      "\\nThe delay time for %i cm diameter bore is %3.5f sec  \\\n",
      "\\nThe delay time for %i cm diameter bore is %3.5f sec'%(dx[0],t[0],dx[1],t[1],dx[2],t[2])\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The delay time for 10 cm diameter bore is 0.00167 sec  \n",
        "The delay time for 15 cm diameter bore is 0.00250 sec  \n",
        "The delay time for 20 cm diameter bore is 0.00333 sec\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 16.2  Page no :  317"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math \n",
      "\t\t\t\t\t\n",
      "#Input data\n",
      "d = [15.,60.]\t\t\t\t\t#Bore in cm\n",
      "N = [1600.,400.]\t\t\t\t\t#Speed in r.p.m respectively\n",
      "q = 30.\t\t\t\t\t#Injection of oil occupies 30 degrees of crank travel in each case\n",
      "pc = 30.\t\t\t\t\t#Compression pressure in kg/cm**2\n",
      "d = 0.001\t\t\t\t\t#Delay time in sec\n",
      "rp = 5.\t\t\t\t\t#Rapid combustion period is 5 degree of crank travel\n",
      "pe = 60.\t\t\t\t\t#Compression pressure at the end of rapid compression in kg/cm**2\n",
      "\n",
      "\t\t\t\t\t\n",
      "#Calculations\n",
      "\t\t\t\t\t#For small engine\n",
      "It1 = (60/N[0])*(q/360)\t\t\t\t\t#Injection time in sec\n",
      "pf1 = ((d/It1)+(rp/pc))*100\t\t\t\t\t#Percent fuel\n",
      "\t\t\t\t\t#For large engine\n",
      "It2 = (60/N[1])*(q/360)\t\t\t\t\t#Injection time in sec\n",
      "pf2 = ((d/It2)+(rp/pc))*100\t\t\t\t\t#Percent fuel\n",
      "pr = (pc*(pf2/pf1))\t\t\t\t\t#Pressure rise in kg/cm**2\n",
      "mp = (pc+pr)\t\t\t\t\t#Maximum pressure in kg/cm**2\n",
      "\n",
      "\t\t\t\t\t\n",
      "#Output\n",
      "print 'Pressure in the large engine is %3.1f kg/cm**2'%(mp)\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Pressure in the large engine is 45.2 kg/cm**2\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 16.3  Page no :  320"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math \n",
      "\t\t\t\t\t\n",
      "#Input data\n",
      "n = 4.\t\t\t\t\t#Number of cylinders\n",
      "d = 105.\t\t\t\t\t#Bore in mm\n",
      "l = 127.\t\t\t\t\t#Stroke in mm\n",
      "BHP = 63.\t\t\t\t\t#Brake horse power in h.p\n",
      "N = 1800.\t\t\t\t\t#Speed in r.p.m\n",
      "t = 15.\t\t\t\t\t#Test time in min\n",
      "mf = 2.75\t\t\t\t\t#Mass of fuel in kg\n",
      "CV = 11000.\t\t\t\t\t#Calorific value in kcal/kg\n",
      "af = 14.8\t\t\t\t\t#Air fuel ratio\n",
      "v = 0.805\t\t\t\t\t#Specific volume in m**3/kg\n",
      "nv = 80.\t\t\t\t\t#Volumetric efficiency in percent\n",
      "J = 427.\t\t\t\t\t#Mechanical equivalent of heat in kg.m/kcal\n",
      "\n",
      "\t\t\t\t\t\n",
      "#Calculations\n",
      "bth = ((BHP*4500)/(J*(mf/t)*CV))*100\t\t\t\t\t#Brake thermal efficiency in percent\n",
      "Vs = ((3.14/4)*(d/10)**2*(l/10))\t\t\t\t\t#Stroke volume in c.c\n",
      "Vsw = (Vs*n*(N/2)*t)\t\t\t\t\t#Swept volume in c.c\n",
      "Va = (Vsw*10**-6*(nv/100))\t\t\t\t\t#Volume of air sucked in m**3\n",
      "wa = (Va/v)\t\t\t\t\t#Weight of air sucked in kg\n",
      "wr = (af*mf)\t\t\t\t\t#Weight of air reqired in kg\n",
      "pei = (wr/wa)*100\t\t\t\t\t#Percentage of air available for combustion\n",
      "\n",
      "\t\t\t\t\t\n",
      "#Output\n",
      "print 'Brake thermal efficiency is %3.1f percent  \\\n",
      "\\nThe percentage of air used for combustion is %i percent'%(bth,pei)\n",
      "\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Brake thermal efficiency is 32.9 percent  \n",
        "The percentage of air used for combustion is 69 percent\n"
       ]
      }
     ],
     "prompt_number": 5
    }
   ],
   "metadata": {}
  }
 ]
}