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.1/Ex10_1.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.1/Ex10_1.sce')
-rw-r--r-- | 3731/CH10/EX10.1/Ex10_1.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3731/CH10/EX10.1/Ex10_1.sce b/3731/CH10/EX10.1/Ex10_1.sce new file mode 100644 index 000000000..5bdc9a1b6 --- /dev/null +++ b/3731/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,31 @@ +//Chapter 10:Traction Drives
+//Example 1
+clc;
+
+//Variable Initialization
+Ma=480 //mass of each motor armature in kg 0.48tonne=480kg
+Da=0.5 //average diameter of each motor in m
+m=450 //mass of each wheel in kg
+R=0.54 //radius of each wheel tread in m
+M=40 //combine wight of one motor and one trailer coach in ton
+alpha=5 //accelaration in metres per second
+N=4 //number of DC motors
+a=0.4 //gear ratio
+r=20 //train resistance in ohms
+
+//Solution
+Jw=1/2*m*R**2 //inertia of the each wheel in kg metre square
+nw=2*(N*2) //total number of wheels
+J1=nw*Jw //total inertia of all the wheels in kg metre square
+
+Jm=N*(1/2*Ma*(Da/2)**2) //approximate inertia of all the motors in kg metre square
+J2=Jm/a**2 //approximate innertia of the motor referred to the wheels in kg metre square
+
+Fa2=(J1+J2)*alpha*1000/3600/R //Tractive efforts for driving rorating parts
+Fa1=277.8*M*alpha //tractive efforts to accelerate the train mass horizontally
+Fr=r*M //Tractive efforts required to overcome train resistance
+Ft=Fa1+Fa2+Fr //Tractive efforts required to move the train
+Tm=a*R*Ft/N //torque per motor
+
+//Result
+mprintf("\nTorque per motor: %.1f N-m",Tm)
|