diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /764/CH12/EX12.2.a | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '764/CH12/EX12.2.a')
-rwxr-xr-x | 764/CH12/EX12.2.a/data12_2.sci | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/764/CH12/EX12.2.a/data12_2.sci b/764/CH12/EX12.2.a/data12_2.sci new file mode 100755 index 000000000..4d113a906 --- /dev/null +++ b/764/CH12/EX12.2.a/data12_2.sci @@ -0,0 +1,20 @@ + +//(Brakes) Example 12.2 +//Total mass of the car m (kg) +m = 1000 +//Moment of inertia of each wheel about its transverse axis I (kg-m2) +I = 0.5 +//Rolling radius of the wheel R (m) +R = 0.35 +//Moment of inertia of other parts of the car Ie (kg-m2) +Ie = 2.5 +//Ratio of speed of engine to the speed of wheels r +r = 5 +//Speed of the car v1 (km/h) +v1 = 100 +//Car deceleration dec (m/s2) +dec = 0.5 * 9.81 +//Final speed of the car v2 (km/h) +v2 = 0 +//Number of wheels n +n = 4 |