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/CH5/EX5.4 | |
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/CH5/EX5.4')
-rwxr-xr-x | 728/CH5/EX5.4/Ex5_4.sce | 16 | ||||
-rwxr-xr-x | 728/CH5/EX5.4/Ex5_4.txt | 16 | ||||
-rwxr-xr-x | 728/CH5/EX5.4/Ex5_4_ans.txt | 4 |
3 files changed, 36 insertions, 0 deletions
diff --git a/728/CH5/EX5.4/Ex5_4.sce b/728/CH5/EX5.4/Ex5_4.sce new file mode 100755 index 000000000..c96ff8a1c --- /dev/null +++ b/728/CH5/EX5.4/Ex5_4.sce @@ -0,0 +1,16 @@ +//Caption:Calculate the resonant frequency of a circular cavity resonator
+//Exa:5.4
+clc;
+clear;
+close;
+//Given:
+c=3*10^10;//in cm/s
+a=3;//in cm
+b=2;//in cm
+d=4;//in cm
+//For TE101:
+m=1;
+n=0;
+p=1;
+f=(c/2)*[(m/a)^2+(n/b)^2+(p/d)^2]^0.5;
+disp(f/10^9,'Resonant frequency(in GHz) =');
diff --git a/728/CH5/EX5.4/Ex5_4.txt b/728/CH5/EX5.4/Ex5_4.txt new file mode 100755 index 000000000..c96ff8a1c --- /dev/null +++ b/728/CH5/EX5.4/Ex5_4.txt @@ -0,0 +1,16 @@ +//Caption:Calculate the resonant frequency of a circular cavity resonator
+//Exa:5.4
+clc;
+clear;
+close;
+//Given:
+c=3*10^10;//in cm/s
+a=3;//in cm
+b=2;//in cm
+d=4;//in cm
+//For TE101:
+m=1;
+n=0;
+p=1;
+f=(c/2)*[(m/a)^2+(n/b)^2+(p/d)^2]^0.5;
+disp(f/10^9,'Resonant frequency(in GHz) =');
diff --git a/728/CH5/EX5.4/Ex5_4_ans.txt b/728/CH5/EX5.4/Ex5_4_ans.txt new file mode 100755 index 000000000..deee42067 --- /dev/null +++ b/728/CH5/EX5.4/Ex5_4_ans.txt @@ -0,0 +1,4 @@ +
+ Resonant frequency(in GHz) =
+
+ 6.25
\ No newline at end of file |