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 /3813/CH1/EX1.2 | |
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 '3813/CH1/EX1.2')
-rw-r--r-- | 3813/CH1/EX1.2/Ex1_2.jpg | bin | 0 -> 16244 bytes | |||
-rw-r--r-- | 3813/CH1/EX1.2/Ex1_2.sce | 22 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3813/CH1/EX1.2/Ex1_2.jpg b/3813/CH1/EX1.2/Ex1_2.jpg Binary files differnew file mode 100644 index 000000000..57364e235 --- /dev/null +++ b/3813/CH1/EX1.2/Ex1_2.jpg diff --git a/3813/CH1/EX1.2/Ex1_2.sce b/3813/CH1/EX1.2/Ex1_2.sce new file mode 100644 index 000000000..4a1e74a2d --- /dev/null +++ b/3813/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,22 @@ +//Electric Drives:concepts and application by V.Subrahmanyam
+//Publisher:Tata McGraw-Hill
+//Edition:Second
+//Ex1_2
+clc;
+clear;
+V1=400;//supply voltage is V
+I1=70;//Current in A
+N1=78.5;//speed in rad/sec
+R1=0.3;//resistance in ohm
+I2=90;//current in A
+N2=31.4;//Speed in rpm
+Eb1=V1-(I1*R1);
+T1=(Eb1*I1)/N1;
+V2=V1+Eb1;
+R2=(V2/I2)-R1;
+T2=(Eb1*I2)/N1;
+Eb2=(Eb1*N2)/N1;
+I=(V1+Eb2)/R2;
+T=(Eb2+I)/N2;
+disp(T,'The initial breaking torque in Nm is:')
+//Calculation error in the textbook
|