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.6 | |
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.6')
-rwxr-xr-x | 1628/CH16/EX16.6/Ex16_6.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1628/CH16/EX16.6/Ex16_6.sce b/1628/CH16/EX16.6/Ex16_6.sce new file mode 100755 index 000000000..eafa0d203 --- /dev/null +++ b/1628/CH16/EX16.6/Ex16_6.sce @@ -0,0 +1,27 @@ + + // Examle 16.6 + +p=60; // Power supply +v=200; // supply voltage +I1=p/v; // current through each lamp +Il=100*I1; // Shunt field Current (Il) +disp('Shunt field Current (Il) = '+string(Il)+' Amp'); + +Rsh=50; // Resistance +Ish=v/Rsh; // Shunt field Current +Ia=Il+Ish; // Armature Current (Ia) +disp('Armature Current (Ia) = '+string(Ia)+' Amp'); + +a=4; // No.Of paraller path +Ic=Ia/a; // Current per path (Ic) +disp(' Current per path (Ic) = '+string(Ic)+' Amp'); + +Ra=0.2; // Armature resistance +dro=2; // Brush-drop +Eg=v+(Ia*Ra)+dro; // Generated emf (Eg) +disp('generated emf (Eg) = '+string(Eg)+' Volt'); + + + + // 638 16.6 + |