Link Budget » History » Version 2

LANVIN, Jean-baptiste, 12/14/2015 11:55 PM

1 2 LANVIN, Jean-baptiste
2 2 LANVIN, Jean-baptiste
{{toc}}
3 2 LANVIN, Jean-baptiste
4 1 LANVIN, Jean-baptiste
h1. Link Budget
5 1 LANVIN, Jean-baptiste
6 1 LANVIN, Jean-baptiste
7 1 LANVIN, Jean-baptiste
h3. Required C/N0 and C/N
8 1 LANVIN, Jean-baptiste
9 1 LANVIN, Jean-baptiste
10 1 LANVIN, Jean-baptiste
The first step in order to do a link budget is to determine the required Eb over N0 we need to achieve a given BER, for the modulation we are using.
11 1 LANVIN, Jean-baptiste
This value can be obtained by using theoretical curves as shown in the figure below.
12 1 LANVIN, Jean-baptiste
13 1 LANVIN, Jean-baptiste
!BER_curves.jpg!
14 1 LANVIN, Jean-baptiste
15 1 LANVIN, Jean-baptiste
For our project, the wanted bit error rate was BER=10-4 and the modulations we considered were BPSK, QPSK and 2-FSK.
16 1 LANVIN, Jean-baptiste
Therefore, we researched the theoretical value for these values at BER=10-4 and we implemented it in our code (in the VI _required Eb/N0.vi_). In our project, we haven't considered coding but if we had, we would have had to substract the required Eb/N0 by the coding gain.
17 1 LANVIN, Jean-baptiste
18 1 LANVIN, Jean-baptiste
Once we had the required Eb/N0, we could calculate the required C/N0 (carrier to noise ratio) using the formula:
19 1 LANVIN, Jean-baptiste
20 1 LANVIN, Jean-baptiste
<pre>
21 1 LANVIN, Jean-baptiste
22 1 LANVIN, Jean-baptiste
C/N0=Eb/N0*Rb
23 1 LANVIN, Jean-baptiste
24 1 LANVIN, Jean-baptiste
</pre>
25 1 LANVIN, Jean-baptiste
26 1 LANVIN, Jean-baptiste
Rb being the information bit rate 
27 1 LANVIN, Jean-baptiste
Knowing the bandwidth of the signal, the C/N can be calculated using:
28 1 LANVIN, Jean-baptiste
29 1 LANVIN, Jean-baptiste
<pre>
30 1 LANVIN, Jean-baptiste
C/N=1/B*C/N0
31 1 LANVIN, Jean-baptiste
</pre>
32 1 LANVIN, Jean-baptiste
33 1 LANVIN, Jean-baptiste
B being the bandwith of the noise but different definitions exist. Here we used the bandwidth of the RF carrier.
34 1 LANVIN, Jean-baptiste
35 1 LANVIN, Jean-baptiste
h3. C/N0 calculation
36 1 LANVIN, Jean-baptiste
37 1 LANVIN, Jean-baptiste
38 1 LANVIN, Jean-baptiste
In the project, we only considered an AWGN channel (Additive White Gaussian Noise) and therefore we did not include interference in the link budget. So the formula we used to calculate the total C/N0 is:
39 1 LANVIN, Jean-baptiste
40 1 LANVIN, Jean-baptiste
41 1 LANVIN, Jean-baptiste
<pre>
42 1 LANVIN, Jean-baptiste
 (C/N0)t-1 = (C/N0)d-1  +(C/N0)u-1
43 1 LANVIN, Jean-baptiste
</pre>
44 1 LANVIN, Jean-baptiste
45 1 LANVIN, Jean-baptiste
where (C/N0)d and (C/N0)u are respectively the downlink and the uplink carrier to noise ratio.
46 1 LANVIN, Jean-baptiste
47 1 LANVIN, Jean-baptiste
To calculate those ratios, the only loss we considered was the free space path loss and therefore we did not include the rain attenuation losses , the atmospheric gases attenuation or the depointing of the antenna. The formulas we used in C/N0d.vi and C/N0u.vi are:
48 1 LANVIN, Jean-baptiste
49 1 LANVIN, Jean-baptiste
<pre>
50 1 LANVIN, Jean-baptiste
(C/N0)d_dBHz= EIRP_satellite + (G/T)ground -k -Lu_fspl;
51 1 LANVIN, Jean-baptiste
52 1 LANVIN, Jean-baptiste
(C/N0)u_dBHz= EIRP_ground + (G/T)satellite -k -Ld_fspl;
53 1 LANVIN, Jean-baptiste
</pre>
54 1 LANVIN, Jean-baptiste
55 1 LANVIN, Jean-baptiste
where the EIRP is the Equivalent Isotropic Radiated Power (in dBW), which is the product of the transmitted gain Gt and the power transmitted to the input terminals of the antenna. We suppose here that the user of the program knows the EIRP of the antenna and of the satellite.
56 1 LANVIN, Jean-baptiste
The G/T (in dBK-1) is called the "figure of merit" where G is the receive antenna gain (in dB) and T is the total system temperature (dBK). We suppose that the user knows as well the G/T of his ground station and of the satellite. If that is not the case, the user can refer to the book _Satellite communications system_ by Gerard Marat and Michel Bousquet to do the calculation or http://www.aticourses.com/sampler/sat_comm_sys_engineering.pdf.
57 1 LANVIN, Jean-baptiste
k is the boltzmann constant equal to -228.6 in dBJ.dBK-1.
58 1 LANVIN, Jean-baptiste
Lu_fspl is the uplink free space path loss (in dB) and Ld_fspl the downlink free space loss (in dB as well) that can be defined as:
59 1 LANVIN, Jean-baptiste
60 1 LANVIN, Jean-baptiste
<pre>
61 1 LANVIN, Jean-baptiste
Lu=10log((4*pi*d*Fu*/c)²);
62 1 LANVIN, Jean-baptiste
Ld=10log((4*pi*d*Fd*/c)²);
63 1 LANVIN, Jean-baptiste
</pre>
64 1 LANVIN, Jean-baptiste
65 1 LANVIN, Jean-baptiste
66 1 LANVIN, Jean-baptiste
where Fu and Fd are respectively the uplink and the downlink frequencies and c the velocity of light in the vacuum. Those are calculated in the VI Free space path loss.vi.
67 1 LANVIN, Jean-baptiste
68 1 LANVIN, Jean-baptiste
69 1 LANVIN, Jean-baptiste
h3. Tests
70 1 LANVIN, Jean-baptiste
71 1 LANVIN, Jean-baptiste
To test the link budget, we started with values of geostationnary satellites that are easier to find on the internet and on our lecture and we compared with our values.