diff options
Diffstat (limited to '3673/CH8/EX8.a.3/Example_a_8_3.sce')
-rw-r--r-- | 3673/CH8/EX8.a.3/Example_a_8_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3673/CH8/EX8.a.3/Example_a_8_3.sce b/3673/CH8/EX8.a.3/Example_a_8_3.sce new file mode 100644 index 000000000..ac65d1e4d --- /dev/null +++ b/3673/CH8/EX8.a.3/Example_a_8_3.sce @@ -0,0 +1,18 @@ +//Example_a_8_3 page no:326
+clc;
+Vmax=10;
+Vrms=Vmax/sqrt(2);
+Vc=500;
+Q=Vc/Vrms;
+BW=400;
+Z=100;
+R=Z;
+omega_r=Q*BW;
+fr=omega_r/(2*%pi);
+L=R/BW;
+C=1/((2*%pi*fr)^2*L);
+C=C*10^9;
+disp(fr,"the resonant frequency is (in Hz)");
+disp(L,"the inductance of the circuit is (in H)");
+disp(C,"the capacitance of the circuit is (in nF)");
+//resonant frequency varies slightly with text book hence in text book value of Q is rounded off
|