diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH16/EX16.10 | |
download | Scilab-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.10')
-rwxr-xr-x | 1628/CH16/EX16.10/Ex16_10.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1628/CH16/EX16.10/Ex16_10.sce b/1628/CH16/EX16.10/Ex16_10.sce new file mode 100755 index 000000000..bc88d71d9 --- /dev/null +++ b/1628/CH16/EX16.10/Ex16_10.sce @@ -0,0 +1,24 @@ + + // Examle 16.10 + +i1=4; // No load current +i2=6; // Full-load current +n=1500; // No.Of turns per poles +At1=i1*n; // Amper Turns per pole on No Load +disp(' Amper Turns per pole on No Load = '+string(At1)+' At'); + +At2=i2*n; // Amper Turns per pole on Full Load +disp(' Amper Turns per pole on Full Load = '+string(At2)+' At'); + +At=At2-At1; // Amper Turns per pole of seires winding +disp(' Amper Turns per pole of seires winding = '+string(At)+' At'); + +Nse=At/100; // Full Load Current +disp(' Full Load Current = '+string(Nse)); + + + + + + // p 647 16.10 + |