diff options
Diffstat (limited to '1319/CH6/EX6.10/6_10.sce')
-rw-r--r-- | 1319/CH6/EX6.10/6_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1319/CH6/EX6.10/6_10.sce b/1319/CH6/EX6.10/6_10.sce new file mode 100644 index 000000000..9f5a1982d --- /dev/null +++ b/1319/CH6/EX6.10/6_10.sce @@ -0,0 +1,16 @@ +//Number of conductors of compensating winding
+
+clc;
+clear;
+
+P=8; // No of Poles
+Z=960; // No of conductors
+ep=70/100; // Effective pole pitch
+
+Zp=Z/P; // No os conductors per pole
+
+AZp= ep*Zp; // No of actice armature conductors
+
+Zpc=ceil(AZp/P); // Conductors in compensating winding
+
+printf('The number of conductors of compensating winding = %g conductor/pole \n',Zpc)
|