Link Budget » History » Version 6

LANVIN, Jean-baptiste, 12/15/2015 11:13 AM

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 3 LANVIN, Jean-baptiste
p=. !BER_curves.jpg!
14 4 LANVIN, Jean-baptiste
Figure 1 : BER curves
15 1 LANVIN, Jean-baptiste
16 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.
17 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.
18 1 LANVIN, Jean-baptiste
19 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:
20 1 LANVIN, Jean-baptiste
21 1 LANVIN, Jean-baptiste
<pre>
22 1 LANVIN, Jean-baptiste
23 1 LANVIN, Jean-baptiste
C/N0=Eb/N0*Rb
24 1 LANVIN, Jean-baptiste
25 1 LANVIN, Jean-baptiste
</pre>
26 1 LANVIN, Jean-baptiste
27 1 LANVIN, Jean-baptiste
Rb being the information bit rate 
28 1 LANVIN, Jean-baptiste
Knowing the bandwidth of the signal, the C/N can be calculated using:
29 1 LANVIN, Jean-baptiste
30 1 LANVIN, Jean-baptiste
<pre>
31 1 LANVIN, Jean-baptiste
C/N=1/B*C/N0
32 1 LANVIN, Jean-baptiste
</pre>
33 1 LANVIN, Jean-baptiste
34 1 LANVIN, Jean-baptiste
B being the bandwith of the noise but different definitions exist. Here we used the bandwidth of the RF carrier.
35 1 LANVIN, Jean-baptiste
36 1 LANVIN, Jean-baptiste
h3. C/N0 calculation
37 1 LANVIN, Jean-baptiste
38 1 LANVIN, Jean-baptiste
39 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:
40 1 LANVIN, Jean-baptiste
41 1 LANVIN, Jean-baptiste
42 1 LANVIN, Jean-baptiste
<pre>
43 1 LANVIN, Jean-baptiste
 (C/N0)t-1 = (C/N0)d-1  +(C/N0)u-1
44 1 LANVIN, Jean-baptiste
</pre>
45 1 LANVIN, Jean-baptiste
46 1 LANVIN, Jean-baptiste
where (C/N0)d and (C/N0)u are respectively the downlink and the uplink carrier to noise ratio.
47 1 LANVIN, Jean-baptiste
48 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:
49 1 LANVIN, Jean-baptiste
50 1 LANVIN, Jean-baptiste
<pre>
51 1 LANVIN, Jean-baptiste
(C/N0)d_dBHz= EIRP_satellite + (G/T)ground -k -Lu_fspl;
52 1 LANVIN, Jean-baptiste
53 1 LANVIN, Jean-baptiste
(C/N0)u_dBHz= EIRP_ground + (G/T)satellite -k -Ld_fspl;
54 1 LANVIN, Jean-baptiste
</pre>
55 1 LANVIN, Jean-baptiste
56 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.
57 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.
58 1 LANVIN, Jean-baptiste
k is the boltzmann constant equal to -228.6 in dBJ.dBK-1.
59 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:
60 1 LANVIN, Jean-baptiste
61 1 LANVIN, Jean-baptiste
<pre>
62 1 LANVIN, Jean-baptiste
Lu=10log((4*pi*d*Fu*/c)²);
63 1 LANVIN, Jean-baptiste
Ld=10log((4*pi*d*Fd*/c)²);
64 1 LANVIN, Jean-baptiste
</pre>
65 1 LANVIN, Jean-baptiste
66 1 LANVIN, Jean-baptiste
67 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.
68 1 LANVIN, Jean-baptiste
69 1 LANVIN, Jean-baptiste
70 1 LANVIN, Jean-baptiste
h3. Tests
71 1 LANVIN, Jean-baptiste
72 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.
73 5 LANVIN, Jean-baptiste
74 5 LANVIN, Jean-baptiste
h3. References
75 5 LANVIN, Jean-baptiste
76 5 LANVIN, Jean-baptiste
M. Michel BOUSQUET & M. Gérard MARAT. _Satellite communications system_. 5th edition, 2009.
77 5 LANVIN, Jean-baptiste
78 5 LANVIN, Jean-baptiste
Example of a satellite link budget : http://www.aticourses.com/sampler/sat_comm_sys_engineering.pdf
79 6 LANVIN, Jean-baptiste
Eb over N0 calculation : https://en.wikipedia.org/wiki/Eb/N0