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 /2384/CH10/EX10.18 | |
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 '2384/CH10/EX10.18')
-rwxr-xr-x | 2384/CH10/EX10.18/ex10_18.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2384/CH10/EX10.18/ex10_18.sce b/2384/CH10/EX10.18/ex10_18.sce new file mode 100755 index 000000000..b471b6bed --- /dev/null +++ b/2384/CH10/EX10.18/ex10_18.sce @@ -0,0 +1,20 @@ +// Exa 10.18
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+P = 6;
+A = 6;
+Z = 500;
+Ra = 0.05;// in ohm
+Rsh =25;// in ohm
+V = 100;// in V
+I_L = 120;// in A
+phi = 2*10^-2;// in Wb
+Ish = V/Rsh;// in A
+Ia = I_L-Ish;// in A
+Eb = V - (Ia*Ra);// in V
+// Eb = (N*P*phi*Z)/(60*A);
+N = (Eb*60*A)/(P*phi*Z);// in rpm
+disp(N,"The speed of the motor in rpm is");
|