SlideShare a Scribd company logo
International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163
Issue 10, Volume 4 (October 2017) www.ijirae.com
_________________________________________________________________________________________________
IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 |
ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91
IJIRAE © 2014- 17, All Rights Reserved Page -45
MISSILE TELEMETRY DATALINK CALCULATION
(A MATLAB PROGRAM)
ILAPAVULURI UMAMAHESHWAR RAO,
SCIENTIST (Retd) Research Center IMARAT,
DRDO, Hyderabad, India
Email: iumrao@rediffmail.com;
Manuscript History
Number: IJIRAE/RS/Vol.04/Issue10/OCAE10088
DOI: 10.26562/IJIRAE.2017.OCAE10088
Received: 22, September 2017
Final Correction: 30, September 2017
Final Accepted: 25, October 2017
Published: October 2017
Editor: Dr.A.Arul L.S, Chief Editor, IJIRAE, AM Publications, India
Copyright: ©2017 This is an open access article distributed under the terms of the Creative Commons Attribution
License, Which Permits unrestricted use, distribution, and reproduction in any medium, provided the original author
and source are credited.
Abstract: This article describes a missile telemetry data link calculation analysed by executing matlab program. A
missile of a length of 9 meters and a Launchpad of a height of 30 meters having a telemetry data link to a receiver
at a distance of 30 to 150 meters.(MOVING OR MOBILE”) The field strength is calculated by using matlab program
using FRIIS Transmission formula and Empirical Loss models of propagation loss and polarization mis match loss
and cable attenuation and reflection coefficient of both Transmitter and Receiver. The loss model taken is
SAKAGAMI MODEL.
Indexing terms: f,d,W, THETA, hs, H, hb, hbo.
I. INTRODUCTION
The telemetry data link analysis is done by using a matlab program. The transmitting antenna is a simple patch of
gain of 3dB. And frequency is 3GHz.The receiving antenna is a pyramidal horn of gain 7Db .The Source Tx.power is
25 watts. The power delivered(i.e.) The TX.power output is 10 watts .Propagation prediction models play an
important role in the design of mobile radio communication system by specifying the key parameters such as
Tx.power, frequency reuse and so on. For example one relatively long range prediction model for macrocell systems
uses base and mobile station antenna heights and frequency. On the other hand a prediction model for short range
estimation that was designed for micro cell systems uses building height, street width and so on.
The long range prediction models are OKUMURA-HATA Model and IBRAHIM-PARSON MODEL etc. In the models
described above, the distance d is more than 1Km. and the base station antenna height hb is higher than the roof top
level of surrounding buildings. This means that the models are suitable for macro cell systems.
International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163
Issue 10, Volume 4 (October 2017) www.ijirae.com
_________________________________________________________________________________________________
IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 |
ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91
IJIRAE © 2014- 17, All Rights Reserved Page -46
II. DESCRIPTION OF MISSILE TELEMETRY DATALINK
A matlab program is executed for analysis of missile telemetry data link by selecting a range of less than 1Km.(i.e.50-
300meters).and a prediction formula for loss factor is SAKAGAMI etal model.
The formula is as follows:
L(Db)=100-7.1log(W)+0.023(THETA)+1.4log(hs)+6.1log(H)-[24.37(H/hbo).^2]log(hb)+[43.42-
3.1log(hb)]log(d)+20log(f)+exp{13[log(f)-3.23]}.
The parameters are
F: frequency 3 GHz.
D distance from transmission point (meters) 50-300
W street width:-50 meters.
THETA: street angle to the base station(degrees):90
hs: building height above ground in meters:80
H: average building height in meters-30
hb: Transmitter station antenna height above the receiver:100meters
hbo: missile and launch pad height above ground in meters:100.
The matlab program is executed using the SAKLAGAMI MODEL and the results are plotted as figure1 & figure2.
III. CONCLUSION
The simulation is done to calculate the field strength while for a fixed tx and a mobile receiver which moved from 50
to 300 meters. It is observed that the field strength and received power are constant and not varied. The SAKAGAMI
MODEL may indicate the ultimate empirical formula for short range pathloss prediction. For smaller area prediction,
it seems necessary to consider the actual propagation paths between base and m mobile station antennas using
precise environment data of the prediction area.Although the details are taken for base and mobile communication
the same holds true for missile telemetry.
REFERENCES
1. Y.Okumara,E.Ohmori,T.Kawano,and K.Fukuda,"Fieldstrength and its variability in VHF and UHF Land Mobile
Service",Rev.Elec.Commn.Lab,vol.15,pp.825-873,1968
2. W.C.Y.Lee, Mobile communication Engineering,McGraw-Hill,NewYork,1982.
3. M.F.Ibrahim and J.D.Person,"Signal strength prediction in Buildup Areas,part1:Median Signal strength ,,"IEE
Proc,vol130,partF,pp 377-384.,1983
4. S.Sakagami and K.Kuboi,"Mobile Propagation loss Prediction for Arbitrary Urban
Environments",Elec.Commun.Japan,part1,vol.74,No.10 pp 87-99.1991.
International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163
Issue 10, Volume 4 (October 2017) www.ijirae.com
_________________________________________________________________________________________________
IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 |
ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91
IJIRAE © 2014- 17, All Rights Reserved Page -47
%APPENDIX-A MATLAB PROGRAM
ps=input('Enter the value of sourcr tx.power in watts=');
psdb=10*log10(ps);
f=input('Enter the value of frequency in Hz=');
c=3.0e+08;%velocity of light in meters
pt=input('Enter the value of tx.power in watts=');
ptdb=10*log10(pt);
Ltc=psdb-ptdb;
Lrc=Ltc;
gammat=1.0;
gammar=1.0;
R=50:1:300;%range fropm tx.im meters
%R=50:1:3000;
pant=pt;
pantdb=10*log10(pant);
GT=input('Enter the value of tx.antenna gain indb=');
GR=input('Enter the value of RX.antenna gain in db=');
lambda=c/f;
PR=pantdb+GT+GR+20*log10(lambda)-Ltc-Lrc-20*log10(4*pi*R);
% CALCULATION OF LOSS FACTOR
d=50:1:300;%distance from tx.in meters
W=50;%STREETWIDTH IN METERS.
THETA=90;%street angle in degrees.
hs=80;%building height above the ground in meters.
H=30;%Average building height in meters.
hb=100;%base station antenna height above the mobile station inmeters
hbo=39;%missile and launchpad height above ground in meters
% FORMULA TO CALCULATE LOSS FACTOR IN db
LSdb=100-7.1*log10(W)+0.023*(THETA)+1.4*log10(hs)+6.1*log10(H)-[24.37-3.7*(H/hbo).^2]*log10(hb)+[43.42-
3.1*log10(hb)]*log10(d)+20*log10(f)+exp(13.*(log(f)-3.23));
Lpdb=1;%polarization loss in db
PRR=PR-LSdb-Lpdb;
Prec=pinv(log10(PRR))/10;%RECEIVED POWER IN WATTS/MT.^2;
zo=50;
V=sqrt(Prec*zo);
figure(1)
plot(R,V);
figure(2)
plot(R,PRR);
International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163
Issue 10, Volume 4 (October 2017) www.ijirae.com
_________________________________________________________________________________________________
IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 |
ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91
IJIRAE © 2014- 17, All Rights Reserved Page -48
CONCLUSION: This article gives a very interesting parameter field strength value which will not vary at any cost for
short area. Also the propagation models are described such that loss factor can be calculated by using Maltab
Program.
REFERENCES
1. Preliminary Design Review of Air defense in India a Document
2. Missile Telemetry Hand Book
ACKNOWLEDGEMENTS
I would like to thank all the staff of MCT Team in Conducting the Project successfully and team leader
Shri.G.R.Panda -SC-G PGAD./RCI/DRDO, Hyderabad, Telegana, India

