SlideShare a Scribd company logo
1 of 27
SUMMER TRAINING WORK ON 
ANTENNA DESIGN & VHDL 
Submitted By 
Vipin Yadav 
2K13-MRCE-MT-ECE-015
INDEX 
• Antenna Introduction 
• HFSS Software 
• Patch shapes and substrate 
• Design Specifications & Feeding techniques 
• Simulation results 
• VHDL & Its Coding Styles 
• Types of Modelling 
• Hierarchy & statements in VHDL
INTRODUCTION 
• An antenna is an electrical device which converts 
electric currents into radio waves, and vice versa. It 
is usually used with a radio transmitter or radio 
receiver. 
• In transmission, a radio transmitter applies an 
oscillating radio frequency electric current to the 
antenna's terminals, and the antenna radiates the 
energy from the current as electromagnetic waves 
(radio waves).
WHY ANTENNAS ? 
• Need of antenna arisen when two person wanted to 
communicate between them when separated by some 
distance and wired communication is not possible. 
• Antennas are required by any radio receiver or 
transmitter to couple its electrical connection to the 
electromagnetic field. 
• Radio waves are electromagnetic waves which carry 
signals through the air (or through space) at the 
speed of light with almost no transmission loss.
HFSS SOFTWARE 
• HFSS (high frequency structural simulator) is a high-performance 
full-wave electromagnetic(EM) field 
simulator for arbitrary 3D volumetric passive device 
modelling that takes advantage of the familiar Microsoft 
Windows graphical user interface. 
• It integrates simulation, visualization, solid modelling, 
and automation in an easy-to-learn environment where 
solutions to 3D EM problem are quickly and accurately 
obtained. 
• Ansoft HFSS employs the Finite Element Method(FEM), 
adaptive meshing, and brilliant graphics to give 
unparalleled performance and insight to all of your 3D EM 
problems.
Microstrip Antenna 
In its most basic form, a Microstrip patch antenna consists of a radiating patch on 
one 
side of a dielectric substrate which has a ground plane on the other side 
For good antenna performance, a thick dielectric substrate having a low dielectric 
constant is desirable since this provides better efficiency, larger bandwidth and better 
radiation . 
Structure of a Microstrip Patch Antenna 
 In genaral Micro strip antennas are also 
known as 
“ PRINTED ANTENNAS ”. 
 These are mostly used at microwave 
frequencies. 
 Because the size of the antenna is directly 
tied the wavelength at the resonant 
frequency. 
 Micro strip patch antenna or patch antenna 
is a narrowband wide-beam antenna.
Patch Shapes Are: 
(a) Single radiating patches 
(b) Single slot radiator
Substrates are: 
The most commonly used substrates are, 
1) Honey comb(dielectric constant=1.07) 
2)Duroid(dielectric constant=2.32) 
3)Quartz(dielectric constant=3.8) 
4)Alumina(dielectric constant=10) 
 A thicker substrate will increase the radiation 
power , reduce conductor loss and improve Band 
width.
Feeding Techniques: 
 Coaxial feed 
 Microstrip feed 
 Proximity coupled microstrip feed 
 Aperture coupled microstrip feed 
 Coplanar wave guide 
 Line Feed 
