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.86/EX2_86.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.86/EX2_86.sce')
-rwxr-xr-x | 1760/CH2/EX2.86/EX2_86.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1760/CH2/EX2.86/EX2_86.sce b/1760/CH2/EX2.86/EX2_86.sce new file mode 100755 index 000000000..1911a54c2 --- /dev/null +++ b/1760/CH2/EX2.86/EX2_86.sce @@ -0,0 +1,21 @@ + //EXAMPLE 2-86 PG NO 126
+L=0.5; //inductance
+C=40*10^-6; //capacitor
+Wo=1/(L*C)^0.5;
+R=10; //resistance
+V=100; //voltage
+Fo=Wo/(2*%pi); //frequency
+Q=(Wo*L)/R;
+W2=233.6; //frequency
+W1=213.6; //frequency
+B.W=W2-W1; //Band width
+Io=V/R; //current at resonance
+Io1=0.707*Io; //current at half power points
+V1=Q*V; //voltage aacross inductance at resonance
+disp(' frequency is = '+string(Wo)+' rad/sec');
+disp(' frequency is = '+string(Fo)+' Hz');
+disp(' Q is = '+string(Q)+' ');
+disp(' BAND WIDTH is = '+string(B.W)+' rad/sec');
+disp(' current at resonance is = '+string(Io)+' A');
+disp(' current at half power points is = '+string(Io1)+' A');
+disp('voltage aacross inductance at resonance is = '+string(V1)+' V');
|