From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 215/CH13/EX13.8/ex13_8.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 215/CH13/EX13.8/ex13_8.sce (limited to '215/CH13/EX13.8/ex13_8.sce') 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 -- cgit