1-Microstrip Line Feed : 
In this type of feed technique, a 
conducting strip is connected directly to the 
edge of the 
microstrip patch. 
This kind of feed arrangement has the 
advantage that the feed can be etched on 
the 
same substrate to provide a planar 
structure.
2-Coaxial Feed :- 
The Coaxial feed or probe feed is a very common 
technique used for feeding Microstrip 
patch antennas. 
Probe fed Rectangular Microstrip 
Patch Antenna from top 
The main advantage of this type of 
feeding scheme is that the feed can be 
placed at any 
desired location inside the patch in order to 
match with its input impedance. 
This feed method is easy to fabricate and 
has low spurious radiation. 
However, its major disadvantage is that it 
Coaxial Ground Plane Connector 
Substrate 
Patch provides narrow bandwidth and is 
difficult to model since a hole has to be 
drilled in the substrate . and the connector 
protrudes outside the ground plane, thus 
not making it completely planar for thick 
substrates . 
Probe fed Rectangular Microstrip Patch Antenna 
from side view
3-Aperture Coupled Feed 
In this type of feed technique, the radiating 
patch and the microstrip feed line are separated 
by the ground plane . 
Coupling between the patch and the feed 
line is made through a slot or an aperture 
in the ground plane. 
The coupling aperture is usually centered under the Aperture-coupled feed 
patch, leading to lower cross polarization due to 
symmetry of the configuration. 
The amount of coupling from the feed line to the patch is determined by the shape, size 
and location of the aperture.
3.2 Project specifications 
Project Specs 
Operating Frequency : 1.575 GHz 
Input Impedance: 50 Ohm 
VSWR: 2:1 @ 1.575 GHz 
Polarization: RHCP 
Bandwidth: 3.8% (~60 MHz) 
Substrate 
RT/Duroid (Rogers Corp.) 
e= 2.22 
h= 125 mils 
tan d = 0.001
Simulation Results of a 1.575 GHz GPS 
Receiver Antenna Design 
Return Loss
VSWR PLOT 
2 D PATTERN
VHDL 
What does HDL stand for? 
HDL is short for Hardware Description Language 
(VHDL – VHSIC Hardware Description Language) 
(Very High Speed Integrated Circuit)
Basic Form of VHDL Code 
• Every VHDL design description consists of at least 
one entity / architecture pair, or one entity with multiple 
architectures. 
• The entity section is used to declare I/O ports of the 
circuit. The architecture portion describes the circuit’s 
behavior. 
• A behavioral model is similar to a “black box”. 
• Standardized design libraries are included before 
entity declaration.
Standard Libraries 
• Include library ieee; before entity declaration. 
• ieee.std_logic_1164 defines a standard for designers 
to use in describing interconnection data types used in 
VHDL modeling. 
• ieee.std_logic_arith provides a set of arithmetic, 
conversion, comparison functions for signed, 
unsigned, std_ulogic, std_logic, std_logic_vector. 
• Ieee.std_logic_unsigned provides a set of unsigned 
arithmetic, conversion, and comparison functions for 
std_logic_vector.
Entity Declaration 
• An entity declaration describes the interface of the component. 
• PORT clause indicates input and output ports. 
• An entity can be thought of as a symbol for a component.
Port Declaration 
• PORT declaration establishes the interface of the 
object to the outside world. 
• Three parts of the PORT declaration 
• Name 
• Any identifier that is not a reserved word. 
• Mode 
• In, Out, Inout, Buffer 
• Data type 
• Any declared or predefined datatype. 
• Sample PORT declaration syntax:
Architecture Declaration 
• Architecture declarations describe the operation of the 
component. 
• Many architectures may exist for one entity, but only one may be 
active at a time. 
• An architecture is similar to a schematic of the component.
Modeling Styles 
• There are three modeling styles: 
• Behavioral (Sequential) 
• Data flow 
• Structural
VHDL Hierarchy
Sequential vs Concurrent Statements 
• VHDL provides two different types of 
execution: sequential and concurrent. 
• Different types of execution are useful for 
modeling of real hardware. 
• Supports various levels of abstraction. 
• Sequential statements view hardware from a 
“programmer” approach. 
• Concurrent statements are order-independent 
and asynchronous.
Behavioural Style
Data flow Style
Structural Style
 microstrip antennae design & vhdl ppt

More Related Content

What's hot

Novel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWBNovel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWBAnas Kadri
 
Microstrip rectangular patch antenna
Microstrip rectangular  patch antennaMicrostrip rectangular  patch antenna
Microstrip rectangular patch antennacharan -
 
Design of band notched antenna for ultra wide band applications
Design of band notched antenna for ultra wide band applicationsDesign of band notched antenna for ultra wide band applications
Design of band notched antenna for ultra wide band applicationsEngr Syed Absar Kazmi
 
Antenna array
Antenna arrayAntenna array
Antenna arrayAmsaveni A
 
MicroStrip Patch Antenna
MicroStrip Patch AntennaMicroStrip Patch Antenna
MicroStrip Patch AntennaAmit Kirti saran
 
MicroStrip Antenna
MicroStrip AntennaMicroStrip Antenna
MicroStrip AntennaTarek Nader
 
Broadband antennas
Broadband antennasBroadband antennas
Broadband antennasAJAL A J
 
Earth Station and Satellite Antennas
Earth Station and Satellite AntennasEarth Station and Satellite Antennas
Earth Station and Satellite Antennasfurkansleyman
 
