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.3 | |
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.3')
-rwxr-xr-x | 3281/CH4/EX4.3/ex4_3.jpg | bin | 0 -> 12975 bytes | |||
-rwxr-xr-x | 3281/CH4/EX4.3/ex4_3.sce | 29 |
2 files changed, 29 insertions, 0 deletions
diff --git a/3281/CH4/EX4.3/ex4_3.jpg b/3281/CH4/EX4.3/ex4_3.jpg Binary files differnew file mode 100755 index 000000000..84cf92efb --- /dev/null +++ b/3281/CH4/EX4.3/ex4_3.jpg diff --git a/3281/CH4/EX4.3/ex4_3.sce b/3281/CH4/EX4.3/ex4_3.sce new file mode 100755 index 000000000..0a84ccc69 --- /dev/null +++ b/3281/CH4/EX4.3/ex4_3.sce @@ -0,0 +1,29 @@ +//Page Number: 194
+//Example 4.3
+clc;
+//Given
+c=3D+8; //m/s
+a=2.286;//cm
+a1=a/100;//m
+b=1.024;//cm
+b1=b/100;//m
+f=10D+9;//hz
+sig=6D+7;
+u=4D-7*%pi;
+w=2*%pi*f;
+eet=377;
+
+//Shortest cavity length
+lamc=2*a1;//m
+fc=c/lamc;//hz
+lam=c/f;//m
+lamg=lam/sqrt(1-(fc/f)^2);//m
+sc=lamg/2;//m
+disp('cm',sc*100,'Shortest cavity length:');
+
+//Qw of the resonator operating in TE101 mode
+rs=sqrt((w*u)/(2*sig));//ohm
+lamr=c/f;
+x=(((a1*b1)/(sc^2))+((sc^2+a1^2)/(2*sc*a1))+(b1*sc/a1^2));
+qw=(2*%pi*eet*a1*b1*sc)/(rs*(lamr^3)*x);
+disp(qw,'Qw of the resonator operating in TE101 mode');
|