diff options
Diffstat (limited to '3813/CH1/EX1.5.b')
-rw-r--r-- | 3813/CH1/EX1.5.b/Ex1_5b.jpg | bin | 0 -> 19734 bytes | |||
-rw-r--r-- | 3813/CH1/EX1.5.b/Ex1_5b.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3813/CH1/EX1.5.b/Ex1_5b.jpg b/3813/CH1/EX1.5.b/Ex1_5b.jpg Binary files differnew file mode 100644 index 000000000..6e391778b --- /dev/null +++ b/3813/CH1/EX1.5.b/Ex1_5b.jpg diff --git a/3813/CH1/EX1.5.b/Ex1_5b.sce b/3813/CH1/EX1.5.b/Ex1_5b.sce new file mode 100644 index 000000000..02a9a4e86 --- /dev/null +++ b/3813/CH1/EX1.5.b/Ex1_5b.sce @@ -0,0 +1,16 @@ +//Electric Drives:concepts and applications by V.subrahmanyam
+//Publisher:Tata McGraw-Hill
+//Edition:Second
+//Ex1_5b
+clc;
+clear;
+V=250;// voltage in V
+I=40;//Current in A
+Ra=0.4;//Resistance in ohm
+Eb=125;// voltage in V
+Na=50.24;//Speed in rpm
+Re=(V-Eb-(I*Ra))/I;
+disp(Re,'The value of resistance in ohm:')
+T=(Eb*I)/Na;
+disp(T,'The torque developed in Nm is:')
+//Result vary due to error in calculation of torque in the textbook
|