SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1696
Noor’s Algorithmic Flow of Electronics and Communication
Engineering
Noor Ul Abedin1
1Assistant Professor, Dept. of Electronics and Communication Engineering, Deccan College of Engineering and
Technology, Telangana State, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract –Showcasing a simple and basicalgorithmof
a particular section of engineering and technology is
very important as it guides the one and ones towards
their role in their field of engineering and technology.
This basic algorithm of electronics and communication
engineering is tried to elaborate inthebestpossible manner so
as to have a clear fundamental of the field.
Key Words: Analog Electronics, Digital Electronics and
Communication.
1. INTRODUCTION
There are three basic backgrounds of electronics which are
analog electronics, digital electronics and communication.
With the medium of a flow chart I will depicthow electronics
and communication engineering worksrealisticallyandhow
this algorithm is necessary for understanding the field of
electronics and communication engineering.
2. FUNDAMENTAL BLOCKS OF ELECTRONICS AND
COMMUNICATION
There are two basic fundamental blocks as everyone knows
i.e.
1. ELECTRONICS
 Analog Electronics
 Digital Electronics
2. COMMUNICATION
 Analog Communication
 Digital Communication
3. ALGORITHM FLOW CHART
Fig.1. Noor’s Algorithm Flow Chart
4. WORKING OF THE ALGORITHM
As already familiar that this field is verily related to
electronics and communications i.e. at here I can say that
analog electronics,digital electronics,analogcommunication
and digital communication are interrelated/ dependent on
each other depending on the intended necessity whichisour
ultimate aim which is feasibly obtained by the algorithm.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1697
4.1. Analog and Digital Electronics
Preference to analog electronics is the basic fundamental
engineering step towards electronics and communicationas
its provides us an idea how basic circuit designing using
verily visible physical analog components is accomplished
further providing the basic background of understanding
op- amps and necessity of digital electronics.
Analog device and their circuits such as diode, transistors:
BJTs, FETs are majorly used in analog electronics as the key
analog elements supported byvarioussimpleandcompound
networks.
Major circuit works which required major analog device/
devices and their associatednetworksasstatedabovewould
be easily performed by using a single Op- amp IC, thus
reducing the amount number of analog devices, their
possible networks and also the size of the circuit.
No doubly Op- amp has eased the circuit designing butit was
limited to a certain extent, this extent was been able to
extended and bounded as per our needs with the help of
digital electronic leading to design dense integrated circuits
using CAD tools and ultimately leading to VLSI technology.
4.2. Analog and Digital Communication
Communication is the second major sector, when seeing a
communication system the two analog and digital
communication signals are commonly used together. As a
applicative system that processes a signal uses both the
signal converters the best elaborationisa DSPProcessorand
a TCP/ IP network.
The preference of going towards analog signalsistheregood
performance over longer distances and the on the other
hand use of digital signal makes it easier for the processorto
perform their functionalities.
Therefore in many of the systems we observetheuseofboth
analog and digital signals.
Fig.2. Data Communication System Model
4.3.ApplicationsofElectronics(E)andApplications
of Communication (C):
When the intended purpose fulfils with analog circuitry it
suits the best, when dense integration/ nano circuitry is
required we move onto digital circuitry and in majority of
the device we give preference to a circuitry which is digital
design with analog devices/ circuit. Similarly basedon these
the communication can be accomplished in many routes
such as lining and wireless. Microwave engineering,
Antennas and Radar are the major modes through which
high level is accomplished.
4.4. Result
When the topologies of analog and digital are verily
understood the engineer will have an exact result obtained
as per his desired application and purpose.
Engineering applications such as artificial intelligence, self-
financial estimation and self entrepreneurship and may
more can be easily framed and executed.
5. PRACTICAL COMPARISON
Illustrating with the help of a full adder,thefull addercanbe
implemented in by hardware selected ICs, in digital
electronics the same full adder can be implemented byusing
HDL.
The feasibility of digitally generatedfull adderismoreasthis
can be easily associated with anycomplexcircuitrywhere its
necessity is there and if not willingness to use can be easily
removed where as analyzing these particular aspects on
analog backgrounds becomes difficult and utilizes more
time.
Fig.3. Full Adder Logical Circuit Diagram
Table.1. Full Adder Truth Table
INPUTS OUTPUTS
A B CARRYINPUT SUM CARRYOUTPUT
0 0 0 0 0
0 0 1 1 0
0 1 0 1 0
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1698
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
Implementing a full adder on circuitboard we wouldrequire
IC 7408 for AND Gate, IC 7486 for EX - OR Gate and IC 7432
for OR Gate.
Using these ICs we are able to design a full adder on board
and verify its logic i.e. verifying its truth table.
The same results are easily obtained digitally with the help
of writing a Verilog HDL code for full Adder. Here full adder
is obtained by using two half adders h1 and h2 respectively.
Verilog HDL Description:
Module Program:
module halfadd (s, c, a, b);
input a,b;
output s,c;
assign s=a^b;
assign c=a&b;
endmodule
module fulladd (sum, carry, c, a, b);
input a, b, c;
output sum, carry;
wire w1,w2,w3;
halfadd h1(w1,w2,a,b);
halfadd h2(sum,w3,c,w1);
or (carry,w2,w3);
endmodule
Fig.4.1. Full Adder module program written in Verilog HDL
using Xilinx 14.7
Fig.4.2. Full Adder Logical Circuit Diagram obtained after
executing the module program
Fig.4.3. Full Adder Logical Circuit Diagram showing inner
half adders gate interconnections obtained after executing
the module program
Test Bench Program:
module fulladdtest;
reg a,b,c;
wire sum, carry;
fulladd uut (sum,carry,a,b,c);
initial
begin
$monitor ($time,"a=%b,b=%b,c=%b,sum=%b,carry=%b",a,b,c,sum,carry);
#100 a=0;b=0;c=0;
#100 a=0;b=0;c=1;
#100 a=0;b=1;c=0;
#100 a=0;b=1;c=1;
#100 a=1;b=0;c=0;
#100 a=1;b=0;c=1;
#100 a=1;b=1;c=0;
#100 a=1;b=1;c=1;
end
endmodule
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1699
Fig.4.4. Full Adder test bench program written in Verilog
HDL using Xilinx 14.7
Fig.4.5. Timing diagram obtained after writing the test bench
showing the logical verification of the full adder
6. FUTURE SCOPE
Engineers and Engineering students can easily be able
design their own circuits and implement.Itwill becomevery
easier to showcase their engineering work as per the global
sections of electronics and communication engineering
7. CONCLUSION
The importance and use of analog, digital and their
combined effort is understood.
REFERENCES
[1]. Data and Computer Communication Networks by
William Stallings
[2]. Verilog HDL by Samir Palnitkar
[3]. A Verilog HDL Primer by J. Bhasker
[4]. Introduction to VLSI Circuits andSystemsbyJohnP.
Uyemura
[5]. VLSI Design by P Sahu
[6]. VLSI Design by M. Michael Vai
[7]. Digital Systems by Tocci & Widmer
[8]. Digital Design by Morris Mano
[9]. Digital Hardware Design by John B. Peatman
[10]. Antennas by John D Kraus, Ronald J Marhefka and
Ahmed S Khan
[11]. Antenna and Wave Propagation by K. D. Prasad
[12]. Antenna Theory by Constantine Balanis
[13]. Elements of Electromagnetics by Mattew N. O.
Sadiku
[14]. Fundamental of Electronic Circuits by Charles K.
Alexander and Mattew N. O. Sadiku
[15]. Electronic Devices and Circuits by Jacob Millman,
Christos C. Halkias and Satyarbrata Jit
[16]. Electronic Devices and Circuits by S. Salivahanan, N
Kumar and A Vallavaraj
[17]. Integrated Electronics by Jacob Millman, ChristosC.
Halkias and Chetan Parikh
[18]. Circuits and Networks by A Sudhakar and
Shyammohan S Palli
[19]. Engineering Circuit Analysis by W H Hayt,
J E Kemmerly and S M Durbin
[20]. Electronic Devices and Circuits by J B Gupta
BIOGRAPHY
Mr. Noor Ul Abedin is working as
an Assistant Professor in Dept. of
Electronics and Communication,
Deccan College of Engineering and
Technology. He’s field of interest
are Analog and Digital Electronics.
He has lectured and thought
variousengineeringsubjectswhich
include Anlaog Electronic Devices
& Circuits, VLSI Design, Networks
& Circuits, Antennas & Wave
Propagation, Electronic
Instrumentation, Automation in
Process Control, Power
Electronics, Digital Electronics &
Logic Design and LinearIntegrated
Circuits.

