diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3574/CH10/EX10.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3574/CH10/EX10.8')
-rw-r--r-- | 3574/CH10/EX10.8/EX10_8.png | bin | 0 -> 111903 bytes | |||
-rw-r--r-- | 3574/CH10/EX10.8/EX10_8.sce | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/3574/CH10/EX10.8/EX10_8.png b/3574/CH10/EX10.8/EX10_8.png Binary files differnew file mode 100644 index 000000000..2fa664da6 --- /dev/null +++ b/3574/CH10/EX10.8/EX10_8.png diff --git a/3574/CH10/EX10.8/EX10_8.sce b/3574/CH10/EX10.8/EX10_8.sce new file mode 100644 index 000000000..c7887bb64 --- /dev/null +++ b/3574/CH10/EX10.8/EX10_8.sce @@ -0,0 +1,28 @@ +// Example 10.8
+// Computation of new armature current
+// Page No. 420
+
+clc;
+clear;
+close;
+
+// Given data
+Rf=120; // Resistance of inserted resistor
+VT=240; // Rated voltade of the machine
+IT=91; // Total current
+Racir=0.221; // Armature sircuit resistance
+n2=634; // New speed after resistor was inserted
+n1=850; // Rated speed OF THE MACHINE
+Rx=2.14; // Resistance inserted in series witH armature
+
+// New armature current
+
+If=VT/Rf; // Resistor current
+Ia1=IT-If; // Armature current
+Ia2=(VT-(n2/n1)*(VT-Ia1*Racir))/(Racir+Rx);
+
+
+// Display result on command window
+printf("\n New armature current = %0.2f A ",Ia2);
+
+
|