diff options
Diffstat (limited to '1430/CH6/EX6.11')
-rw-r--r-- | 1430/CH6/EX6.11/exa6_11.sce | 23 | ||||
-rw-r--r-- | 1430/CH6/EX6.11/exa6_11.txt | 9 |
2 files changed, 32 insertions, 0 deletions
diff --git a/1430/CH6/EX6.11/exa6_11.sce b/1430/CH6/EX6.11/exa6_11.sce new file mode 100644 index 000000000..8d9f887b3 --- /dev/null +++ b/1430/CH6/EX6.11/exa6_11.sce @@ -0,0 +1,23 @@ +// Example 6.11
+// Application of an AC Norton Network
+// from figure 6.25(a)
+V_m=10; // Voltage phasor Magnitude
+omega=5000; // Radian Frequency (rad/s)
+V=complex(10,0); // Voltage Phasor in rectangular form
+Z_R=280; // Ohms
+Z_C=-%i*20;
+Z_L=%i*40;
+Z_t=(Z_L*Z_R)/(Z_L+Z_R)+Z_C; // thevenin resistance
+V_oc= (Z_R*V)/(Z_R+Z_L);
+I_sc= V_oc/Z_t; // Relation Between thevenin's parameter
+Y_t=1/Z_t; // Admittance
+// Let Y= G + i*B
+// Y_eq= Y_t+Y= (0.014+G)+i(B-0.048)
+// for |Y_eq| to be minimum
+G=0;
+B=0.048;
+Y=G+%i*B;
+Z=1/Y;
+Y_eq= Y_t+Y;
+V=I_sc/Y_eq;
+disp(V,"Resultant terminal Voltage in rectangular form(Volts)=")
diff --git a/1430/CH6/EX6.11/exa6_11.txt b/1430/CH6/EX6.11/exa6_11.txt new file mode 100644 index 000000000..2138663b0 --- /dev/null +++ b/1430/CH6/EX6.11/exa6_11.txt @@ -0,0 +1,9 @@ +
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 6\exa6.11.sce', -1)
+
+ Resultant terminal Voltage in rectangular form(Volts)=
+
+ 5. - 35.i
+
+
|