More Related Content

What's hot

IRJET- Highway Navigation System using Light Fidelity Technology
IRJET- Highway Navigation System using Light Fidelity TechnologyIRJET- Highway Navigation System using Light Fidelity Technology
IRJET- Highway Navigation System using Light Fidelity TechnologyIRJET Journal
 
Home Automation System using Arduino and GSM
Home Automation System using Arduino and GSMHome Automation System using Arduino and GSM
Home Automation System using Arduino and GSMIRJET Journal
 
Low cost smart weather station using Arduino and ZigBee
Low cost smart weather station using Arduino and ZigBeeLow cost smart weather station using Arduino and ZigBee
Low cost smart weather station using Arduino and ZigBeeTELKOMNIKA JOURNAL
 
Design and implementation smart home alarm system with zigbee transceiver
Design and implementation smart home alarm system with zigbee transceiverDesign and implementation smart home alarm system with zigbee transceiver
Design and implementation smart home alarm system with zigbee transceiverzaidinvisible
 
IRJET- A Survey on Mobility in RPL for IoT Applications
IRJET- A Survey on Mobility in RPL for IoT ApplicationsIRJET- A Survey on Mobility in RPL for IoT Applications
IRJET- A Survey on Mobility in RPL for IoT ApplicationsIRJET Journal
 
