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 /3731/CH10/EX10.7/Ex10_7.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 '3731/CH10/EX10.7/Ex10_7.sce')
-rw-r--r-- | 3731/CH10/EX10.7/Ex10_7.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/3731/CH10/EX10.7/Ex10_7.sce b/3731/CH10/EX10.7/Ex10_7.sce new file mode 100644 index 000000000..cde5382d0 --- /dev/null +++ b/3731/CH10/EX10.7/Ex10_7.sce @@ -0,0 +1,38 @@ +//Chapter 10:Traction Drives
+//Example 6
+clc;
+
+//Variable Initialization
+Ml=1000 //weight of the empty train in tonne
+Mt=5000 //weight of the fully loaded train in tonne
+G=15 //gradient of the track
+V=30 //maximum speed of the train
+r=40 //train resistance in N/tonne
+u=0.25 //co-efficient of adhesion
+alpha=0.3 //acelaration in kmphps
+
+W=100 //weight of each locomotive
+
+//Solution
+Md=W//Md=W*n
+Fm=9810*u*Md
+//By expanding and clubbing similar terms we get
+//(G*9.81*Mt)+(9.81*W*n*G)-((r*Mt)+(r*W*n))
+//(G*9.81*Mt)-(r*Mt)+(9.81*W*n*G)-(r*W*n)
+Fb1=(9.81*Mt*G)-(r*Mt) //By expanding we get
+Fb2=(9.81*W*G)-(r*W)//By expanding we get Mt*r+W*n*r
+mprintf("\nFm=%d*n",Fm)
+mprintf("\nFb=%d*n+%d",Fb2,Fb1)
+mprintf("\nEquating Fb and Fm we get")
+n=535750/(245250-10715)
+if (n>2) then
+ n=3
+end
+mprintf("\nThe number of locomotives is n:%d",n)
+Md=W*n
+M=Ml+W*n
+Ft=277.8*1.1*M*alpha+9.81*M*G+M*r
+Fm=9810*0.3*Md
+if (Fm>Ft) then
+ mprintf("\nThe train can be accelarated with %d locomotives",n)
+end
|