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.11 | |
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.11')
-rwxr-xr-x | 3281/CH4/EX4.11/ex4_11.jpg | bin | 0 -> 8849 bytes | |||
-rwxr-xr-x | 3281/CH4/EX4.11/ex4_11.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3281/CH4/EX4.11/ex4_11.jpg b/3281/CH4/EX4.11/ex4_11.jpg Binary files differnew file mode 100755 index 000000000..a565a99e2 --- /dev/null +++ b/3281/CH4/EX4.11/ex4_11.jpg diff --git a/3281/CH4/EX4.11/ex4_11.sce b/3281/CH4/EX4.11/ex4_11.sce new file mode 100755 index 000000000..8f81bfdd7 --- /dev/null +++ b/3281/CH4/EX4.11/ex4_11.sce @@ -0,0 +1,24 @@ +//Page Number: 200
+//Example 4.11
+clc;
+//Given
+f=9.375D+9;//hz
+sig=5.8D+7;
+eet=377;
+c=3D+8; //m/s
+w=2*%pi*f;
+r=1.5;
+u=4D-7*%pi;
+
+//Radius
+a=c/(f*2.62);//m
+disp('cm',a*100,'Radius of resonantor');
+
+//O
+rs=sqrt((w*u)/(2*sig));//ohm
+x=1.202*eet;
+y=rs*(1+(1/r));
+q=x/y;
+disp(q,'Q of the resonator:');
+
+//Answer for Q is calculated as 10875 in book but it is 10763.303
|