0% found this document useful (0 votes)
22 views

Link Prog

This document contains source code that prompts a user to input various uplink and downlink satellite communication parameters such as transmitter power, antenna gains, losses, bit rates, and atmospheric losses. It then calculates the uplink effective isotropic radiated power (EIRP) based on the input parameters.

Uploaded by

Abhay Ponnappa
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

Link Prog

This document contains source code that prompts a user to input various uplink and downlink satellite communication parameters such as transmitter power, antenna gains, losses, bit rates, and atmospheric losses. It then calculates the uplink effective isotropic radiated power (EIRP) based on the input parameters.

Uploaded by

Abhay Ponnappa
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

SOURCE CODE:

clear all; clc; disp('ENTER UPLINK PARAMETERS') disp('---------------------------------------') pt=input('Earth station Transmitter output power :'); lbo=input('Earth Station back-off loss : '); lbf=input('Earth station branching and feeder losses :'); at=input('Earth station Transmit antenna gain : '); lu=input('Additional uplink atmospheric losses : '); lp=input('Free-space path loss : '); gte=input('Satellite receiver G/Te ratio : '); bfb=input('Satellite branching and feeder losses:); br=input('Bit rate : '); disp('---------------------------------------') disp('ENTER DOWNLINK PARAMETERS') disp('---------------------------------------') disp('') pt2=input('Satellite transmitter output power :'); lbo2=input('Satellite back-off loss : '); lbf2=input('Satellite branching and feeder losses :');

at2=input('Satellite Transmit antenna gain : '); ld=input('Additional downlink atmospheric losses); lp2=input('Free-space path loss : '); gte2=input('Earth station receiver G/Te ratio : ');
bfb2=input('Earth station branching anfeederlosses); br2=input('Bit rate : ');

disp('--------------------------------); EIRP=pt+at-lbo-lbf; disp('UPLINK BUDGET);

You might also like