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 /728/CH4/EX4.10 | |
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 '728/CH4/EX4.10')
-rwxr-xr-x | 728/CH4/EX4.10/Ex4_10.sce | 15 | ||||
-rwxr-xr-x | 728/CH4/EX4.10/Ex4_10.txt | 15 | ||||
-rwxr-xr-x | 728/CH4/EX4.10/Ex4_10_ans.txt | 13 |
3 files changed, 43 insertions, 0 deletions
diff --git a/728/CH4/EX4.10/Ex4_10.sce b/728/CH4/EX4.10/Ex4_10.sce new file mode 100755 index 000000000..3c1fc0b5c --- /dev/null +++ b/728/CH4/EX4.10/Ex4_10.sce @@ -0,0 +1,15 @@ +//Caption:Calculate (i)-required size of guide,(ii)-frequencies that can be used for this mode of propagation
+//Exa:4.10
+clc;
+clear;
+close;
+wl_c=10;//in cm
+c=3*10^10;//in cm/s
+r=wl_c/(2*%pi/1.841);//in cm
+area=%pi*r^2;//in sq. cm
+f_c=c/wl_c;
+disp(r,'Radius of circular waveguide(in cm) =');
+disp(area,'Area of cross-section of circular waveguide(in cm) =');
+disp('Frequency above');
+disp(f_c);
+disp('can be propagated');
\ No newline at end of file diff --git a/728/CH4/EX4.10/Ex4_10.txt b/728/CH4/EX4.10/Ex4_10.txt new file mode 100755 index 000000000..4815e1ab4 --- /dev/null +++ b/728/CH4/EX4.10/Ex4_10.txt @@ -0,0 +1,15 @@ +//Caption:Calculate (i)-required size of guide,(ii)-frequencies that can be used for this mode of propagation
+//Exa:4.10
+clc;
+clear;
+close;
+wl_c=10;//in cm
+c=3*10^10;//in cm/s
+r=wl_c/(2*%pi/1.841);//in cm
+area=%pi*r^2;//in sq. cm
+f_c=c/wl_c;
+disp(r,'Radius of circular waveguide(in cm) =');
+disp(area,'Area of cross-section of circular waveguide(in cm) =');
+disp('Frequency above');
+disp(f_c);
+disp('can be propagated');
diff --git a/728/CH4/EX4.10/Ex4_10_ans.txt b/728/CH4/EX4.10/Ex4_10_ans.txt new file mode 100755 index 000000000..29e96150f --- /dev/null +++ b/728/CH4/EX4.10/Ex4_10_ans.txt @@ -0,0 +1,13 @@ + Radius of circular waveguide(in cm) =
+
+ 2.9300425
+
+ Area of cross-section of circular waveguide(in cm) =
+
+ 26.971041
+
+ Frequency above
+
+ 3.000D+09
+
+ can be propagated
|