summaryrefslogtreecommitdiff
path: root/3784/CH3/EX3.6/Ex3_6.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3784/CH3/EX3.6/Ex3_6.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3784/CH3/EX3.6/Ex3_6.sce')
-rw-r--r--3784/CH3/EX3.6/Ex3_6.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3784/CH3/EX3.6/Ex3_6.sce b/3784/CH3/EX3.6/Ex3_6.sce
new file mode 100644
index 000000000..59935f183
--- /dev/null
+++ b/3784/CH3/EX3.6/Ex3_6.sce
@@ -0,0 +1,23 @@
+clc
+// Variable Initiallization
+Ea=400 // Voltage Of MOtor In Volt
+Ia1=70 //Line Current In Ampere
+Ia2=90 //Line Current In Ampere
+Ra=0.3 //Armature Resistance In Ohm
+N1=750 //Speed Of Motor In rpm
+N2=300 //Speed Of Motor In rpm
+
+//Solution
+Eb1=Ea-(Ia1*Ra)
+Eb2=(N2/N1)*Eb1
+Rb=-((Eb2-Ea-Ia2*Ra)/Ia2)//Wrongly calculated in book,wrong value of Eb2 is taken
+W1=(2*%pi*N1)/60
+Kt1=Eb1/W1
+T1=Kt1*Ia1
+W2=(2*%pi*N2)/60
+Kt2=Eb2/W2//Wrongly computed in textbook
+T2=Kt2*Ia2//The answer provided in the textbook is wrong
+printf('\n\n External resistance to be added=%0.1f ohm\n\n',Rb)
+printf('\n\n Initial braking torque=%0.1f N-m\n\n',T1)
+printf('\n\n braking torque at 300 rpm=%0.1f N-m\n\n',T2)
+//The answer provided in the textbook is wrong(both)