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.7 | |
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.7')
-rwxr-xr-x | 2384/CH10/EX10.7/ex10_7.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2384/CH10/EX10.7/ex10_7.sce b/2384/CH10/EX10.7/ex10_7.sce new file mode 100755 index 000000000..e10dc44c7 --- /dev/null +++ b/2384/CH10/EX10.7/ex10_7.sce @@ -0,0 +1,21 @@ +// Exa 10.7
+clc;
+clear;
+close;
+format('v',8)
+// Given data
+P = 60;
+A =P;
+Vbrush = 2;// in V/brush
+Vt = 100;// in V
+Ra = 0.1;// in ohm
+Rsh = 80;// in ohm
+Ish = Vt/Rsh;// in A
+Ilamp = P/Vt;// in A
+I_L = 50*Ilamp;// in A
+// Armature current
+Ia = I_L+Ish;// in A
+disp(Ia,"The total armature current in A is");
+// Evaluation of generated emf
+Eg = Vt + (Ia*Ra) + Vbrush;// in V
+disp(Eg,"The generated emf in V is");
|