diff options
Diffstat (limited to '1430/CH6/EX6.15')
-rw-r--r-- | 1430/CH6/EX6.15/exa6_15.sce | 15 | ||||
-rw-r--r-- | 1430/CH6/EX6.15/exa6_15.txt | 8 |
2 files changed, 23 insertions, 0 deletions
diff --git a/1430/CH6/EX6.15/exa6_15.sce b/1430/CH6/EX6.15/exa6_15.sce new file mode 100644 index 000000000..4496c7d71 --- /dev/null +++ b/1430/CH6/EX6.15/exa6_15.sce @@ -0,0 +1,15 @@ +// Example 6.15
+// Series Resonance Design
+// From the given Design specification
+V_m=100;
+omega_0=5000;
+Q_ser=10;
+L=0.4; // Henry
+V_C_m=Q_ser*V_m;
+C=1/(omega_0^2*L)// From the condition of series resonance
+R=(omega_0*L)/Q_ser;
+// When we build the circuit with this specifications we find that that Q_ser=8
+// So there must have some significant winding resistance R_w
+R_w=250-200;
+// So we need to replace 200-Ohm resistor with 150-Ohm so as to get 1kV sinusoid
+disp(R_w,"Winding Resistance(Ohms)=")
diff --git a/1430/CH6/EX6.15/exa6_15.txt b/1430/CH6/EX6.15/exa6_15.txt new file mode 100644 index 000000000..08fdc7f92 --- /dev/null +++ b/1430/CH6/EX6.15/exa6_15.txt @@ -0,0 +1,8 @@ +
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 6\exa6.15.sce', -1)
+
+ Winding Resistance(Ohms)=
+
+ 50.
+
+
|