summaryrefslogtreecommitdiff
path: root/2409/CH12/EX12.12/Ex12_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '2409/CH12/EX12.12/Ex12_12.sce')
-rwxr-xr-x2409/CH12/EX12.12/Ex12_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2409/CH12/EX12.12/Ex12_12.sce b/2409/CH12/EX12.12/Ex12_12.sce
new file mode 100755
index 000000000..957e0e604
--- /dev/null
+++ b/2409/CH12/EX12.12/Ex12_12.sce
@@ -0,0 +1,15 @@
+
+//Variable Declaration
+
+B=36 //Transponder Bandwidth(MHz)
+CNR=22 //Carrier to noise ratio(dB)
+LOSSES=200 //Total transmission losses(dB)
+GTR=31 //Earth station G/T (dB/K)
+k=-228.6 //Value of k(dB)
+
+//Calculation
+B=10*log10(B*10**6) //Converting Bandwidth to dB
+EIRP=CNR-GTR+LOSSES+k+B //Equivalent isotropically radiated power(dB)
+
+//Result
+printf("Satellite EIRP required is %.0f dB",EIRP)