A Multi-band Slot Antenna for GPS
A Multi-band Slot Antenna for   GPSA Multi-band Slot Antenna for   GPS
A Multi-band Slot Antenna for GPSom prakash
 
microwave-engineering
microwave-engineeringmicrowave-engineering
microwave-engineeringATTO RATHORE
 
Circular polarized fractal antenna(14 09)
Circular polarized fractal antenna(14 09)Circular polarized fractal antenna(14 09)
Circular polarized fractal antenna(14 09)Tilak patel
 
Ph.D Research proposal
Ph.D Research proposalPh.D Research proposal
Ph.D Research proposalNaveen Kumar
 
Thesis presentation
 Thesis presentation Thesis presentation
Thesis presentationnaal12
 
Dual Band Microstrip Antenna
Dual Band Microstrip AntennaDual Band Microstrip Antenna
Dual Band Microstrip AntennaAnas Kadri
 
Log periodic antenna
Log periodic antennaLog periodic antenna
Log periodic antennaKeval Patel
 

What's hot (20)

Basics of Patch antenna
Basics of Patch antennaBasics of Patch antenna
Basics of Patch antenna
 
Novel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWBNovel Microstrip Antenna Design for UWB
Novel Microstrip Antenna Design for UWB
 
Microstrip rectangular patch antenna
Microstrip rectangular  patch antennaMicrostrip rectangular  patch antenna
Microstrip rectangular patch antenna
 
Design of band notched antenna for ultra wide band applications
Design of band notched antenna for ultra wide band applicationsDesign of band notched antenna for ultra wide band applications
Design of band notched antenna for ultra wide band applications
 
Antenna array
Antenna arrayAntenna array
Antenna array
 
MicroStrip Patch Antenna
MicroStrip Patch AntennaMicroStrip Patch Antenna
MicroStrip Patch Antenna
 
MicroStrip Antenna
MicroStrip AntennaMicroStrip Antenna
MicroStrip Antenna
 
Array Antennas
Array AntennasArray Antennas
Array Antennas
 
Broadband antennas
Broadband antennasBroadband antennas
Broadband antennas
 
Earth Station and Satellite Antennas
Earth Station and Satellite AntennasEarth Station and Satellite Antennas
Earth Station and Satellite Antennas
 
A Multi-band Slot Antenna for GPS
A Multi-band Slot Antenna for   GPSA Multi-band Slot Antenna for   GPS
A Multi-band Slot Antenna for GPS
 
microwave-engineering
microwave-engineeringmicrowave-engineering
microwave-engineering
 
TYPES OF ANTENNA
TYPES OF ANTENNA TYPES OF ANTENNA
TYPES OF ANTENNA
 
Antenna slide
Antenna slideAntenna slide
Antenna slide
 
Circular polarized fractal antenna(14 09)
Circular polarized fractal antenna(14 09)Circular polarized fractal antenna(14 09)
Circular polarized fractal antenna(14 09)
 
Spiral Antenna
Spiral Antenna  Spiral Antenna
Spiral Antenna
 
Ph.D Research proposal
Ph.D Research proposalPh.D Research proposal
Ph.D Research proposal
 
Thesis presentation
 Thesis presentation Thesis presentation
Thesis presentation
 
Dual Band Microstrip Antenna
Dual Band Microstrip AntennaDual Band Microstrip Antenna
Dual Band Microstrip Antenna
 
Log periodic antenna
Log periodic antennaLog periodic antenna
Log periodic antenna
 

Viewers also liked

Microstrip Patch Antenna Design
Microstrip Patch Antenna DesignMicrostrip Patch Antenna Design
Microstrip Patch Antenna DesignAmit Samanta
 
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
Design and Simulation Microstrip patch Antenna  using CST Microwave StudioDesign and Simulation Microstrip patch Antenna  using CST Microwave Studio
Design and Simulation Microstrip patch Antenna using CST Microwave StudioAymen Al-obaidi
 
Design of a rectangular patch antenna
Design of a rectangular patch antennaDesign of a rectangular patch antenna
Design of a rectangular patch antennaAzlin lolin
 
gain & directivity enhancement of patch antenna using metamaterial
gain & directivity enhancement of patch antenna using metamaterialgain & directivity enhancement of patch antenna using metamaterial
gain & directivity enhancement of patch antenna using metamaterialRitesh Kumar
 