Performance analysis of voip over wired and wireless networks network impleme...
Performance analysis of voip over wired and wireless networks network impleme...Performance analysis of voip over wired and wireless networks network impleme...
Performance analysis of voip over wired and wireless networks network impleme...eSAT Journals
 
Lifi based communication system
Lifi based communication systemLifi based communication system
Lifi based communication systemShivam Sharma
 
A Survey Paper on Leakage Power and Delay in CMOS Circuits
A Survey Paper on Leakage Power and Delay in CMOS CircuitsA Survey Paper on Leakage Power and Delay in CMOS Circuits
A Survey Paper on Leakage Power and Delay in CMOS Circuitsijtsrd
 
NTC/362 ENTIRE CLASS UOP TUTORIALS
NTC/362 ENTIRE CLASS UOP TUTORIALSNTC/362 ENTIRE CLASS UOP TUTORIALS
NTC/362 ENTIRE CLASS UOP TUTORIALSSharon Reynolds
 
IRJET- A Novel Design of Hybrid 2 Bit Magnitude Comparator
IRJET- A Novel Design of Hybrid 2 Bit Magnitude ComparatorIRJET- A Novel Design of Hybrid 2 Bit Magnitude Comparator
IRJET- A Novel Design of Hybrid 2 Bit Magnitude ComparatorIRJET Journal
 
IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...
IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...
IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...IRJET Journal
 
The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)
The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)
The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)iaemedu
 
