diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /215/CH13/EX13.8/ex13_8.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '215/CH13/EX13.8/ex13_8.sce')
-rwxr-xr-x | 215/CH13/EX13.8/ex13_8.sce | 13 |
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 |