Micro strip antenna (siet) 1
Micro strip antenna (siet) 1Micro strip antenna (siet) 1
Micro strip antenna (siet) 1Rajshree Kesarwani
 
Nautical Rules of the Road
Nautical Rules of the RoadNautical Rules of the Road
Nautical Rules of the RoadLynn Seckinger
 
Coaxial feed microstrip patch antenna using HFSS
 Coaxial feed microstrip patch antenna using  HFSS Coaxial feed microstrip patch antenna using  HFSS
Coaxial feed microstrip patch antenna using HFSSMithilesh Naphade
 
Microstrip patch-antenna
Microstrip patch-antennaMicrostrip patch-antenna
Microstrip patch-antennaaquibjamal123
 
Rectangularmicrostrippatchantenna
RectangularmicrostrippatchantennaRectangularmicrostrippatchantenna
RectangularmicrostrippatchantennaAbhimanyu Sharma
 

Viewers also liked (14)

Microstrip Patch Antenna Design
Microstrip Patch Antenna DesignMicrostrip Patch Antenna Design
Microstrip Patch Antenna Design
 
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
Design and Simulation Microstrip patch Antenna  using CST Microwave StudioDesign and Simulation Microstrip patch Antenna  using CST Microwave Studio
Design and Simulation Microstrip patch Antenna using CST Microwave Studio
 
bhel intrn
bhel intrnbhel intrn
bhel intrn
 
Consolidated
ConsolidatedConsolidated
Consolidated
 
Design of a rectangular patch antenna
Design of a rectangular patch antennaDesign of a rectangular patch antenna
Design of a rectangular patch antenna
 
gain & directivity enhancement of patch antenna using metamaterial
gain & directivity enhancement of patch antenna using metamaterialgain & directivity enhancement of patch antenna using metamaterial
gain & directivity enhancement of patch antenna using metamaterial
 
Inroduction to HFSS
Inroduction to HFSSInroduction to HFSS
Inroduction to HFSS
 
Micro strip antenna (siet) 1
Micro strip antenna (siet) 1Micro strip antenna (siet) 1
Micro strip antenna (siet) 1
 
Nautical Rules of the Road
Nautical Rules of the RoadNautical Rules of the Road
Nautical Rules of the Road
 
Coaxial feed microstrip patch antenna using HFSS
 Coaxial feed microstrip patch antenna using  HFSS Coaxial feed microstrip patch antenna using  HFSS
Coaxial feed microstrip patch antenna using HFSS
 
Microstrip patch-antenna
Microstrip patch-antennaMicrostrip patch-antenna
Microstrip patch-antenna
 
Hfss user guide
Hfss user guideHfss user guide
Hfss user guide
 
Ppt
PptPpt
Ppt
 
Rectangularmicrostrippatchantenna
RectangularmicrostrippatchantennaRectangularmicrostrippatchantenna
Rectangularmicrostrippatchantenna
 

Similar to microstrip antennae design & vhdl ppt

Microstrip patch antenna in hfss Anyss presentation PPT for college final year
Microstrip patch antenna in hfss Anyss presentation PPT for college final yearMicrostrip patch antenna in hfss Anyss presentation PPT for college final year
Microstrip patch antenna in hfss Anyss presentation PPT for college final yearRohitKumar639388
 
ANSYSS Microstrip patch Anteena using HFSS.pptx
ANSYSS Microstrip patch  Anteena using HFSS.pptxANSYSS Microstrip patch  Anteena using HFSS.pptx
ANSYSS Microstrip patch Anteena using HFSS.pptxRobinKumar260480
 
Rectangular Microstrip Antenna Parameter Study with HFSS
Rectangular Microstrip Antenna Parameter Study with HFSSRectangular Microstrip Antenna Parameter Study with HFSS
Rectangular Microstrip Antenna Parameter Study with HFSSOmkar Rane
 
Micro strip Antenna
Micro strip AntennaMicro strip Antenna
Micro strip Antennasubash_kotha
 
Design of Series Feed Microstrip Patch Antenna Array using HFSS Simulator
Design of Series Feed Microstrip Patch Antenna Array using HFSS SimulatorDesign of Series Feed Microstrip Patch Antenna Array using HFSS Simulator
Design of Series Feed Microstrip Patch Antenna Array using HFSS Simulatoridescitation
 
