diff options
Diffstat (limited to '2409/CH13/EX13.1/Ex13_1.sce')
-rwxr-xr-x | 2409/CH13/EX13.1/Ex13_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2409/CH13/EX13.1/Ex13_1.sce b/2409/CH13/EX13.1/Ex13_1.sce new file mode 100755 index 000000000..434a0021f --- /dev/null +++ b/2409/CH13/EX13.1/Ex13_1.sce @@ -0,0 +1,12 @@ +//Variable Declaration +EIRP1=34 //desired carrier EIRP from satellite(dB) +G1=44 // ground station receiving antenna gain(dB) +G2=24.47 //Gain in desired direction(dB) +EIRP2=34 //EIRP by interfering satellite(dB) +PD=4 //Polarization discrimination(dB) + +//Calculation +CIR=EIRP1-EIRP2+G1-G2+PD //Carrier to Interference ratio(dB) + +//Result +printf("The Carrier to interfernce ratio at the ground receiving antenna is %.2f dB",CIR) |