summaryrefslogtreecommitdiff
path: root/1172/CH2/EX2.14
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH2/EX2.14')
-rwxr-xr-x1172/CH2/EX2.14/2_14.txt3
-rwxr-xr-x1172/CH2/EX2.14/Example2_14.sce12
2 files changed, 15 insertions, 0 deletions
diff --git a/1172/CH2/EX2.14/2_14.txt b/1172/CH2/EX2.14/2_14.txt
new file mode 100755
index 000000000..268275ad3
--- /dev/null
+++ b/1172/CH2/EX2.14/2_14.txt
@@ -0,0 +1,3 @@
+
+ # Problem 14 #
+ Amplitude of electrical and magnetic vectors are given as 1027.170320 V/m and 2.725935 A/m
diff --git a/1172/CH2/EX2.14/Example2_14.sce b/1172/CH2/EX2.14/Example2_14.sce
new file mode 100755
index 000000000..401450f2a
--- /dev/null
+++ b/1172/CH2/EX2.14/Example2_14.sce
@@ -0,0 +1,12 @@
+clc
+// Given That
+solar_const = 2 // energy received by earth from sun in Cal/min cm2
+mu_not = 1.2566e-6 // universal constant
+epsilon_not = 8.85e-12 // universal constant
+//Sample Problem 14 Page No. 86
+printf("\n # Problem 14 # \n ")
+ratio = sqrt(mu_not / epsilon_not) // constant
+E = sqrt (ratio *4.2 * solar_const / 6e-3)
+E_not = E * sqrt(2) //calculation of Amplitude of electric vectors
+H_not = E_not / ratio//calculation of Amplitude of magnetic vectors
+ printf("Amplitude of electrical and magnetic vectors are given as %f V/m and %f A/m",E_not,H_not)