summaryrefslogtreecommitdiff
path: root/2409/CH4/EX4.2/Ex4_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2409/CH4/EX4.2/Ex4_2.sce')
-rwxr-xr-x2409/CH4/EX4.2/Ex4_2.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2409/CH4/EX4.2/Ex4_2.sce b/2409/CH4/EX4.2/Ex4_2.sce
new file mode 100755
index 000000000..fc07fe5f2
--- /dev/null
+++ b/2409/CH4/EX4.2/Ex4_2.sce
@@ -0,0 +1,19 @@
+
+//Variable Declaration
+ah=0.0188
+bh=1.217
+av=0.0168
+bv=1.2
+R01=10 //Point Rain Rate(mm/hr)
+L=2.8753812 //Effective path length calculated in Example 4.1(km)
+
+//Calculation
+//Factors depending on frequency and polarization
+ac=(ah+av)/2 //a for circular polarization
+bc=(ah*bh+av*bv)/(2*ac) //b for circular polarization
+alpha=ac*R01**bc //Specific Attenuation(dB)
+AdB= alpha*L //Rain Attenuation(dB)
+
+
+//Results
+printf("The Rain Attenuation for circular polarization is %.2f dB",AdB);