Exp-6 Aim-Study of Satellite Downlink Design Software-Octave Theory

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Exp-6

Aim-Study of Satellite Downlink Design


Software-Octave
Theory-

In this process, satellite sends the signal and the earth station receives
it. The equation is same as the satellite uplink with a difference that we
use the abbreviation “D” everywhere instead of “U” to denote the
downlink phenomena.

Its mathematical equation can be written as;


[C/N0]D=[EIRP]D+[G/T]D−[LOSSES]D−K

Where,

 [CN0] is the carrier to noise density ratio


 [GT] is the earth station receiver G/T ratio and units are dB/K
Here, all the losses that are present around earth stations.

In the above equation we have not included the signal bandwidth B.


However, if we include that the equation will be modified as follows.
[C/N0]D=[EIRP]D+[G/T]D−[LOSSES]D−K−B
Conclusion
Program
clc;
clear all;
close all;

%Study of Satellite downlink design

EIRPs=input('Enter saturated EIRP value in dBW=');


BOo=input('Enter the output backoff in dB=');
FSL=input('Enter free space loss indB=');
LOSSES=input('Enter the other downlink losses in dB=');
G_T=input('Enter the earth station G/T in in dB/K=');
k=1.38*10^-23;
C_No=EIRPs-BOo+G_T-(FSL+LOSSES)-10*log10(k)

OUTPUT
Enter saturated EIRP value in dBW=25
Enter the output backoff in dB=6
Enter free space loss indB=196
Enter the other downlink losses in dB=1.5
Enter the earth station G/T in in dB/K=41
C_No = 91.101

You might also like