Design and Development of High Gain Patch Antenna Array for ISM Applications
Design and Development of High Gain Patch Antenna Array for ISM ApplicationsDesign and Development of High Gain Patch Antenna Array for ISM Applications
Design and Development of High Gain Patch Antenna Array for ISM ApplicationsIRJET Journal
 
Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces Or So...
Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces  Or  So...Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces  Or  So...
Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces Or So...AshishKumarMeena16
 
Digital signal transmission in ofc
Digital signal transmission in ofcDigital signal transmission in ofc
Digital signal transmission in ofcAnkith Shetty
 
Various types of antenna used for transmitting and receiving
Various types of antenna used for transmitting and receivingVarious types of antenna used for transmitting and receiving
Various types of antenna used for transmitting and receivingJay Baria
 
Micro chip patch antenna
Micro chip patch antennaMicro chip patch antenna
Micro chip patch antennaSURYA DEEPAK
 
ProjectPPTAbhik
ProjectPPTAbhikProjectPPTAbhik
ProjectPPTAbhikAvik Ghosh
 
Dual Mode Dual Band pass Filter Using Circular Patch Antenna.
Dual Mode Dual Band pass Filter Using Circular Patch Antenna.Dual Mode Dual Band pass Filter Using Circular Patch Antenna.
Dual Mode Dual Band pass Filter Using Circular Patch Antenna.Aishwary Singh
 
Project Paper
Project Paper Project Paper
Project Paper King Ram
 
Prediction of viable performance of wireless sensor network by using finite
Prediction of viable performance of wireless sensor network by using finitePrediction of viable performance of wireless sensor network by using finite
Prediction of viable performance of wireless sensor network by using finiteIAEME Publication
 
MINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRY
MINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRYMINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRY
MINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRYIAEME Publication
 
Design of a Rectangular Microstrip Patch Antenna Using Inset Feed Technique
Design of a Rectangular Microstrip Patch Antenna Using Inset Feed TechniqueDesign of a Rectangular Microstrip Patch Antenna Using Inset Feed Technique
Design of a Rectangular Microstrip Patch Antenna Using Inset Feed TechniqueIOSR Journals
 
Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...
Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...
Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...Mohamed Hassouna
 
Microstrip patch antenna using Ku and K band
Microstrip patch antenna using Ku and K bandMicrostrip patch antenna using Ku and K band
Microstrip patch antenna using Ku and K bandNahida Ali
 

Similar to microstrip antennae design & vhdl ppt (20)

Microstrip patch antenna in hfss Anyss presentation PPT for college final year
Microstrip patch antenna in hfss Anyss presentation PPT for college final yearMicrostrip patch antenna in hfss Anyss presentation PPT for college final year
Microstrip patch antenna in hfss Anyss presentation PPT for college final year
 
ANSYSS Microstrip patch Anteena using HFSS.pptx
ANSYSS Microstrip patch  Anteena using HFSS.pptxANSYSS Microstrip patch  Anteena using HFSS.pptx
ANSYSS Microstrip patch Anteena using HFSS.pptx
 
Rectangular Microstrip Antenna Parameter Study with HFSS
Rectangular Microstrip Antenna Parameter Study with HFSSRectangular Microstrip Antenna Parameter Study with HFSS
Rectangular Microstrip Antenna Parameter Study with HFSS
 
Micro strip Antenna
Micro strip AntennaMicro strip Antenna
Micro strip Antenna
 
Design of Series Feed Microstrip Patch Antenna Array using HFSS Simulator
Design of Series Feed Microstrip Patch Antenna Array using HFSS SimulatorDesign of Series Feed Microstrip Patch Antenna Array using HFSS Simulator
Design of Series Feed Microstrip Patch Antenna Array using HFSS Simulator
 
Design and Development of High Gain Patch Antenna Array for ISM Applications
Design and Development of High Gain Patch Antenna Array for ISM ApplicationsDesign and Development of High Gain Patch Antenna Array for ISM Applications
Design and Development of High Gain Patch Antenna Array for ISM Applications
 
Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces Or So...
Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces  Or  So...Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces  Or  So...
Reconfigurable Intelligent Surface or Intelligent Reflecting Surfaces Or So...
 
Digital signal transmission in ofc
Digital signal transmission in ofcDigital signal transmission in ofc
Digital signal transmission in ofc
 
Various types of antenna used for transmitting and receiving
Various types of antenna used for transmitting and receivingVarious types of antenna used for transmitting and receiving
Various types of antenna used for transmitting and receiving
 