Computer communication networks chapter 1 ppt (vtu odd sem EC)
Computer communication networks chapter 1 ppt (vtu odd sem EC)Computer communication networks chapter 1 ppt (vtu odd sem EC)
Computer communication networks chapter 1 ppt (vtu odd sem EC)Kunjan Shinde
 
Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...
Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...
Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...VaddiNagaPrasuna
 
IRJET- Wifi based Smart Electric Meter using IoT
IRJET-  	  Wifi based Smart Electric Meter using IoTIRJET-  	  Wifi based Smart Electric Meter using IoT
IRJET- Wifi based Smart Electric Meter using IoTIRJET Journal
 
Er. Navdeep Thaman-Resume
Er. Navdeep Thaman-ResumeEr. Navdeep Thaman-Resume
Er. Navdeep Thaman-ResumeNavdeep Thaman
 
Syed IoT - module 5
Syed  IoT - module 5Syed  IoT - module 5
Syed IoT - module 5Syed Mustafa
 
Data transmission with gbits speed using cmos based integrated circu
Data transmission with gbits speed using cmos based integrated circuData transmission with gbits speed using cmos based integrated circu
Data transmission with gbits speed using cmos based integrated circuIAEME Publication
 

What's hot (18)

IRJET- Highway Navigation System using Light Fidelity Technology
IRJET- Highway Navigation System using Light Fidelity TechnologyIRJET- Highway Navigation System using Light Fidelity Technology
IRJET- Highway Navigation System using Light Fidelity Technology
 
Home Automation System using Arduino and GSM
Home Automation System using Arduino and GSMHome Automation System using Arduino and GSM
Home Automation System using Arduino and GSM
 
Low cost smart weather station using Arduino and ZigBee
Low cost smart weather station using Arduino and ZigBeeLow cost smart weather station using Arduino and ZigBee
Low cost smart weather station using Arduino and ZigBee
 
Design and implementation smart home alarm system with zigbee transceiver
Design and implementation smart home alarm system with zigbee transceiverDesign and implementation smart home alarm system with zigbee transceiver
Design and implementation smart home alarm system with zigbee transceiver
 
IRJET- A Survey on Mobility in RPL for IoT Applications
IRJET- A Survey on Mobility in RPL for IoT ApplicationsIRJET- A Survey on Mobility in RPL for IoT Applications
IRJET- A Survey on Mobility in RPL for IoT Applications
 
Performance analysis of voip over wired and wireless networks network impleme...
Performance analysis of voip over wired and wireless networks network impleme...Performance analysis of voip over wired and wireless networks network impleme...
Performance analysis of voip over wired and wireless networks network impleme...
 
Lifi based communication system
Lifi based communication systemLifi based communication system
Lifi based communication system
 
A Survey Paper on Leakage Power and Delay in CMOS Circuits
A Survey Paper on Leakage Power and Delay in CMOS CircuitsA Survey Paper on Leakage Power and Delay in CMOS Circuits
A Survey Paper on Leakage Power and Delay in CMOS Circuits
 
NTC/362 ENTIRE CLASS UOP TUTORIALS
NTC/362 ENTIRE CLASS UOP TUTORIALSNTC/362 ENTIRE CLASS UOP TUTORIALS
NTC/362 ENTIRE CLASS UOP TUTORIALS
 
IRJET- A Novel Design of Hybrid 2 Bit Magnitude Comparator
IRJET- A Novel Design of Hybrid 2 Bit Magnitude ComparatorIRJET- A Novel Design of Hybrid 2 Bit Magnitude Comparator
IRJET- A Novel Design of Hybrid 2 Bit Magnitude Comparator
 
IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...
IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...
IRJET- Security and QoS Aware Dynamic Clustering (SQADC) Routing Protocol for...
 
The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)
The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)
The hybrid evolutionary algorithm for optimal planning of hybrid woban (1)
 
Computer communication networks chapter 1 ppt (vtu odd sem EC)
Computer communication networks chapter 1 ppt (vtu odd sem EC)Computer communication networks chapter 1 ppt (vtu odd sem EC)
Computer communication networks chapter 1 ppt (vtu odd sem EC)
 
Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...
Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...
Hossain markendahl2021 article-comparison_oflpwan_technologiesc july 2021 vvv...
 