More Related Content

PPTX
TINA showcase: Active RFID
PDF
Strategies to Combat Pilot Contamination in Massive MIMO Systems
PDF
BER Performance of MU-MIMO System using Dirty Paper Coding
PPTX
Massive MIMO and Random Matrix
PDF
Beamforming for Multiuser Massive MIMO Systems: Digital versus Hybrid Analog-...
PPT
Precoding
PDF
Multiuser MIMO Vector Perturbation Precoding
PDF
Channel Models for Massive MIMO
TINA showcase: Active RFID
Strategies to Combat Pilot Contamination in Massive MIMO Systems
BER Performance of MU-MIMO System using Dirty Paper Coding
Massive MIMO and Random Matrix
Beamforming for Multiuser Massive MIMO Systems: Digital versus Hybrid Analog-...
Precoding
Multiuser MIMO Vector Perturbation Precoding
Channel Models for Massive MIMO

What's hot (20)

PPTX
VIJAY_Internship_ppt
PDF
Performance Analysis of Massive MIMO Downlink System with Imperfect Channel S...
DOCX
PDF
Interference Mitigation & Massive MIMO for 5G - A Summary of CPqDs Results
PDF
GoogLeNet Insights
PDF
PIMRC 2016 Presentation
PDF
SAUSAGE MINKOWSKI SQUARE PATCH ANTENNA FOR GPS APPLICATION
PDF
Mathumathi
PDF
Path loss models
PDF
IRJET- Structured Compression Sensing Method for Massive MIMO-OFDM Systems
PDF
Beamforming for Antenna Array
PDF
DETECTION OF POWER-LINES IN COMPLEX NATURAL SURROUNDINGS
PDF
CSI Acquisition for FDD-based Massive MIMO Systems
PDF
Massive mimo
PPTX
Adaptive analog beamforming
PDF
Homomorphic Lower Digit Removal and Improved FHE Bootstrapping by Kyoohyung Han
PDF
Massive MIMO: Bristol - Lund Joint Field Trial Experiments and Record Breakin...
PDF
IRJET- Synchronization Scheme of MIMO-OFDM using Monte Carlo Method
PDF
Novel designs of broadband patch
PDF
Interference management in spectrally and energy efficient wireless networks
VIJAY_Internship_ppt
Performance Analysis of Massive MIMO Downlink System with Imperfect Channel S...
Interference Mitigation & Massive MIMO for 5G - A Summary of CPqDs Results
GoogLeNet Insights
PIMRC 2016 Presentation
SAUSAGE MINKOWSKI SQUARE PATCH ANTENNA FOR GPS APPLICATION
Mathumathi
Path loss models
IRJET- Structured Compression Sensing Method for Massive MIMO-OFDM Systems
Beamforming for Antenna Array
DETECTION OF POWER-LINES IN COMPLEX NATURAL SURROUNDINGS
CSI Acquisition for FDD-based Massive MIMO Systems
Massive mimo
Adaptive analog beamforming
Homomorphic Lower Digit Removal and Improved FHE Bootstrapping by Kyoohyung Han
Massive MIMO: Bristol - Lund Joint Field Trial Experiments and Record Breakin...
IRJET- Synchronization Scheme of MIMO-OFDM using Monte Carlo Method
Novel designs of broadband patch
Interference management in spectrally and energy efficient wireless networks
Ad

