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 /3802/CH8/EX8.7/Ex8_7.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 '3802/CH8/EX8.7/Ex8_7.sce')
-rw-r--r-- | 3802/CH8/EX8.7/Ex8_7.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3802/CH8/EX8.7/Ex8_7.sce b/3802/CH8/EX8.7/Ex8_7.sce new file mode 100644 index 000000000..755ee0609 --- /dev/null +++ b/3802/CH8/EX8.7/Ex8_7.sce @@ -0,0 +1,27 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex8_7.sce.
+
+clc;
+clear;
+P=300e3;
+V=500;
+a=8;
+p=4;
+Z=786;
+theta=5;
+
+I=P/V;
+armature_AT=(1/2)*(I/a)*(Z/(2*p)); //Total AT per pole
+demagnetizing_AT=armature_AT*(4*theta/360); //demagnetizing AT per pole
+distorting_AT=armature_AT-demagnetizing_AT; //distorting AT per pole
+printf("\n Demagnetizing AT per pole=%d AT/pole \n",demagnetizing_AT)
+printf("\n Cross AT per pole=%4.0f AT/pole \n",distorting_AT)
+
+//There is a error in the substitution of number of conductors (Z) in the book
+//In the question Z=786 but problem is solved by substituting Z=768
+//But I make the codes with the given data that is Z=786
+//So the book answer vary
|