diff options
Diffstat (limited to '3281/CH1/EX1.5/ex1_5.sce')
-rwxr-xr-x | 3281/CH1/EX1.5/ex1_5.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3281/CH1/EX1.5/ex1_5.sce b/3281/CH1/EX1.5/ex1_5.sce new file mode 100755 index 000000000..e2ea17376 --- /dev/null +++ b/3281/CH1/EX1.5/ex1_5.sce @@ -0,0 +1,25 @@ +//Page Number: 15
+//Example 1.5
+clc;
+//Given
+l=1.2;//mH
+r=8;//ohm
+c=200D-12;//F
+
+//(i) Resonant frequency
+f0=(1/(2*%pi))*sqrt(1/(l*c));//hz
+disp('hz',f0,'Resonant frequency:');
+
+//(ii) Impedance of circuit
+disp('ohm',r,'Impedance of circuit:');
+
+//(iii)Q factor of the circuit
+q=1/(2*%pi*f0*c*r);
+disp(q,'Q factor of the circuit:');
+
+//(iv) Bandwidth
+df=f0/q;//hz
+disp('hz',df,'Bandwidth:');
+
+//The value of resonant frequency is calculated wrong in book
+//Hence Q factor and bandwidth, all these answers dont match
|