Similar to MISSILE TELEMETRY DATALINK CALCULATION (A MATLAB PROGRAM) (20)

PDF
System Consideration, Design and Implementation of Point To Point Microwave L...
PDF
5.computer analysis of the cost 231 hata model for path loss estimation at 90...
PDF
A NEW VSAT LINK ABNALYSIS
PDF
IRJET- Statistical Tuning of Hata Model for 3G Communication Networks at 1.85...
PDF
Energy Efficiency of MIMO-OFDM Communication System
PPT
research for radio propagation model.ppt
PDF
Dual U-Slot Microstrip Patch Antenna with Enhanced Bandwidth
PDF
Investigation of outdoor path loss models for wireless communication in bhuj
PDF
Design of Rectangular Shaped Slotted Micro Strip Antenna for Triple Frequency...
PDF
Outdoor path loss models for ieee 802.16
PDF
Design LTE Microstrip Antenna Rectangular Patch with Beetle-Shaped Slot
PDF
2015LISAT_pathloss1
PDF
J010234960
PDF
AN ANALYTICAL ANALYSIS OF PATH LOSS MODELS FOR MOBILE CELLULAR WIRELESS COMMU...
PDF
An Analytical Analysis of Path Loss Models for Mobile Cellular Wireless Commu...
PDF
A Hepta-Band Antenna For Wireless Applications
PDF
AN ANALYTICAL ANALYSIS OF PATH LOSS MODELS FOR MOBILE CELLULAR WIRELESS COMMU...
PDF
Performance Analysis of CIR and Path Loss Propagation Models in the Downlink ...
PDF
New Approach for Determination of Propagation Model Adapted To an Environment...
PDF
New Approach for Determination of Propagation Model Adapted To an Environment...
System Consideration, Design and Implementation of Point To Point Microwave L...
5.computer analysis of the cost 231 hata model for path loss estimation at 90...
A NEW VSAT LINK ABNALYSIS
IRJET- Statistical Tuning of Hata Model for 3G Communication Networks at 1.85...
Energy Efficiency of MIMO-OFDM Communication System
research for radio propagation model.ppt
Dual U-Slot Microstrip Patch Antenna with Enhanced Bandwidth
Investigation of outdoor path loss models for wireless communication in bhuj
Design of Rectangular Shaped Slotted Micro Strip Antenna for Triple Frequency...
Outdoor path loss models for ieee 802.16
Design LTE Microstrip Antenna Rectangular Patch with Beetle-Shaped Slot
2015LISAT_pathloss1
J010234960
AN ANALYTICAL ANALYSIS OF PATH LOSS MODELS FOR MOBILE CELLULAR WIRELESS COMMU...
An Analytical Analysis of Path Loss Models for Mobile Cellular Wireless Commu...
A Hepta-Band Antenna For Wireless Applications
AN ANALYTICAL ANALYSIS OF PATH LOSS MODELS FOR MOBILE CELLULAR WIRELESS COMMU...
Performance Analysis of CIR and Path Loss Propagation Models in the Downlink ...
New Approach for Determination of Propagation Model Adapted To an Environment...
New Approach for Determination of Propagation Model Adapted To an Environment...
Ad

