summaryrefslogtreecommitdiff
path: root/1628/CH16/EX16.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH16/EX16.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1628/CH16/EX16.1')
-rwxr-xr-x1628/CH16/EX16.1/Ex16_1.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/1628/CH16/EX16.1/Ex16_1.sce b/1628/CH16/EX16.1/Ex16_1.sce
new file mode 100755
index 000000000..b9b6570c1
--- /dev/null
+++ b/1628/CH16/EX16.1/Ex16_1.sce
@@ -0,0 +1,32 @@
+
+ // Example 16.1
+
+ // ==> When Lap-wound .
+
+disp('* With the Armature Lap-wound, & Parallel pahts A=8 ');
+Z=480; // No.Of conductor
+A=8; // No.Of poles
+e=2.1; // Average emf in each conductor
+E=e*(Z/A); // Terminal voltage on No load
+disp(' Terminal voltage on No load = '+string(E)+' Volt');
+If=200; // Full-load current per conductor
+Il=If*A; // O/p current on full-load
+disp(' O/p current on full-load = '+string(Il)+' Amp');
+Po=Il*E; // Total power on full-load
+disp(' Total power generated on full-load = '+string(Po/1000)+' kW');
+
+ // ==> When Wave-wound .
+
+disp('* With the Armature Wave-wound, & Parallel pahts A=2 ');
+A1=2; // No.Of poles
+E1=e*(Z/A1); // Terminal voltage on No load
+disp(' Terminal voltage on No load = '+string(E1)+' Volt');
+Il1=If*A1; // O/p current on full-load
+disp(' O/p current on full-load = '+string(Il1)+' Amp');
+Po1=Il1*E1; // Total power on full-load
+disp(' Total power generated on full-load = '+string(Po1/1000)+' kW');
+
+
+
+
+ // p 631 16.1