diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3835/CH7/EX7.8/Ex7_8.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3835/CH7/EX7.8/Ex7_8.sce')
-rw-r--r-- | 3835/CH7/EX7.8/Ex7_8.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3835/CH7/EX7.8/Ex7_8.sce b/3835/CH7/EX7.8/Ex7_8.sce new file mode 100644 index 000000000..2cef4ef73 --- /dev/null +++ b/3835/CH7/EX7.8/Ex7_8.sce @@ -0,0 +1,21 @@ +clear +// +//case a +//case 1 +v=6600 //voltage +ir=200 //armature current +xs=8 //reactance +e=(v**2+(ir*xs))**0.5 +printf("\n E= %0.5f V",e) +//case 2 +//from triangle in the firgure the power angle is obtained as 13.63 +printf("\n The power angle=13.63") +//case b +//due to excitation we obtain ix=217.10A +//case 3 +ix=217.10 +i=((ir**2+ix**2))**0.5 +printf("\n Armature current= %0.5f A",i) +//case 4 +//power factor cos(angle)=ir/i=0.68 +printf("\n power factor=0.68") |