More from AM Publications (20)

PDF
DEVELOPMENT OF TODDLER FAMILY CADRE TRAINING BASED ON ANDROID APPLICATIONS IN...
PDF
TESTING OF COMPOSITE ON DROP-WEIGHT IMPACT TESTING AND DAMAGE IDENTIFICATION ...
PDF
THE USE OF FRACTAL GEOMETRY IN TILING MOTIF DESIGN
PDF
TWO-DIMENSIONAL INVERSION FINITE ELEMENT MODELING OF MAGNETOTELLURIC DATA: CA...
PDF
USING THE GENETIC ALGORITHM TO OPTIMIZE LASER WELDING PARAMETERS FOR MARTENSI...
PDF
ANALYSIS AND DESIGN E-MARKETPLACE FOR MICRO, SMALL AND MEDIUM ENTERPRISES
PDF
REMOTE SENSING AND GEOGRAPHIC INFORMATION SYSTEMS
PDF
EVALUATE THE STRAIN ENERGY ERROR FOR THE LASER WELD BY THE H-REFINEMENT OF TH...
PDF
HMM APPLICATION IN ISOLATED WORD SPEECH RECOGNITION
PDF
PEDESTRIAN DETECTION IN LOW RESOLUTION VIDEOS USING A MULTI-FRAME HOG-BASED D...
PDF
INTELLIGENT BLIND STICK
PDF
EFFECT OF SILICON - RUBBER (SR) SHEETS AS AN ALTERNATIVE FILTER ON HIGH AND L...
PDF
UTILIZATION OF IMMUNIZATION SERVICES AMONG CHILDREN UNDER FIVE YEARS OF AGE I...
PDF
REPRESENTATION OF THE BLOCK DATA ENCRYPTION ALGORITHM IN AN ANALYTICAL FORM F...
PDF
OPTICAL CHARACTER RECOGNITION USING RBFNN
PDF
DETECTION OF MOVING OBJECT
PDF
SIMULATION OF ATMOSPHERIC POLLUTANTS DISPERSION IN AN URBAN ENVIRONMENT
PDF
PREPARATION AND EVALUATION OF WOOL KERATIN BASED CHITOSAN NANOFIBERS FOR AIR ...
PDF
ANALYSIS ON LOAD BALANCING ALGORITHMS IMPLEMENTATION ON CLOUD COMPUTING ENVIR...
PDF
A MODEL BASED APPROACH FOR IMPLEMENTING WLAN SECURITY
DEVELOPMENT OF TODDLER FAMILY CADRE TRAINING BASED ON ANDROID APPLICATIONS IN...
TESTING OF COMPOSITE ON DROP-WEIGHT IMPACT TESTING AND DAMAGE IDENTIFICATION ...
THE USE OF FRACTAL GEOMETRY IN TILING MOTIF DESIGN
TWO-DIMENSIONAL INVERSION FINITE ELEMENT MODELING OF MAGNETOTELLURIC DATA: CA...
USING THE GENETIC ALGORITHM TO OPTIMIZE LASER WELDING PARAMETERS FOR MARTENSI...
ANALYSIS AND DESIGN E-MARKETPLACE FOR MICRO, SMALL AND MEDIUM ENTERPRISES
REMOTE SENSING AND GEOGRAPHIC INFORMATION SYSTEMS
EVALUATE THE STRAIN ENERGY ERROR FOR THE LASER WELD BY THE H-REFINEMENT OF TH...
HMM APPLICATION IN ISOLATED WORD SPEECH RECOGNITION
PEDESTRIAN DETECTION IN LOW RESOLUTION VIDEOS USING A MULTI-FRAME HOG-BASED D...
INTELLIGENT BLIND STICK
EFFECT OF SILICON - RUBBER (SR) SHEETS AS AN ALTERNATIVE FILTER ON HIGH AND L...
UTILIZATION OF IMMUNIZATION SERVICES AMONG CHILDREN UNDER FIVE YEARS OF AGE I...
REPRESENTATION OF THE BLOCK DATA ENCRYPTION ALGORITHM IN AN ANALYTICAL FORM F...
OPTICAL CHARACTER RECOGNITION USING RBFNN
DETECTION OF MOVING OBJECT
SIMULATION OF ATMOSPHERIC POLLUTANTS DISPERSION IN AN URBAN ENVIRONMENT
PREPARATION AND EVALUATION OF WOOL KERATIN BASED CHITOSAN NANOFIBERS FOR AIR ...
ANALYSIS ON LOAD BALANCING ALGORITHMS IMPLEMENTATION ON CLOUD COMPUTING ENVIR...
A MODEL BASED APPROACH FOR IMPLEMENTING WLAN SECURITY

