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.11/ex10_11.sce | |
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.11/ex10_11.sce')
-rwxr-xr-x | 2384/CH10/EX10.11/ex10_11.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2384/CH10/EX10.11/ex10_11.sce b/2384/CH10/EX10.11/ex10_11.sce new file mode 100755 index 000000000..082eef373 --- /dev/null +++ b/2384/CH10/EX10.11/ex10_11.sce @@ -0,0 +1,21 @@ +// Exa 10.11
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+P = 4;
+A = 2;//(wave connected)
+Z = 200;
+V=250;// in V
+phi = 25;// in mWb
+phi = phi * 10^-3;// in Wb
+Ia = 60;// in A
+I_L = 60;// in A
+Ra = 0.15;// in ohm
+Rse = 0.2;// in ohm
+//V = Eb + (Ia*Ra) + (Ia*Rse);
+Eb = V - (Ia*Ra) - (Ia*Rse);// in V
+// Eb = (phi*P*N*Z)/(60*A);
+N = (Eb*60*A)/(phi*P*Z);// in rpm
+disp(N,"The speed in rpm is");
|