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 /1760/CH2/EX2.89/EX2_89.sce | |
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 '1760/CH2/EX2.89/EX2_89.sce')
-rwxr-xr-x | 1760/CH2/EX2.89/EX2_89.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1760/CH2/EX2.89/EX2_89.sce b/1760/CH2/EX2.89/EX2_89.sce new file mode 100755 index 000000000..7b4a5e796 --- /dev/null +++ b/1760/CH2/EX2.89/EX2_89.sce @@ -0,0 +1,23 @@ + //example 2-89 pg no-134
+L=8*10^-3; //INDUCTANCE
+C=16*10^-9;
+Wo=1/[L*C]^0.5;
+R=10; //RESISTANCE
+Fo=Wo/(2*%pi); //FREQUENCY
+Q=(Wo*L)/R;
+Rp=((R*R)+(Wo*Wo*L*L))/R
+Vo1=100;
+B.W1=Wo/Q;
+R2=10*10^3;
+R3=60*10^3;
+LR=(Rp*R2)/R3;
+Q1=(Q*LR)/Rp
+Vo2=16.666;
+B.W2=Wo/Q1;
+disp(' Wo is = '+string(Wo)+' rad/sec');
+disp(' Q is = '+string(Q)+' ');
+disp(' Rp is = '+string(Rp)+' ohm');
+disp('BAND WIDTH 1 is = '+string(B.W1)+' rad/sec');
+disp('Load resistance is = '+string(LR)+' ohm');
+disp(' Q1 is = '+string (Q1)+' ');
+disp('BAND WIDTH2is = '+string(B.W2)+' rad/sec');
|