summaryrefslogtreecommitdiff
path: root/215/CH13/EX13.8
diff options
context:
space:
mode:
Diffstat (limited to '215/CH13/EX13.8')
-rwxr-xr-x215/CH13/EX13.8/ex13_8.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/215/CH13/EX13.8/ex13_8.sce b/215/CH13/EX13.8/ex13_8.sce
new file mode 100755
index 000000000..50f1928f0
--- /dev/null
+++ b/215/CH13/EX13.8/ex13_8.sce
@@ -0,0 +1,13 @@
+clc
+//Example 13.8
+disp('Given')
+disp('Vin=50V Zg=100 ohm')
+Vin=50;Zg=100;
+//From figure 13.32
+disp('When the secondary circuit and ideal transformer is replaced by a Thevenin equivalent then the primary circuit sees a 100 ohm impedance')
+//The turns ratio is a
+a=10;
+disp('We place the secondary circuit and ideal transformer by a Thevenin equivalent circuit')
+Vth=-a*Vin
+Zth=(-a)^2*Zg
+printf("The secondary circuit has voltage source %d V rms with %d kohm resistance in series with it along with %d kohm load resistance",Vth,Zth*10^-3,10) \ No newline at end of file