Recently uploaded (20)

PPTX
Vitamins & Minerals: Complete Guide to Functions, Food Sources, Deficiency Si...
PDF
SEHH2274 Organic Chemistry Notes 1 Structure and Bonding.pdf
PPTX
ANEMIA WITH LEUKOPENIA MDS 07_25.pptx htggtftgt fredrctvg
PPT
protein biochemistry.ppt for university classes
PPT
POSITIONING IN OPERATION THEATRE ROOM.ppt
PPTX
7. General Toxicologyfor clinical phrmacy.pptx
PPTX
Cell Membrane: Structure, Composition & Functions
PDF
An interstellar mission to test astrophysical black holes
PPTX
2Systematics of Living Organisms t-.pptx
PPTX
Microbiology with diagram medical studies .pptx
PPTX
famous lake in india and its disturibution and importance
PDF
ELS_Q1_Module-11_Formation-of-Rock-Layers_v2.pdf
PPTX
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
PDF
CAPERS-LRD-z9:AGas-enshroudedLittleRedDotHostingaBroad-lineActive GalacticNuc...
PPTX
neck nodes and dissection types and lymph nodes levels
PPTX
DRUG THERAPY FOR SHOCK gjjjgfhhhhh.pptx.
PPTX
2. Earth - The Living Planet Module 2ELS
PPTX
Introduction to Fisheries Biotechnology_Lesson 1.pptx
PPTX
Taita Taveta Laboratory Technician Workshop Presentation.pptx
PPTX
ognitive-behavioral therapy, mindfulness-based approaches, coping skills trai...
Vitamins & Minerals: Complete Guide to Functions, Food Sources, Deficiency Si...
SEHH2274 Organic Chemistry Notes 1 Structure and Bonding.pdf
ANEMIA WITH LEUKOPENIA MDS 07_25.pptx htggtftgt fredrctvg
protein biochemistry.ppt for university classes
POSITIONING IN OPERATION THEATRE ROOM.ppt
7. General Toxicologyfor clinical phrmacy.pptx
Cell Membrane: Structure, Composition & Functions
An interstellar mission to test astrophysical black holes
2Systematics of Living Organisms t-.pptx
Microbiology with diagram medical studies .pptx
famous lake in india and its disturibution and importance
ELS_Q1_Module-11_Formation-of-Rock-Layers_v2.pdf
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
CAPERS-LRD-z9:AGas-enshroudedLittleRedDotHostingaBroad-lineActive GalacticNuc...
neck nodes and dissection types and lymph nodes levels
DRUG THERAPY FOR SHOCK gjjjgfhhhhh.pptx.
2. Earth - The Living Planet Module 2ELS
Introduction to Fisheries Biotechnology_Lesson 1.pptx
Taita Taveta Laboratory Technician Workshop Presentation.pptx
ognitive-behavioral therapy, mindfulness-based approaches, coping skills trai...

