diff options
Diffstat (limited to '3890/CH6/EX6.6')
-rw-r--r-- | 3890/CH6/EX6.6/EX6_6.png | bin | 0 -> 38455 bytes | |||
-rw-r--r-- | 3890/CH6/EX6.6/EX6_6.sce | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3890/CH6/EX6.6/EX6_6.png b/3890/CH6/EX6.6/EX6_6.png Binary files differnew file mode 100644 index 000000000..6bfcfeb01 --- /dev/null +++ b/3890/CH6/EX6.6/EX6_6.png diff --git a/3890/CH6/EX6.6/EX6_6.sce b/3890/CH6/EX6.6/EX6_6.sce new file mode 100644 index 000000000..2a75033e7 --- /dev/null +++ b/3890/CH6/EX6.6/EX6_6.sce @@ -0,0 +1,26 @@ +//Electric machines and power systems by Syed A Nasar +//Publisher:Tata McGraw Hill +//Year: 2002 ; Edition - 7 +//Example 6.6 +//Scilab Version : 6.0.0 ; OS : Windows + +clc; +clear; + +P=50*10^3; +V=250; +Ra=.06; +Rf=125; +Vd=2; +Rse=0.04; + +I=P/V; +V1=I*Rse; +Vf=V+V1; +If=Vf/Rf; +Ia=I+If; +Va=Ia*Ra; +E=V+Va+V1+Vd; + +printf('The terminal voltage is %f V\n',Va); +printf('the induced emf is %f V',E); |