IRJET- Wifi based Smart Electric Meter using IoT
IRJET-  	  Wifi based Smart Electric Meter using IoTIRJET-  	  Wifi based Smart Electric Meter using IoT
IRJET- Wifi based Smart Electric Meter using IoT
 
Er. Navdeep Thaman-Resume
Er. Navdeep Thaman-ResumeEr. Navdeep Thaman-Resume
Er. Navdeep Thaman-Resume
 
Syed IoT - module 5
Syed  IoT - module 5Syed  IoT - module 5
Syed IoT - module 5
 
Data transmission with gbits speed using cmos based integrated circu
Data transmission with gbits speed using cmos based integrated circuData transmission with gbits speed using cmos based integrated circu
Data transmission with gbits speed using cmos based integrated circu
 

Similar to Noor’s Algorithmic Flow of Electronics and Communication Engineering

Signal Classification and Identification for Cognitive Radio
Signal Classification and Identification for Cognitive RadioSignal Classification and Identification for Cognitive Radio
Signal Classification and Identification for Cognitive RadioIRJET Journal
 
LORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMLORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMIRJET Journal
 
IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...
IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...
IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...IRJET Journal
 
IRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation SystemIRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation SystemIRJET Journal
 
IRJET- A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...
IRJET-  	  A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...IRJET-  	  A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...
IRJET- A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...IRJET Journal
 
SIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATION
SIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATIONSIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATION
SIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATIONRicky Drk
 
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...IRJET Journal
 
Iot Based Society Automation Using GTBS Protocol
Iot Based Society Automation Using GTBS ProtocolIot Based Society Automation Using GTBS Protocol
Iot Based Society Automation Using GTBS ProtocolIRJET Journal
 
Wireless display board
Wireless display boardWireless display board
Wireless display boardVaibhav Pandey
 
Design and implementation of 32 bit alu using verilog
Design and implementation of 32 bit alu using verilogDesign and implementation of 32 bit alu using verilog
Design and implementation of 32 bit alu using verilogSTEPHEN MOIRANGTHEM
 
IRJET- Iot Based Smart Energy Monitoring
IRJET- Iot Based Smart Energy MonitoringIRJET- Iot Based Smart Energy Monitoring
IRJET- Iot Based Smart Energy MonitoringIRJET Journal
 
IRJET- Underground Cable Fault Detection and Transmission of Intimation t...
IRJET-  	  Underground Cable Fault Detection and Transmission of Intimation t...IRJET-  	  Underground Cable Fault Detection and Transmission of Intimation t...
IRJET- Underground Cable Fault Detection and Transmission of Intimation t...IRJET Journal
 
IRJET- College Bus Fee Payment System
IRJET- College Bus Fee Payment SystemIRJET- College Bus Fee Payment System
IRJET- College Bus Fee Payment SystemIRJET Journal
 
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONA SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONIRJET Journal
 
Electronic Nameplate System
Electronic Nameplate SystemElectronic Nameplate System
Electronic Nameplate SystemIRJET Journal
 
IRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET Journal
 
IRJET- Earthquake Early Warning System for Android
IRJET-  	  Earthquake Early Warning System for AndroidIRJET-  	  Earthquake Early Warning System for Android
IRJET- Earthquake Early Warning System for AndroidIRJET Journal
 
Jawad Ali Khan
Jawad Ali KhanJawad Ali Khan
Jawad Ali KhanJawad Khan
 
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD CodeIRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD CodeIRJET Journal
 
Social distance monitoring robot in queue based on IOT
Social distance monitoring robot in queue based on IOTSocial distance monitoring robot in queue based on IOT
Social distance monitoring robot in queue based on IOTIRJET Journal
 