Micro chip patch antenna
Micro chip patch antennaMicro chip patch antenna
Micro chip patch antenna
 
antennas ppt.pdf
antennas ppt.pdfantennas ppt.pdf
antennas ppt.pdf
 
ProjectPPTAbhik
ProjectPPTAbhikProjectPPTAbhik
ProjectPPTAbhik
 
Dual Mode Dual Band pass Filter Using Circular Patch Antenna.
Dual Mode Dual Band pass Filter Using Circular Patch Antenna.Dual Mode Dual Band pass Filter Using Circular Patch Antenna.
Dual Mode Dual Band pass Filter Using Circular Patch Antenna.
 
Project Paper
Project Paper Project Paper
Project Paper
 
Prediction of viable performance of wireless sensor network by using finite
Prediction of viable performance of wireless sensor network by using finitePrediction of viable performance of wireless sensor network by using finite
Prediction of viable performance of wireless sensor network by using finite
 
MINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRY
MINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRYMINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRY
MINIATURISATION OF PATCH ANTENNA USING NOVEL FRACTAL GEOMETRY
 
Design of a Rectangular Microstrip Patch Antenna Using Inset Feed Technique
Design of a Rectangular Microstrip Patch Antenna Using Inset Feed TechniqueDesign of a Rectangular Microstrip Patch Antenna Using Inset Feed Technique
Design of a Rectangular Microstrip Patch Antenna Using Inset Feed Technique
 
Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...
Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...
Performance Analysis of Corporate Feed Rectangular Patch Element and Circular...
 
Microstrip patch antenna using Ku and K band
Microstrip patch antenna using Ku and K bandMicrostrip patch antenna using Ku and K band
Microstrip patch antenna using Ku and K band
 
595290
595290595290
595290
 

Recently uploaded