MISSILE TELEMETRY DATALINK CALCULATION (A MATLAB PROGRAM)

  • 1. International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163 Issue 10, Volume 4 (October 2017) www.ijirae.com _________________________________________________________________________________________________ IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 | ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91 IJIRAE © 2014- 17, All Rights Reserved Page -45 MISSILE TELEMETRY DATALINK CALCULATION (A MATLAB PROGRAM) ILAPAVULURI UMAMAHESHWAR RAO, SCIENTIST (Retd) Research Center IMARAT, DRDO, Hyderabad, India Email: iumrao@rediffmail.com; Manuscript History Number: IJIRAE/RS/Vol.04/Issue10/OCAE10088 DOI: 10.26562/IJIRAE.2017.OCAE10088 Received: 22, September 2017 Final Correction: 30, September 2017 Final Accepted: 25, October 2017 Published: October 2017 Editor: Dr.A.Arul L.S, Chief Editor, IJIRAE, AM Publications, India Copyright: ©2017 This is an open access article distributed under the terms of the Creative Commons Attribution License, Which Permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. Abstract: This article describes a missile telemetry data link calculation analysed by executing matlab program. A missile of a length of 9 meters and a Launchpad of a height of 30 meters having a telemetry data link to a receiver at a distance of 30 to 150 meters.(MOVING OR MOBILE”) The field strength is calculated by using matlab program using FRIIS Transmission formula and Empirical Loss models of propagation loss and polarization mis match loss and cable attenuation and reflection coefficient of both Transmitter and Receiver. The loss model taken is SAKAGAMI MODEL. Indexing terms: f,d,W, THETA, hs, H, hb, hbo. I. INTRODUCTION The telemetry data link analysis is done by using a matlab program. The transmitting antenna is a simple patch of gain of 3dB. And frequency is 3GHz.The receiving antenna is a pyramidal horn of gain 7Db .The Source Tx.power is 25 watts. The power delivered(i.e.) The TX.power output is 10 watts .Propagation prediction models play an important role in the design of mobile radio communication system by specifying the key parameters such as Tx.power, frequency reuse and so on. For example one relatively long range prediction model for macrocell systems uses base and mobile station antenna heights and frequency. On the other hand a prediction model for short range estimation that was designed for micro cell systems uses building height, street width and so on. The long range prediction models are OKUMURA-HATA Model and IBRAHIM-PARSON MODEL etc. In the models described above, the distance d is more than 1Km. and the base station antenna height hb is higher than the roof top level of surrounding buildings. This means that the models are suitable for macro cell systems.
  • 2. International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163 Issue 10, Volume 4 (October 2017) www.ijirae.com _________________________________________________________________________________________________ IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 | ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91 IJIRAE © 2014- 17, All Rights Reserved Page -46 II. DESCRIPTION OF MISSILE TELEMETRY DATALINK A matlab program is executed for analysis of missile telemetry data link by selecting a range of less than 1Km.(i.e.50- 300meters).and a prediction formula for loss factor is SAKAGAMI etal model. The formula is as follows: L(Db)=100-7.1log(W)+0.023(THETA)+1.4log(hs)+6.1log(H)-[24.37(H/hbo).^2]log(hb)+[43.42- 3.1log(hb)]log(d)+20log(f)+exp{13[log(f)-3.23]}. The parameters are F: frequency 3 GHz. D distance from transmission point (meters) 50-300 W street width:-50 meters. THETA: street angle to the base station(degrees):90 hs: building height above ground in meters:80 H: average building height in meters-30 hb: Transmitter station antenna height above the receiver:100meters hbo: missile and launch pad height above ground in meters:100. The matlab program is executed using the SAKLAGAMI MODEL and the results are plotted as figure1 & figure2. III. CONCLUSION The simulation is done to calculate the field strength while for a fixed tx and a mobile receiver which moved from 50 to 300 meters. It is observed that the field strength and received power are constant and not varied. The SAKAGAMI MODEL may indicate the ultimate empirical formula for short range pathloss prediction. For smaller area prediction, it seems necessary to consider the actual propagation paths between base and m mobile station antennas using precise environment data of the prediction area.Although the details are taken for base and mobile communication the same holds true for missile telemetry. REFERENCES 1. Y.Okumara,E.Ohmori,T.Kawano,and K.Fukuda,"Fieldstrength and its variability in VHF and UHF Land Mobile Service",Rev.Elec.Commn.Lab,vol.15,pp.825-873,1968 2. W.C.Y.Lee, Mobile communication Engineering,McGraw-Hill,NewYork,1982. 3. M.F.Ibrahim and J.D.Person,"Signal strength prediction in Buildup Areas,part1:Median Signal strength ,,"IEE Proc,vol130,partF,pp 377-384.,1983 4. S.Sakagami and K.Kuboi,"Mobile Propagation loss Prediction for Arbitrary Urban Environments",Elec.Commun.Japan,part1,vol.74,No.10 pp 87-99.1991.
  • 3. International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163 Issue 10, Volume 4 (October 2017) www.ijirae.com _________________________________________________________________________________________________ IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 | ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91 IJIRAE © 2014- 17, All Rights Reserved Page -47 %APPENDIX-A MATLAB PROGRAM ps=input('Enter the value of sourcr tx.power in watts='); psdb=10*log10(ps); f=input('Enter the value of frequency in Hz='); c=3.0e+08;%velocity of light in meters pt=input('Enter the value of tx.power in watts='); ptdb=10*log10(pt); Ltc=psdb-ptdb; Lrc=Ltc; gammat=1.0; gammar=1.0; R=50:1:300;%range fropm tx.im meters %R=50:1:3000; pant=pt; pantdb=10*log10(pant); GT=input('Enter the value of tx.antenna gain indb='); GR=input('Enter the value of RX.antenna gain in db='); lambda=c/f; PR=pantdb+GT+GR+20*log10(lambda)-Ltc-Lrc-20*log10(4*pi*R); % CALCULATION OF LOSS FACTOR d=50:1:300;%distance from tx.in meters W=50;%STREETWIDTH IN METERS. THETA=90;%street angle in degrees. hs=80;%building height above the ground in meters. H=30;%Average building height in meters. hb=100;%base station antenna height above the mobile station inmeters hbo=39;%missile and launchpad height above ground in meters % FORMULA TO CALCULATE LOSS FACTOR IN db LSdb=100-7.1*log10(W)+0.023*(THETA)+1.4*log10(hs)+6.1*log10(H)-[24.37-3.7*(H/hbo).^2]*log10(hb)+[43.42- 3.1*log10(hb)]*log10(d)+20*log10(f)+exp(13.*(log(f)-3.23)); Lpdb=1;%polarization loss in db PRR=PR-LSdb-Lpdb; Prec=pinv(log10(PRR))/10;%RECEIVED POWER IN WATTS/MT.^2; zo=50; V=sqrt(Prec*zo); figure(1) plot(R,V); figure(2) plot(R,PRR);
  • 4. International Journal of Innovative Research in Advanced Engineering (IJIRAE) ISSN: 2349-2163 Issue 10, Volume 4 (October 2017) www.ijirae.com _________________________________________________________________________________________________ IJIRAE: Impact Factor Value – SJIF: Innospace, Morocco (2016): 3.916 | PIF: 2.469 | Jour Info: 4.085 | ISRAJIF (2016): 3.715 | Indexcopernicus: (ICV 2015): 47.91 IJIRAE © 2014- 17, All Rights Reserved Page -48 CONCLUSION: This article gives a very interesting parameter field strength value which will not vary at any cost for short area. Also the propagation models are described such that loss factor can be calculated by using Maltab Program. REFERENCES 1. Preliminary Design Review of Air defense in India a Document 2. Missile Telemetry Hand Book ACKNOWLEDGEMENTS I would like to thank all the staff of MCT Team in Conducting the Project successfully and team leader Shri.G.R.Panda -SC-G PGAD./RCI/DRDO, Hyderabad, Telegana, India