Similar to Noor’s Algorithmic Flow of Electronics and Communication Engineering (20)

Signal Classification and Identification for Cognitive Radio
Signal Classification and Identification for Cognitive RadioSignal Classification and Identification for Cognitive Radio
Signal Classification and Identification for Cognitive Radio
 
LORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEMLORA BASED DATA ACQUISITION SYSTEM
LORA BASED DATA ACQUISITION SYSTEM
 
IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...
IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...
IRJET- AODV and DSR Routing Protocol Performance Comparison in MANET using Ne...
 
IRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation SystemIRJET - Design and Implementation of RF based Wireless Home Automation System
IRJET - Design and Implementation of RF based Wireless Home Automation System
 
IRJET- A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...
IRJET-  	  A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...IRJET-  	  A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...
IRJET- A Study on: Wireless Sensing Network (WSN) Gas Leakage Detection S...
 
SIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATION
SIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATIONSIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATION
SIMPLIFIED SECURED WIRELESS RAILWAY / AIRWAY FOR RESERVATION
 
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
IRJET- Arithmetic Logic Unit Design with Comparison Power Consumption on Diff...
 
Iot Based Society Automation Using GTBS Protocol
Iot Based Society Automation Using GTBS ProtocolIot Based Society Automation Using GTBS Protocol
Iot Based Society Automation Using GTBS Protocol
 
Wireless display board
Wireless display boardWireless display board
Wireless display board
 
Design and implementation of 32 bit alu using verilog
Design and implementation of 32 bit alu using verilogDesign and implementation of 32 bit alu using verilog
Design and implementation of 32 bit alu using verilog
 
IRJET- Iot Based Smart Energy Monitoring
IRJET- Iot Based Smart Energy MonitoringIRJET- Iot Based Smart Energy Monitoring
IRJET- Iot Based Smart Energy Monitoring
 
IRJET- Underground Cable Fault Detection and Transmission of Intimation t...
IRJET-  	  Underground Cable Fault Detection and Transmission of Intimation t...IRJET-  	  Underground Cable Fault Detection and Transmission of Intimation t...
IRJET- Underground Cable Fault Detection and Transmission of Intimation t...
 
IRJET- College Bus Fee Payment System
IRJET- College Bus Fee Payment SystemIRJET- College Bus Fee Payment System
IRJET- College Bus Fee Payment System
 
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONA SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
 
Electronic Nameplate System
Electronic Nameplate SystemElectronic Nameplate System
Electronic Nameplate System
 
IRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy Meter
 
IRJET- Earthquake Early Warning System for Android
IRJET-  	  Earthquake Early Warning System for AndroidIRJET-  	  Earthquake Early Warning System for Android
IRJET- Earthquake Early Warning System for Android
 
Jawad Ali Khan
Jawad Ali KhanJawad Ali Khan
Jawad Ali Khan
 
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD CodeIRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
IRJET- Performance Analysis of IP Over Optical CDMA System based on RD Code
 
Social distance monitoring robot in queue based on IOT
Social distance monitoring robot in queue based on IOTSocial distance monitoring robot in queue based on IOT
Social distance monitoring robot in queue based on IOT
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 

Recently uploaded (20)

Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 

