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 /3811/CH6/EX6.3/Ex6_3.sce | |
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 '3811/CH6/EX6.3/Ex6_3.sce')
-rw-r--r-- | 3811/CH6/EX6.3/Ex6_3.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3811/CH6/EX6.3/Ex6_3.sce b/3811/CH6/EX6.3/Ex6_3.sce new file mode 100644 index 000000000..bc3be6507 --- /dev/null +++ b/3811/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,26 @@ +//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 6
+//example 6.3
+//edition 1
+//publisher and place:Nelson Engineering
+clc;
+clear;
+Vs=150;//source voltage of DC shunt motor in volt
+n1=1200;//synchronous speed in rpm
+Ra=2;//armature resistance in ohm
+Rf=150;//field resistance in ohm
+I=10;//line current in ampere
+If1=(Vs/Rf);//Field current before adding the resistance in ampere
+//Assume the resistance added in the field circuit to reduce the field current by 20%
+If2=.8;//Field current after adding the resistance in ampere
+Ia1=I-If1;//Armature current before inserting the resistance in ampere
+Ia2=(If1*Ia1)/If2;//Armature current after inserting the resistance in ampere
+disp(Ia2,'The armature current after inserting the resistance in ampere is:')
+Ea1=Vs-(Ia1*Ra);
+Ea2=Vs-(Ia2*Ra);
+n2=(If1*n1*Ea2)/(Ea1*If2);
+disp(n2,'The motor speed in rpm is:')
+Radd=(Vs-(If2*Rf))/If2;
+disp(Radd,'The value of added resistance in ohm is:')
+P=If2^(2)*Radd;
+disp(P,'The extra field loss due to the addition of resistance in watt is:')
|