-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathece-3rdyr.html
650 lines (549 loc) · 39.1 KB
/
ece-3rdyr.html
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/menu.css" rel='stylesheet' type='text/css'>
<link href="css/slide.css" rel='stylesheet' type='text/css'>
<link href="css/content.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--head img-->
<header>
<img src="img/1.jpg">
</header>
<!--head img end-->
<!--image slider-->
<div class="cycle-slideshow ">
<img alt="slide1" src="img/slideshow (1).jpg">
<img alt="slide2" src="img/slideshow (2).jpg">
<img alt="slide3" src="img/slideshow (3).jpg">
<img alt="slide4" src="img/slideshow (4).jpg">
<img alt="slide5" src="img/slideshow (5).jpg">
</div>
<!--image slider ends-->
<!--menu-->
<div id="menu">
<div class="menu-img">
<img src="img/menu1.jpg" alt="menu">
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">CSE</a>
<ul>
<li><a href="cse-1yr.html">I Year</a></li>
<li><a href="cse-2yr.html">II Year</a></li>
<li><a href="cse-3yr.html">III Year</a></li>
<li><a href="cse-4yr.html">IV Year</a></li>
</ul>
</li>
<li><a href="#">IT</a>
<ul>
<li><a href="it-1styr.html">I Year</a></li>
<li><a href="it-2ndyr.html">II Year</a></li>
<li><a href="it-3rdyr.html">III Year</a></li>
<li><a href="it-4thyr.html">IV Year</a></li>
</ul>
</li>
<li class="current"><a href="#">ECE</a>
<ul>
<li><a href="ece-1styr.html">I Year</a></li>
<li><a href="ece-2ndyr.html">II Year</a></li>
<li><a href="ece-3rdyr.html">III Year</a></li>
<li><a href="ece-4thyr.html">IV Year</a></li>
</ul>
</li>
<li><a href="#">EEE</a>
<ul>
<li><a href="eee-1styr.html">I Year</a></li>
<li><a href="eee-2ndyr.html">II Year</a></li>
<li><a href="eee-3rdyr.html">III Year</a></li>
<li><a href="eee-4thyr.html">IV Year</a></li>
</ul>
</li>
<li><a href="#">Mech</a>
<ul>
<li><a href="mech-1styr.html">I Year</a></li>
<li><a href="mech-2ndyr.html">II Year</a></li>
<li><a href="mech-3rdyr.html">III Year</a></li>
<li><a href="mech-4thyr.html">IV Year</a></li>
</ul>
</li>
<li><a href="#">Aero</a>
<ul>
<li><a href="aero-1styr.html">I Year</a></li>
<li><a href="aero-2ndyr.html">II Year</a></li>
<li><a href="aero-3rdyr.html">III Year</a></li>
<li><a href="aero-4thyr.html">IV Year</a></li>
</ul>
</li>
<li><a href="#">Civil</a>
<ul>
<li><a href="civil-1styr.html">I Year</a></li>
<li><a href="civil-2ndyr.html">II Year</a></li>
<li><a href="civil-3rdyr.html">III Year</a></li>
<li><a href="civil-4thyr.html">IV Year</a></li>
</ul>
</li>
</ul>
</div>
<!-- menu ends-->
<div class="content">
<h2>5th Semester</h2>
<h3>EC6501 DIGITAL COMMUNICATION </h3>
<p class="unit">
<h4>UNIT:I - SAMPLING & QUANTIZATION </h4>
Low pass sampling – Aliasing- Signal Reconstruction-Quantization - Uniform & non-uniform
quantization - quantization noise - Logarithmic Companding of speech signal- PCM - TDM </p>
<p class="unit">
<h4>UNIT:II - WAVEFORM CODING </h4>
Prediction filtering and DPCM - Delta Modulation - ADPCM & ADM principles-Linear Predictive
Coding
</p>
<p class="unit">
<h4>UNIT:III - BASEBAND TRANSMISSION </h4>
Properties of Line codes- Power Spectral Density of Unipolar / Polar RZ & NRZ – Bipolar NRZ -Manchester- ISI – Nyquist criterion for distortionless transmission – Pulse shaping – Correlative
coding - Mary schemes – Eye pattern - Equalization </p>
<p class="unit">
<h4>UNIT:IV - DIGITAL MODULATION SCHEME </h4>
Geometric Representation of signals - Generation, detection, PSD & BER of Coherent BPSK, BFSK &
QPSK - QAM - Carrier Synchronization - structure of Non-coherent Receivers - Principle of DPSK. </p>
<p class="unit">
<h4>UNIT:V - ERROR CONTROL CODING </h4>
Channel coding theorem - Linear Block codes - Hamming codes - Cyclic codes - Convolutional codes
- Vitterbi Decoder
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>S. Haykin, “Digital Communications”, John Wiley, 2005 </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6502 PRINCIPLES OF DIGITAL SIGNAL PROCESSING</h3>
<p class="unit">
<h4>UNIT:I - DISCRETE FOURIER TRANSFORM </h4>
Discrete Signals and Systems- A Review – Introduction to DFT – Properties of DFT – Circular
Convolution - Filtering methods based on DFT – FFT Algorithms –Decimation in time Algorithms,
Decimation in frequency Algorithms – Use of FFT in Linear Filtering. </p>
<p class="unit">
<h4>UNIT:II - IIR FILTER DESIGN </h4>
Structures of IIR – Analog filter design – Discrete time IIR filter from analog filter – IIR filter design by
Impulse Invariance, Bilinear transformation, Approximation of derivatives – (LPF, HPF, BPF, BRF)
filter design using frequency translation.
</p>
<p class="unit">
<h4>UNIT:III - FIR FILTER DESIGN </h4>
Structures of FIR – Linear phase FIR filter – Fourier Series - Filter design using windowing techniques
(Rectangular Window, Hamming Window, Hanning Window), Frequency sampling techniques – Finite
word length effects in digital Filters: Errors, Limit Cycle, Noise Power Spectrum.</p>
<p class="unit">
<h4>UNIT:IV - FINITE WORDLENGTH EFFECTS </h4>
Fixed point and floating point number representations – ADC –Quantization- Truncation and Rounding
errors - Quantization noise – coefficient quantization error – Product quantization error - Overflow
error – Roundoff noise power - limit cycle oscillations due to product round off and overflow errors –
Principle of scaling </p>
<p class="unit">
<h4>UNIT:V - DSP APPLICATIONS </h4>
Multirate signal processing: Decimation, Interpolation, Sampling rate conversion by a rational factor –
Adaptive Filters: Introduction, Applications of adaptive filtering to equalization.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>John G. Proakis & Dimitris G.Manolakis, “Digital Signal Processing – Principles, Algorithms &
Applications”, Fourth Edition, Pearson Education / Prentice Hall, 2007. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6503 TRANSMISSION LINES AND WAVE GUIDES </h3>
<p class="unit">
<h4>UNIT:I - TRANSMISSION LINE THEORY </h4>
General theory of Transmission lines - the transmission line - general solution - The infinite line -Wavelength, velocity of propagation - Waveform distortion - the distortion-less line - Loading and
different methods of loading - Line not terminated in Z0 - Reflection coefficient - calculation of current,
voltage, power delivered and efficiency of transmission - Input and transfer impedance - Open and
short circuited lines - reflection factor and reflection loss. </p>
<p class="unit">
<h4>UNIT:II - HIGH FREQUENCY TRANSMISSION LINES </h4>
Transmission line equations at radio frequencies - Line of Zero dissipation - Voltage and current on
the dissipation-less line, Standing Waves, Nodes, Standing Wave Ratio - Input impedance of the
dissipation-less line - Open and short circuited lines - Power and impedance measurement on lines -Reflection losses - Measurement of VSWR and wavelength.
</p>
<p class="unit">
<h4>UNIT:III - IMPEDANCE MATCHING IN HIGH FREQUENCY LINES </h4>
Impedance matching: Quarter wave transformer - Impedance matching by stubs - Single stub and
double stub matching - Smith chart - Solutions of problems using Smith chart - Single and double stub
matching using Smith chart.</p>
<p class="unit">
<h4>UNIT:IV - PASSIVE FILTERS </h4>
Characteristic impedance of symmetrical networks - filter fundamentals, Design of filters: Constant K -Low Pass, High Pass, Band Pass, Band Elimination, m- derived sections - low pass, high pass
composite filters. </p>
<p class="unit">
<h4>UNIT:V - WAVE GUIDES AND CAVITY RESONATORS </h4>
General Wave behaviours along uniform Guiding structures, Transverse Electromagnetic waves,
Transverse Magnetic waves, Transverse Electric waves, TM and TE waves between parallel plates,
TM and TE waves in Rectangular wave guides, Bessel‟s differential equation and Bessel function, TM
and TE waves in Circular wave guides, Rectangular and circular cavity Resonators.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b> John D Ryder, “Networks, lines and fields”, 2nd Edition, Prentice Hall India, 2010. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>GE6351 ENVIRONMENTAL SCIENCE AND ENGINEERING </h3>
<p class="unit">
<h4>UNIT:I - ENVIRONMENT, ECOSYSTEMS AND BIODIVERSITY </h4>
Definition, scope and importance of Risk and hazards; Chemical hazards, Physical hazards, Biological hazards in the environment – concept of an ecosystem – structure and function of an ecosystem – producers, consumers and decomposers-Oxygen cycle and Nitrogen cycle – energy flow in the ecosystem – ecological succession processes – Introduction, types, characteristic features, structure and function of the (a) forest ecosystem (b) grassland ecosystem (c) desert ecosystem (d) aquatic ecosystems (ponds, streams, lakes, rivers, oceans, estuaries) – Introduction to biodiversity definition: genetic, species and ecosystem diversity – biogeographical classification of India – value of biodiversity: consumptive use, productive use, social, ethical, aesthetic and option values – Biodiversity at global, national and local levels – India as a mega-diversity nation – hot-spots of biodiversity – threats to biodiversity: habitat loss, poaching of wildlife, man-wildlife conflicts – endangered and endemic species of India – conservation of biodiversity: In-situ and ex-situ conservation of biodiversity. Field study of common plants, insects, birds Field study of simple ecosystems – pond, river, hill slopes, etc.
</p>
<p class="unit">
<h4>UNIT:II - ENVIRONMENTAL POLLUTION </h4>
Definition – causes, effects and control measures of: (a) Air pollution (Atmospheric chemistry- Chemical composition of the atmosphere; Chemical and photochemical reactions in the atmosphere - formation of smog, PAN, acid rain, oxygen and ozone chemistry;- Mitigation procedures- Control of particulate and gaseous emission, Control of SO2, NOX, CO and HC) (b) Water pollution : Physical and chemical properties of terrestrial and marine water and their environmental significance; Water quality parameters – physical, chemical and biological; absorption of heavy metals - Water treatment processes. (c) Soil pollution - soil waste management: causes, effects and control measures of municipal solid wastes – (d) Marine pollution (e) Noise pollution (f) Thermal pollution (g) Nuclear hazards–role of an individual in prevention of pollution – pollution case studies – Field study of local polluted site – Urban / Rural / Industrial / Agricultural.
</p>
<p class="unit">
<h4>UNIT:III - NATURAL RESOURCES </h4>
Forest resources: Use and over-exploitation, deforestation, case studies- timber extraction, mining, dams and their effects on forests and tribal people – Water resources: Use and overutilization of surface and ground water, dams-benefits and problems – Mineral resources: Use and exploitation, environmental effects of extracting and using mineral resources, case studies – Food resources: World food problems, changes caused by agriculture and overgrazing, effects of modern agriculture, fertilizer-pesticide problems, water logging, salinity, case studies – Energy resources: Growing energy needs, renewable and non renewable energy sources, use of alternate energy sources. Energy Conversion processes – Biogas – production and uses, anaerobic digestion; case studies – Land resources: Land as a resource, land degradation, man induced landslides, soil erosion and desertification – role of an individual in conservation of natural resources – Equitable use of resources for sustainable lifestyles. Introduction to Environmental Biochemistry: Proteins –Biochemical degradation of pollutants, Bioconversion of pollutants. Field study of local area to document environmental assets – river/forest/grassland/hill/mountain.
<p class="unit">
<h4>UNIT:IV - SOCIAL ISSUES AND THE ENVIRONMENT </h4>
From unsustainable to sustainable development – urban problems related to energy – water conservation, rain water harvesting, watershed management – resettlement and rehabilitation of people; its problems and concerns, case studies – role of non-governmental organization- environmental ethics: Issues and possible solutions – 12 Principles of green chemistry- nuclear accidents and holocaust, case studies. – wasteland reclamation – consumerism and waste products – environment production act – Air act – Water act – Wildlife protection act – Forest conservation act – The Biomedical Waste (Management and Handling) Rules; 1998 and amendments- scheme of labeling of environmentally friendly products (Ecomark). enforcement machinery involved in environmental legislation- central and state pollution control boards- disaster management: floods, earthquake, cyclone and landslides. Public awareness.
</p>
<p class="unit">
<h4>UNIT:V - HUMAN POPULATION AND THE ENVIRONMENT </h4>
Population growth, variation among nations – population explosion – family welfare programme – environment and human health – human rights – value education – HIV / AIDS – women and child welfare –Environmental impact analysis (EIA)- -GIS-remote sensing-role of information technology in environment and human health – Case studies.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b> Gilbert M.Masters, ‘Introduction to Environmental Engineering and Science’, 2nd Edition, Pearson Education 2004. </b></li>
<li class="download"><a href="cse.pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
<li><b> Benny Joseph, ‘Environmental Science and Engineering’, Tata Mc Graw-Hill, New Delhi, 2006.</b></li>
<li class="download"><a href="cse.pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6504 MICROPROCESSOR AND MICROCONTROLLER </h3>
<p class="unit">
<h4>UNIT:I - THE 8086 MICROPROCESSOR </h4> Introduction to 8086 – Microprocessor architecture – Addressing modes - Instruction set and assembler directives – Assembly language programming – Modular Programming - Linking and Relocation - Stacks - Procedures – Macros – Interrupts and interrupt service routines – Byte and String Manipulation.
</p>
<p class="unit">
<h4>UNIT:II - 8086 SYSTEM BUS STRUCTURE</h4>
8086 signals – Basic configurations – System bus timing –System design using 8086 – IO programming – Introduction to Multiprogramming – System Bus Structure - Multiprocessor configurations – Coprocessor, Closely coupled and loosely Coupled configurations – Introduction to advanced processors.
</p>
<p class="unit">
<h4>UNIT:III - I/O INTERFACING</h4>
Memory Interfacing and I/O interfacing - Parallel communication interface – Serial communication interface – D/A and A/D Interface - Timer – Keyboard /display controller – Interrupt controller – DMA controller – Programming and applications Case studies: Traffic Light control, LED display , LCD display, Keyboard display interface and Alarm Controller.
<p class="unit">
<h4>UNIT:IV - MICROCONTROLLER</h4>
Architecture of 8051 – Special Function Registers(SFRs) - I/O Pins Ports and Circuits - Instruction set - Addressing modes - Assembly language programming.
</p>
<p class="unit">
<h4>UNIT:V - INTERFACING MICROCONTROLLER</h4>
Programming 8051 Timers - Serial Port Programming - Interrupts Programming – LCD & Keyboard Interfacing - ADC, DAC & Sensor Interfacing - External Memory Interface- Stepper Motor and Waveform generation.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Yu-Cheng Liu, Glenn A.Gibson, “Microcomputer Systems: The 8086 / 8088 Family - Architecture, Programming and Design”, Second Edition, Prentice Hall of India, 2007.</b></li>
<li class="download"><a href="cse.pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
<li><b> Mohamed Ali Mazidi, Janice Gillispie Mazidi, Rolin McKinlay, “The 8051 Microcontroller and Embedded Systems: Using Assembly and C”, Second Edition, Pearson Education, 2011 </b></li>
<li class="download"><a href="cse/4th sem/MPMC/mazidi.pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h2>6th semester</h2>
<h3>MG6851 PRINCIPLES OF MANAGEMENT </h3>
<p class="unit">
<h4>UNIT:I - INTRODUCTION TO MANAGEMENT AND ORGANIZATIONS </h4>
Definition of Management – Science or Art – Manager Vs Entrepreneur - types of managers -managerial roles and skills – Evolution of Management – Scientific, human relations , system and
contingency approaches – Types of Business organization - Sole proprietorship, partnership,
company-public and private sector enterprises - Organization culture and Environment – Current
trends and issues in Management. </p>
<p class="unit">
<h4>UNIT:II - PLANNING </h4>
Nature and purpose of planning – planning process – types of planning – objectives – setting
objectives – policies – Planning premises – Strategic Management – Planning Tools and
Techniques – Decision making steps and process.
</p>
<p class="unit">
<h4>UNIT:III - ORGANISING </h4>
Nature and purpose – Formal and informal organization – organization chart – organization
structure – types – Line and staff authority – departmentalization – delegation of authority –
centralization and decentralization – Job Design - Human Resource Management – HR Planning,
Recruitment, selection, Training and Development, Performance Management , Career planning
and management. </p>
<p class="unit">
<h4>UNIT:IV - DIRECTING </h4>
Foundations of individual and group behaviour – motivation – motivation theories – motivational
techniques – job satisfaction – job enrichment – leadership – types and theories of leadership –
communication – process of communication – barrier in communication – effective communication
–communication and IT. </p>
<p class="unit">
<h4>UNIT:V - CONTROLLING </h4>
System and process of controlling – budgetary and non-budgetary control techniques – use of
computers and IT in Management control – Productivity problems and management – control and
performance – direct and preventive control – reporting.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Stephen P. Robbins & Mary Coulter, “Management”, 10th Edition,Prentice Hall (India) Pvt. Ltd., 2009. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
<li><b>JAF Stoner, Freeman R.E and Daniel R Gilbert “Management”, 6th Edition,Pearson Education, 2004. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>CS6551 COMPUTER NETWORKS </h3>
<p class="unit">
<h4>UNIT:I - FUNDAMENTALS & LINK LAYER</h4>
Building a network – Requirements - Layering and protocols - Internet Architecture – Network software – Performance ; Link layer Services - Framing - Error Detection - Flow control
</p>
<p class="unit">
<h4>UNIT:II - MEDIA ACCESS & INTERNETWORKING</h4>
Media access control - Ethernet (802.3) - Wireless LANs – 802.11 – Bluetooth - Switching and bridging – Basic Internetworking (IP, CIDR, ARP, DHCP,ICMP )
</p>
<p class="unit">
<h4>UNIT:III - ROUTING </h4>
Routing (RIP, OSPF, metrics) – Switch basics – Global Internet (Areas, BGP, IPv6), Multicast – addresses – multicast routing (DVMRP, PIM)
<p class="unit">
<h4>UNIT:IV - TRANSPORT LAYER </h4>
Overview of Transport layer - UDP - Reliable byte stream (TCP) - Connection management - Flow control - Retransmission – TCP Congestion control - Congestion avoidance (DECbit, RED) – QoS – Application requirements
</p>
<p class="unit">
<h4>UNIT:V - APPLICATION LAYER </h4>
Traditional applications -Electronic Mail (SMTP, POP3, IMAP, MIME) – HTTP – Web Services – DNS - SNMP
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Larry L. Peterson, Bruce S. Davie, “Computer Networks: A Systems Approach”, Fifth Edition, Morgan Kaufmann Publishers, 2011.</b></li>
<li class="download"><a href="cse/4th sem/CN/Computer Networks-PETERSON AND DAVIE 3rd.pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>CS6303 COMPUTER ARCHITECTURE</h3>
<p class="unit">
<h4>UNIT:I - OVERVIEW & INSTRUCTIONS </h4>
Eight ideas – Components of a computer system – Technology – Performance – Power wall – Uniprocessors to multiprocessors; Instructions – operations and operands – representing instructions – Logical operations – control operations – Addressing and addressing modes.
</p>
<p class="unit">
<h4>UNIT:II - ARITHMETIC OPERATIONS</h4>
ALU - Addition and subtraction – Multiplication – Division – Floating Point operations – Subword parallelism.
</p>
<p class="unit">
<h4>UNIT:III - PROCESSOR AND CONTROL UNIT</h4>
Basic MIPS implementation – Building datapath – Control Implementation scheme – Pipelining – Pipelined datapath and control – Handling Data hazards & Control hazards – Exceptions.
<p class="unit">
<h4>UNIT:IV - PARALLELISM </h4>
Instruction-level-parallelism – Parallel processing challenges – Flynn's classification – Hardware multithreading – Multicore processors
</p>
<p class="unit">
<h4>UNIT:V - MEMORY AND I/O SYSTEMS </h4>
Memory hierarchy - Memory technologies – Cache basics – Measuring and improving cache performance - Virtual memory, TLBs - Input/output system, programmed I/O, DMA and interrupts, I/O processors.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b> David A. Patterson and John L. Hennessey, “Computer organization and design’, Morgan Kauffman / Elsevier, Fifth edition, 2014.</b></li>
<li class="download"><a href="cse/3rd sem/CA/Computer Organization and Design.pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6601 VLSI DESIGN </h3>
<p class="unit">
<h4>UNIT:I - MOS TRANSISTOR PRINCIPLE </h4>
NMOS and PMOS transistors, Process parameters for MOS and CMOS, Electrical properties of
CMOS circuits and device modeling, Scaling principles and fundamental limits, CMOS inverter
scaling, propagation delays, Stick diagram, Layout diagrams </p>
<p class="unit">
<h4>UNIT:II - COMBINATIONAL LOGIC CIRCUITS </h4>
Examples of Combinational Logic Design, Elmore‟s constant, Pass transistor Logic, Transmission
gates, static and dynamic CMOS design, Power dissipation – Low power design principles
</p>
<p class="unit">
<h4>UNIT:III - SEQUENTIAL LOGIC CIRCUITS </h4>
Static and Dynamic Latches and Registers, Timing issues, pipelines, clock strategies, Memory
architecture and memory control circuits, Low power memory circuits, Synchronous and
Asynchronous design</p>
<p class="unit">
<h4>UNIT:IV - DESIGNING ARITHMETIC BUILDING BLOCKS </h4>
Data path circuits, Architectures for ripple carry adders, carry look ahead adders, High speed adders,
accumulators, Multipliers, dividers, Barrel shifters, speed and area tradeoff </p>
<p class="unit">
<h4>UNIT:V - IMPLEMENTATION STRATEGIES </h4>
Full custom and Semi custom design, Standard cell design and cell libraries, FPGA building block
architectures, FPGA interconnect routing procedures.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Jan Rabaey, Anantha Chandrakasan, B.Nikolic, “Digital Integrated Circuits: A Design
Perspective”, Second Edition, Prentice Hall of India, 2003. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
<li><b>M.J. Smith, “Application Specific Integrated Circuits”, Addisson Wesley, 1997 </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6602 ANTENNA AND WAVE PROPAGATION </h3>
<p class="unit">
<h4>UNIT:I - FUNDAMENTALS OF RADIATION </h4>
Definition of antenna parameters – Gain, Directivity, Effective aperture, Radiation Resistance, Band
width, Beam width, Input Impedance. Matching – Baluns, Polarization mismatch, Antenna noise
temperature, Radiation from oscillating dipole, Half wave dipole. Folded dipole, Yagi array. </p>
<p class="unit">
<h4>UNIT:II - APERTURE AND SLOT ANTENNAS </h4>
Radiation from rectangular apertures, Uniform and Tapered aperture, Horn antenna , Reflector
antenna , Aperture blockage , Feeding structures , Slot antennas ,Microstrip antennas – Radiation
mechanism – Application ,Numerical tool for antenna analysis
</p>
<p class="unit">
<h4>UNIT:III - ANTENNA ARRAYS </h4>
N element linear array, Pattern multiplication, Broadside and End fire array – Concept of Phased
arrays, Adaptive array, Basic principle of antenna Synthesis-Binomial array </p>
<p class="unit">
<h4>UNIT:IV - SPECIAL ANTENNAS </h4>
Principle of frequency independent antennas –Spiral antenna, Helical antenna, Log periodic. Modern
antennas- Reconfigurable antenna, Active antenna, Dielectric antennas, Electronic band gap structure
and applications, Antenna Measurements-Test Ranges, Measurement of Gain, Radiation pattern,
Polarization, VSWR </p>
<p class="unit">
<h4>UNIT:V - PROPAGATION OF RADIO WAVES </h4>
Modes of propagation , Structure of atmosphere , Ground wave propagation , Tropospheric
propagation , Duct propagation, Troposcatter propagation , Flat earth and Curved earth concept Sky
wave propagation – Virtual height, critical frequency , Maximum usable frequency – Skip distance,
Fading , Multi hop propagation
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>John D Kraus,” Antennas for all Applications”, 3rd Edition, Mc Graw Hill, 2005. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h2>Elective - I</h2>
<h3>EC6001 MEDICAL ELECTRONICS </h3>
<p class="unit">
<h4>UNIT:I - ELECTRO-PHYSIOLOGY AND BIO-POTENTIAL RECORDING </h4>
The origin of Bio-potentials; biopotential electrodes, biological amplifiers, ECG, EEG, EMG, PCG, lead
systems and recording methods, typical waveforms and signal characteristics. </p>
<p class="unit">
<h4>UNIT:II - BIO-CHEMICAL AND NON ELECTRICAL PARAMETER MEASUREMENT </h4>
pH, PO2, PCO2, colorimeter, Auto analyzer, Blood flow meter, cardiac output, respiratory
measurement, Blood pressure, temperature, pulse, Blood Cell Counters.
</p>
<p class="unit">
<h4>UNIT:III - ASSIST DEVICES </h4>
Cardiac pacemakers, DC Defibrillator, Dialyser, Heart lung machine</p>
<p class="unit">
<h4>UNIT:IV - PHYSICAL MEDICINE AND BIOTELEMETRY </h4>
Diathermies- Shortwave, ultrasonic and microwave type and their applications, Surgical Diathermy
Telemetry principles, frequency selection, biotelemetry, radiopill, electrical safety </p>
<p class="unit">
<h4>UNIT:V - RECENT TRENDS IN MEDICAL INSTRUMENTATION </h4>
Thermograph, endoscopy unit, Laser in medicine, cryogenic application, Introduction to telemedicine
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Leslie Cromwell, “Biomedical Instrumentation and Measurement”, Prentice Hall of India, New
Delhi, 2007. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
<li><b>John G.Webster, “Medical Instrumentation Application and Design”, 3rd Edition, Wiley India Edition, 2007 </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6002 ADVANCED DIGITAL SIGNAL PROCESSING </h3>
<p class="unit">
<h4>UNIT:I - DISCRETE-TIME RANDOM SIGNALS </h4>
Discrete random process – Ensemble averages, Stationary and ergodic processes, Autocorrelation
and Autocovariance properties and matrices, White noise, Power Spectral Density, Spectral
Factorization, Innovations Representation and Process, Filtering random processes, ARMA, AR and
MA processes. </p>
<p class="unit">
<h4>UNIT:II - SPECTRUM ESTIMATION </h4>
Bias and Consistency, Periodogram, Modified periodogram, Blackman-Tukey method, Welch method,
Parametric methods of spectral estimation, Levinson-Durbin recursion
</p>
<p class="unit">
<h4>UNIT:III - LINEAR ESTIMATION AND PREDICTION </h4>
Forward and Backward linear prediction, Filtering - FIR Wiener filter- Filtering and linear prediction,
non-causal and causal IIR Wiener filters, Discrete Kalman filter.</p>
<p class="unit">
<h4>UNIT:IV - ADAPTIVE FILTERS </h4>
Principles of adaptive filter – FIR adaptive filter – Newton‟s Steepest descent algorithm – LMS
algorithm – Adaptive noise cancellation, Adaptive equalizer, Adaptive echo cancellers. </p>
<p class="unit">
<h4>UNIT:V - WAVELET TRANSFORM </h4>
Multiresolution analysis, Continuous and discrete wavelet transform, Short Time Fourier Transform,
Application of wavelet transform, Cepstrum and Homomorphic filtering.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Sophocles J. Orfanidis, “Optimum Signal Processing, An Introduction”, Mc Graw Hill, 1990. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>CS6401 OPERATING SYSTEMS </h3>
<p class="unit">
<h4>UNIT:I - OPERATING SYSTEMS OVERVIEW </h4>
Computer System Overview-Basic Elements, Instruction Execution, Interrupts, Memory Hierarchy, Cache Memory, Direct Memory Access, Multiprocessor and Multicore Organization. Operating system overview-objectives and functions, Evolution of Operating System.- Computer System OrganizationOperating System Structure and Operations- System Calls, System Programs, OS Generation and System Boot
</p>
<p class="unit">
<h4>UNIT:II - PROCESS MANAGEMENT</h4>
Processes-Process Concept, Process Scheduling, Operations on Processes, Interprocess Communication; Threads- Overview, Multicore Programming, Multithreading Models; Windows 7 - Thread and SMP Management. Process Synchronization - Critical Section Problem, Mutex Locks, Semophores, Monitors; CPU Scheduling and Deadlocks.
</p>
<p class="unit">
<h4>UNIT:III - STORAGE MANAGEMENT </h4>
Main Memory-Contiguous Memory Allocation, Segmentation, Paging, 32 and 64 bit architecture Examples; Virtual Memory- Demand Paging, Page Replacement, Allocation, Thrashing; Allocating Kernel Memory, OS Examples.
<p class="unit">
<h4>UNIT:IV - I/O SYSTEMS </h4>
Mass Storage Structure- Overview, Disk Scheduling and Management; File System Storage-File Concepts, Directory and Disk Structure, Sharing and Protection; File System Implementation- File System Structure, Directory Structure, Allocation Methods, Free Space Management, I/O Systems.
</p>
<p class="unit">
<h4>UNIT:V - CASE STUDY</h4>
Linux System- Basic Concepts;System Administration-Requirements for Linux System Administrator, Setting up a LINUX Multifunction Server, Domain Name System, Setting Up Local Network Services; Virtualization- Basic Concepts, Setting Up Xen,VMware on Linux Host and Adding Guest OS.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Abraham Silberschatz, Peter Baer Galvin and Greg Gagne, “Operating System Concepts”, 9th Edition, John Wiley and Sons Inc., 2012.</b></li>
<li class="download"><a href="cse/4th sem/OS/Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<h3>EC6003 ROBOTICS AND AUTOMATION </h3>
<p class="unit">
<h4>UNIT:I - BASIC CONCEPTS </h4>
Definition and origin of robotics – different types of robotics – various generations of robots – degrees
of freedom – Asimov‟s laws of robotics – dynamic stabilization of robots. </p>
<p class="unit">
<h4>UNIT:II - POWER SOURCES AND SENSORS </h4>
Hydraulic, pneumatic and electric drives – determination of HP of motor and gearing ratio – variable
speed arrangements – path determination – micro machines in robotics – machine vision – ranging –
laser – acoustic – magnetic, fiber optic and tactile sensors.
</p>
<p class="unit">
<h4>UNIT:III - MANIPULATORS, ACTUATORS AND GRIPPERS </h4>
Construction of manipulators – manipulator dynamics and force control – electronic and pneumatic
manipulator control circuits – end effectors – U various types of grippers – design considerations.</p>
<p class="unit">
<h4>UNIT:IV - KINEMATICS AND PATH PLANNING </h4>
Solution of inverse kinematics problem – multiple solution jacobian work envelop – hill Climbing
Techniques – robot programming languages </p>
<p class="unit">
<h4>UNIT:V - CASE STUDIES </h4>
Mutiple robots – machine interface – robots in manufacturing and non- manufacturing applications –
robot cell design – selection of robot.
</p>
<h3>TEXT BOOKS:</h3>
<ul>
<li><b>Mikell P. Weiss G.M., Nagel R.N., Odraj N.G., “Industrial Robotics”, Mc Graw-Hill Singapore, 1996. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
<li><b>Ghosh, Control in Robotics and Automation: Sensor Based Integration, Allied Publishers, Chennai,
1998. </b></li>
<li class="download"><a href="#" target="_blank"><img src="img/download.png" width="150px" height="60px"></a></li>
</ul>
<h3>For Video Lecture <a href="http://nptel.ac.in" target="_blank" class="screenshot" rel="img/thumb.jpg"><img src="img/click here.jpg" width="120px" height="30px"/></a></h3>
<br>
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/jquery.cycle2.js"></script>
<script src="js/main.js" type="text/javascript"></script>
</body>
</html>