summaryrefslogtreecommitdiff
path: root/2409/CH13
diff options
context:
space:
mode:
Diffstat (limited to '2409/CH13')
-rwxr-xr-x2409/CH13/EX13.1/Ex13_1.sce12
-rwxr-xr-x2409/CH13/EX13.2/Ex13_2.sce15
-rwxr-xr-x2409/CH13/EX13.3/Ex13_3.sce14
-rwxr-xr-x2409/CH13/EX13.4/Ex13_4.sce12
-rwxr-xr-x2409/CH13/EX13.5/Ex13_5.sce16
-rwxr-xr-x2409/CH13/EX13.6/Ex13_6.sce42
6 files changed, 111 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)
diff --git a/2409/CH13/EX13.2/Ex13_2.sce b/2409/CH13/EX13.2/Ex13_2.sce
new file mode 100755
index 000000000..d347d13b3
--- /dev/null
+++ b/2409/CH13/EX13.2/Ex13_2.sce
@@ -0,0 +1,15 @@
+
+//Variable Decalration
+
+PA=24 //Transmit power by station A(dBW)
+G1=54 //Antenna Gain(dB)
+PC=30 //Transmit power by station C(dBW)
+G2=24.47//off-axis gain in the S1 direction(dB)
+PD=4 //Polarization discrimination(dB)
+
+//Calculation
+
+CIR=PA-PC+G1-G2+PD //Carrier to Interference ratio(dB)
+
+//Result
+printf("The Carrier to interfernce ratio on uplink is %.2f dB",CIR)
diff --git a/2409/CH13/EX13.3/Ex13_3.sce b/2409/CH13/EX13.3/Ex13_3.sce
new file mode 100755
index 000000000..f4a931791
--- /dev/null
+++ b/2409/CH13/EX13.3/Ex13_3.sce
@@ -0,0 +1,14 @@
+
+//Variable Declaration
+CIR1=27.53 //Carrier to interference ratio from Example 13.1(dB)
+CIR2=23.53 //Carrier to interference ratio from Example 13.2(dB)
+
+//Calculation
+ICRu=10**(-CIR1/10) //Interferece to carrier ratio for uplink
+ICRd=10**(-CIR2/10) //Interferece to carrier ratio for downlink
+
+ICRant=ICRu+ICRd //Overall Interferece to carrier ratio
+CIRant=-10*log10(ICRant)//Overall Carrier to interference ratio (dB)
+
+//Result
+printf("The overall carrier to interference ratio is %.2f dB",CIRant)
diff --git a/2409/CH13/EX13.4/Ex13_4.sce b/2409/CH13/EX13.4/Ex13_4.sce
new file mode 100755
index 000000000..709e9c5e0
--- /dev/null
+++ b/2409/CH13/EX13.4/Ex13_4.sce
@@ -0,0 +1,12 @@
+
+//Variable Declaration
+
+SSi=4 //Initial satellite spacing(degrees)
+SSl=2 //Later Satellite spacing(degrees)
+
+//Calculation
+
+IIR=(29-25*log10(SSl))-(29-25*log10(SSi)) //Increase in Interference(dB)
+
+//Result
+printf("The degradation in downlink C/I is %.1f dB",IIR)
diff --git a/2409/CH13/EX13.5/Ex13_5.sce b/2409/CH13/EX13.5/Ex13_5.sce
new file mode 100755
index 000000000..bddc8f90f
--- /dev/null
+++ b/2409/CH13/EX13.5/Ex13_5.sce
@@ -0,0 +1,16 @@
+
+//Variable Declaration
+
+f=4.2 //modualating frequency(MHz)
+m=2.571 //Modulation index
+QIF1=4.2 //Quality Impairment factor(a)
+QIF2=4.5 //Quality Impairment factor(b)
+
+//Calculation
+Dv=2*m*f //Peak to peak deviation(MHz)
+PR1=12.5-20*log10(Dv/12)-QIF1+1.1*QIF1**2 //Protection ratio for case(a)
+PR2=12.5-20*log10(Dv/12)-QIF2+1.1*QIF2**2 //Protection ratio for case(b)
+
+//Results
+printf("The protection ratio for quality impairment factor of 4.2 is %.1f dB",PR1)
+printf("The protection ratio for quality impairment factor of 4.5 is %.1f dB",PR2)
diff --git a/2409/CH13/EX13.6/Ex13_6.sce b/2409/CH13/EX13.6/Ex13_6.sce
new file mode 100755
index 000000000..0a67d26e2
--- /dev/null
+++ b/2409/CH13/EX13.6/Ex13_6.sce
@@ -0,0 +1,42 @@
+
+//Variable Decalration
+LU=200 //Uplink propogation loss(dB)
+LD=196 //Downlink propogation loss(dB)
+GE=25 //Receiving gain of earth station(dB)
+GE1=25 //Transmit gain of E1 in the direction of S(dB)
+GS=9 //receive gain of S in the direction of E1(dB)
+GS1=9 //Transmit gain of satellite S1 in the direction of E(dB)
+GTE=48 //Transmit gain of E(dB)
+GRE=48 //Receive gain of E(dB)
+GRS=19 //Receive gain of S(dB)
+GTS=19 //Transmit gain of S(dB)
+US=-60 //Maximum power spectral density(dBJ)
+US1=1 //Maximum power spectral density(uJ)
+UE1=10 //Maximum power spectral density transmitted by earth station(uJ)
+UE=-50 //Maximum power spectral density transmitted by earth station(dBJ)
+k=-228.6
+
+//Calculation
+URS=UE+GTE+GRS-LU//Received power spectral density at satellite S(dB)
+URE=US+GTS+GRE-LD//Received power spectral density at satellite E(dB)
+y=URE-URS //Transmission gain for network R(dB)
+
+I1=US+GS1+GE-LD //Interference received by earth station(dB)
+I2=UE+GE1+GS-LU //Uplink Interference(dB)
+
+delTE=I1-k //Earth station receiver input(dBK)
+delTE=10**(delTE/10) //Earth station receiver input(K)
+delTS=I2-k //Noise temperature at satellite receiver input(dBK)
+
+delTSE=y+delTS //Noise Temperature rise(dBKelvin)
+delTSE=10**(delTSE/10) //Noise Temperature rise(Kelvin)
+delT=delTSE+delTE //Equivalent noise temperature rise
+
+
+disp(URE)
+disp(URS)
+
+//Results
+printf("The transmission gain is %.f dB",y)
+printf("The interference levels I1 an I2 are %.f %.f dBJ respectively",I1,I2)
+printf("The equivalent temperature rise overall is %.2f Kelvin",delT)