Noor’s Algorithmic Flow of Electronics and Communication Engineering

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1696 Noor’s Algorithmic Flow of Electronics and Communication Engineering Noor Ul Abedin1 1Assistant Professor, Dept. of Electronics and Communication Engineering, Deccan College of Engineering and Technology, Telangana State, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract –Showcasing a simple and basicalgorithmof a particular section of engineering and technology is very important as it guides the one and ones towards their role in their field of engineering and technology. This basic algorithm of electronics and communication engineering is tried to elaborate inthebestpossible manner so as to have a clear fundamental of the field. Key Words: Analog Electronics, Digital Electronics and Communication. 1. INTRODUCTION There are three basic backgrounds of electronics which are analog electronics, digital electronics and communication. With the medium of a flow chart I will depicthow electronics and communication engineering worksrealisticallyandhow this algorithm is necessary for understanding the field of electronics and communication engineering. 2. FUNDAMENTAL BLOCKS OF ELECTRONICS AND COMMUNICATION There are two basic fundamental blocks as everyone knows i.e. 1. ELECTRONICS  Analog Electronics  Digital Electronics 2. COMMUNICATION  Analog Communication  Digital Communication 3. ALGORITHM FLOW CHART Fig.1. Noor’s Algorithm Flow Chart 4. WORKING OF THE ALGORITHM As already familiar that this field is verily related to electronics and communications i.e. at here I can say that analog electronics,digital electronics,analogcommunication and digital communication are interrelated/ dependent on each other depending on the intended necessity whichisour ultimate aim which is feasibly obtained by the algorithm.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1697 4.1. Analog and Digital Electronics Preference to analog electronics is the basic fundamental engineering step towards electronics and communicationas its provides us an idea how basic circuit designing using verily visible physical analog components is accomplished further providing the basic background of understanding op- amps and necessity of digital electronics. Analog device and their circuits such as diode, transistors: BJTs, FETs are majorly used in analog electronics as the key analog elements supported byvarioussimpleandcompound networks. Major circuit works which required major analog device/ devices and their associatednetworksasstatedabovewould be easily performed by using a single Op- amp IC, thus reducing the amount number of analog devices, their possible networks and also the size of the circuit. No doubly Op- amp has eased the circuit designing butit was limited to a certain extent, this extent was been able to extended and bounded as per our needs with the help of digital electronic leading to design dense integrated circuits using CAD tools and ultimately leading to VLSI technology. 4.2. Analog and Digital Communication Communication is the second major sector, when seeing a communication system the two analog and digital communication signals are commonly used together. As a applicative system that processes a signal uses both the signal converters the best elaborationisa DSPProcessorand a TCP/ IP network. The preference of going towards analog signalsistheregood performance over longer distances and the on the other hand use of digital signal makes it easier for the processorto perform their functionalities. Therefore in many of the systems we observetheuseofboth analog and digital signals. Fig.2. Data Communication System Model 4.3.ApplicationsofElectronics(E)andApplications of Communication (C): When the intended purpose fulfils with analog circuitry it suits the best, when dense integration/ nano circuitry is required we move onto digital circuitry and in majority of the device we give preference to a circuitry which is digital design with analog devices/ circuit. Similarly basedon these the communication can be accomplished in many routes such as lining and wireless. Microwave engineering, Antennas and Radar are the major modes through which high level is accomplished. 4.4. Result When the topologies of analog and digital are verily understood the engineer will have an exact result obtained as per his desired application and purpose. Engineering applications such as artificial intelligence, self- financial estimation and self entrepreneurship and may more can be easily framed and executed. 5. PRACTICAL COMPARISON Illustrating with the help of a full adder,thefull addercanbe implemented in by hardware selected ICs, in digital electronics the same full adder can be implemented byusing HDL. The feasibility of digitally generatedfull adderismoreasthis can be easily associated with anycomplexcircuitrywhere its necessity is there and if not willingness to use can be easily removed where as analyzing these particular aspects on analog backgrounds becomes difficult and utilizes more time. Fig.3. Full Adder Logical Circuit Diagram Table.1. Full Adder Truth Table INPUTS OUTPUTS A B CARRYINPUT SUM CARRYOUTPUT 0 0 0 0 0 0 0 1 1 0 0 1 0 1 0
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1698 0 1 1 0 1 1 0 0 1 0 1 0 1 0 1 1 1 0 0 1 1 1 1 1 1 Implementing a full adder on circuitboard we wouldrequire IC 7408 for AND Gate, IC 7486 for EX - OR Gate and IC 7432 for OR Gate. Using these ICs we are able to design a full adder on board and verify its logic i.e. verifying its truth table. The same results are easily obtained digitally with the help of writing a Verilog HDL code for full Adder. Here full adder is obtained by using two half adders h1 and h2 respectively. Verilog HDL Description: Module Program: module halfadd (s, c, a, b); input a,b; output s,c; assign s=a^b; assign c=a&b; endmodule module fulladd (sum, carry, c, a, b); input a, b, c; output sum, carry; wire w1,w2,w3; halfadd h1(w1,w2,a,b); halfadd h2(sum,w3,c,w1); or (carry,w2,w3); endmodule Fig.4.1. Full Adder module program written in Verilog HDL using Xilinx 14.7 Fig.4.2. Full Adder Logical Circuit Diagram obtained after executing the module program Fig.4.3. Full Adder Logical Circuit Diagram showing inner half adders gate interconnections obtained after executing the module program Test Bench Program: module fulladdtest; reg a,b,c; wire sum, carry; fulladd uut (sum,carry,a,b,c); initial begin $monitor ($time,"a=%b,b=%b,c=%b,sum=%b,carry=%b",a,b,c,sum,carry); #100 a=0;b=0;c=0; #100 a=0;b=0;c=1; #100 a=0;b=1;c=0; #100 a=0;b=1;c=1; #100 a=1;b=0;c=0; #100 a=1;b=0;c=1; #100 a=1;b=1;c=0; #100 a=1;b=1;c=1; end endmodule
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 06 | June -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1699 Fig.4.4. Full Adder test bench program written in Verilog HDL using Xilinx 14.7 Fig.4.5. Timing diagram obtained after writing the test bench showing the logical verification of the full adder 6. FUTURE SCOPE Engineers and Engineering students can easily be able design their own circuits and implement.Itwill becomevery easier to showcase their engineering work as per the global sections of electronics and communication engineering 7. CONCLUSION The importance and use of analog, digital and their combined effort is understood. REFERENCES [1]. Data and Computer Communication Networks by William Stallings [2]. Verilog HDL by Samir Palnitkar [3]. A Verilog HDL Primer by J. Bhasker [4]. Introduction to VLSI Circuits andSystemsbyJohnP. Uyemura [5]. VLSI Design by P Sahu [6]. VLSI Design by M. Michael Vai [7]. Digital Systems by Tocci & Widmer [8]. Digital Design by Morris Mano [9]. Digital Hardware Design by John B. Peatman [10]. Antennas by John D Kraus, Ronald J Marhefka and Ahmed S Khan [11]. Antenna and Wave Propagation by K. D. Prasad [12]. Antenna Theory by Constantine Balanis [13]. Elements of Electromagnetics by Mattew N. O. Sadiku [14]. Fundamental of Electronic Circuits by Charles K. Alexander and Mattew N. O. Sadiku [15]. Electronic Devices and Circuits by Jacob Millman, Christos C. Halkias and Satyarbrata Jit [16]. Electronic Devices and Circuits by S. Salivahanan, N Kumar and A Vallavaraj [17]. Integrated Electronics by Jacob Millman, ChristosC. Halkias and Chetan Parikh [18]. Circuits and Networks by A Sudhakar and Shyammohan S Palli [19]. Engineering Circuit Analysis by W H Hayt, J E Kemmerly and S M Durbin [20]. Electronic Devices and Circuits by J B Gupta BIOGRAPHY Mr. Noor Ul Abedin is working as an Assistant Professor in Dept. of Electronics and Communication, Deccan College of Engineering and Technology. He’s field of interest are Analog and Digital Electronics. He has lectured and thought variousengineeringsubjectswhich include Anlaog Electronic Devices & Circuits, VLSI Design, Networks & Circuits, Antennas & Wave Propagation, Electronic Instrumentation, Automation in Process Control, Power Electronics, Digital Electronics & Logic Design and LinearIntegrated Circuits.