diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH2/EX2.14 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1172/CH2/EX2.14')
-rwxr-xr-x | 1172/CH2/EX2.14/2_14.txt | 3 | ||||
-rwxr-xr-x | 1172/CH2/EX2.14/Example2_14.sce | 12 |
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)
|