What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
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
 
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
 
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
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
(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
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
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
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 

Recently uploaded (20)

What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.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
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
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...
 
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
 
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 )
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
(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...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
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
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
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
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 

microstrip antennae design & vhdl ppt

  • 1. SUMMER TRAINING WORK ON ANTENNA DESIGN & VHDL Submitted By Vipin Yadav 2K13-MRCE-MT-ECE-015
  • 2. INDEX • Antenna Introduction • HFSS Software • Patch shapes and substrate • Design Specifications & Feeding techniques • Simulation results • VHDL & Its Coding Styles • Types of Modelling • Hierarchy & statements in VHDL
  • 3. INTRODUCTION • An antenna is an electrical device which converts electric currents into radio waves, and vice versa. It is usually used with a radio transmitter or radio receiver. • In transmission, a radio transmitter applies an oscillating radio frequency electric current to the antenna's terminals, and the antenna radiates the energy from the current as electromagnetic waves (radio waves).
  • 4. WHY ANTENNAS ? • Need of antenna arisen when two person wanted to communicate between them when separated by some distance and wired communication is not possible. • Antennas are required by any radio receiver or transmitter to couple its electrical connection to the electromagnetic field. • Radio waves are electromagnetic waves which carry signals through the air (or through space) at the speed of light with almost no transmission loss.
  • 5. HFSS SOFTWARE • HFSS (high frequency structural simulator) is a high-performance full-wave electromagnetic(EM) field simulator for arbitrary 3D volumetric passive device modelling that takes advantage of the familiar Microsoft Windows graphical user interface. • It integrates simulation, visualization, solid modelling, and automation in an easy-to-learn environment where solutions to 3D EM problem are quickly and accurately obtained. • Ansoft HFSS employs the Finite Element Method(FEM), adaptive meshing, and brilliant graphics to give unparalleled performance and insight to all of your 3D EM problems.
  • 6. Microstrip Antenna In its most basic form, a Microstrip patch antenna consists of a radiating patch on one side of a dielectric substrate which has a ground plane on the other side For good antenna performance, a thick dielectric substrate having a low dielectric constant is desirable since this provides better efficiency, larger bandwidth and better radiation . Structure of a Microstrip Patch Antenna  In genaral Micro strip antennas are also known as “ PRINTED ANTENNAS ”.  These are mostly used at microwave frequencies.  Because the size of the antenna is directly tied the wavelength at the resonant frequency.  Micro strip patch antenna or patch antenna is a narrowband wide-beam antenna.
  • 7. Patch Shapes Are: (a) Single radiating patches (b) Single slot radiator
  • 8. Substrates are: The most commonly used substrates are, 1) Honey comb(dielectric constant=1.07) 2)Duroid(dielectric constant=2.32) 3)Quartz(dielectric constant=3.8) 4)Alumina(dielectric constant=10)  A thicker substrate will increase the radiation power , reduce conductor loss and improve Band width.
  • 9. Feeding Techniques:  Coaxial feed  Microstrip feed  Proximity coupled microstrip feed  Aperture coupled microstrip feed  Coplanar wave guide  Line Feed 1-Microstrip Line Feed : In this type of feed technique, a conducting strip is connected directly to the edge of the microstrip patch. This kind of feed arrangement has the advantage that the feed can be etched on the same substrate to provide a planar structure.
  • 10. 2-Coaxial Feed :- The Coaxial feed or probe feed is a very common technique used for feeding Microstrip patch antennas. Probe fed Rectangular Microstrip Patch Antenna from top The main advantage of this type of feeding scheme is that the feed can be placed at any desired location inside the patch in order to match with its input impedance. This feed method is easy to fabricate and has low spurious radiation. However, its major disadvantage is that it Coaxial Ground Plane Connector Substrate Patch provides narrow bandwidth and is difficult to model since a hole has to be drilled in the substrate . and the connector protrudes outside the ground plane, thus not making it completely planar for thick substrates . Probe fed Rectangular Microstrip Patch Antenna from side view
  • 11. 3-Aperture Coupled Feed In this type of feed technique, the radiating patch and the microstrip feed line are separated by the ground plane . Coupling between the patch and the feed line is made through a slot or an aperture in the ground plane. The coupling aperture is usually centered under the Aperture-coupled feed patch, leading to lower cross polarization due to symmetry of the configuration. The amount of coupling from the feed line to the patch is determined by the shape, size and location of the aperture.
  • 12. 3.2 Project specifications Project Specs Operating Frequency : 1.575 GHz Input Impedance: 50 Ohm VSWR: 2:1 @ 1.575 GHz Polarization: RHCP Bandwidth: 3.8% (~60 MHz) Substrate RT/Duroid (Rogers Corp.) e= 2.22 h= 125 mils tan d = 0.001
  • 13. Simulation Results of a 1.575 GHz GPS Receiver Antenna Design Return Loss
  • 14. VSWR PLOT 2 D PATTERN
  • 15. VHDL What does HDL stand for? HDL is short for Hardware Description Language (VHDL – VHSIC Hardware Description Language) (Very High Speed Integrated Circuit)
  • 16. Basic Form of VHDL Code • Every VHDL design description consists of at least one entity / architecture pair, or one entity with multiple architectures. • The entity section is used to declare I/O ports of the circuit. The architecture portion describes the circuit’s behavior. • A behavioral model is similar to a “black box”. • Standardized design libraries are included before entity declaration.
  • 17. Standard Libraries • Include library ieee; before entity declaration. • ieee.std_logic_1164 defines a standard for designers to use in describing interconnection data types used in VHDL modeling. • ieee.std_logic_arith provides a set of arithmetic, conversion, comparison functions for signed, unsigned, std_ulogic, std_logic, std_logic_vector. • Ieee.std_logic_unsigned provides a set of unsigned arithmetic, conversion, and comparison functions for std_logic_vector.
  • 18. Entity Declaration • An entity declaration describes the interface of the component. • PORT clause indicates input and output ports. • An entity can be thought of as a symbol for a component.
  • 19. Port Declaration • PORT declaration establishes the interface of the object to the outside world. • Three parts of the PORT declaration • Name • Any identifier that is not a reserved word. • Mode • In, Out, Inout, Buffer • Data type • Any declared or predefined datatype. • Sample PORT declaration syntax:
  • 20. Architecture Declaration • Architecture declarations describe the operation of the component. • Many architectures may exist for one entity, but only one may be active at a time. • An architecture is similar to a schematic of the component.
  • 21. Modeling Styles • There are three modeling styles: • Behavioral (Sequential) • Data flow • Structural
  • 23. Sequential vs Concurrent Statements • VHDL provides two different types of execution: sequential and concurrent. • Different types of execution are useful for modeling of real hardware. • Supports various levels of abstraction. • Sequential statements view hardware from a “programmer” approach. • Concurrent statements are order-independent and asynchronous.