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 /3281/CH4/EX4.23 | |
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 '3281/CH4/EX4.23')
-rwxr-xr-x | 3281/CH4/EX4.23/ex4_23.jpg | bin | 0 -> 5625 bytes | |||
-rwxr-xr-x | 3281/CH4/EX4.23/ex4_23.sce | 21 |
2 files changed, 21 insertions, 0 deletions
diff --git a/3281/CH4/EX4.23/ex4_23.jpg b/3281/CH4/EX4.23/ex4_23.jpg Binary files differnew file mode 100755 index 000000000..d0bbd40b4 --- /dev/null +++ b/3281/CH4/EX4.23/ex4_23.jpg diff --git a/3281/CH4/EX4.23/ex4_23.sce b/3281/CH4/EX4.23/ex4_23.sce new file mode 100755 index 000000000..de1da3c76 --- /dev/null +++ b/3281/CH4/EX4.23/ex4_23.sce @@ -0,0 +1,21 @@ +//Page Number: 249
+//Example 4.23
+clc;
+//Given
+f=10D+9; //Hz
+u=4D-7*%pi;
+c=3D+8; //m/s
+a=2.29; //cm
+a1=a/100;
+b=1.02; //cm
+b1=b/100;
+
+//E/H
+w=2*%pi*f;
+EbyH=(w*u)/sqrt(((w/c)^2)+((%pi/a1)^2));
+lam=c/f;
+lamc=2*a1;
+d=(1/4)*(lam/sqrt(1-((lam/lamc)^2)));
+disp('cm',d*100,'Position:');
+
+//Answer for positon is calculated wrong in book
|