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 /3792/CH3/EX3.8/Ex3_8.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 '3792/CH3/EX3.8/Ex3_8.sce')
-rw-r--r-- | 3792/CH3/EX3.8/Ex3_8.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3792/CH3/EX3.8/Ex3_8.sce b/3792/CH3/EX3.8/Ex3_8.sce new file mode 100644 index 000000000..33d91f508 --- /dev/null +++ b/3792/CH3/EX3.8/Ex3_8.sce @@ -0,0 +1,24 @@ +// SAMPLE PROBLEM 3/8
+clc;clear;funcprot(0);
+// Given data
+m=1500;// The mass of the car in kg
+v_A=100;// The velocity in km/h
+v_C=50;// The velocity in km/h
+rho_A=400;// The radius of curvature in m
+rho_C=80;// The radius of curvature in m
+delta_s=200;// m
+
+// Calculation
+a_t=abs((((v_C/3.6)^2)-((v_A/3.6)^2))/(2*delta_s));// The tangential acceleration in m/s^2
+a_na=((v_A/3.6)^2)/rho_A;// The normal components of acceleration at A in m/s^2
+a_nb=0;// The normal components of acceleration at B in m/s^2
+a_nc=((v_C/3.6)^2)/rho_C;// The normal components of acceleration at C in m/s^2
+F_t=m*a_t;// N
+F_na=m*a_na;// N
+F_nb=m*a_nb;// N
+F_nc=m*a_nc;// N
+F_a=sqrt(F_na^2+F_t^2);// The total horizontal force acting on the tires at A in N
+F_b=sqrt(F_nb^2+F_t^2);// The total horizontal force acting on the tires at B in N
+F_c=sqrt(F_nc^2+F_t^2);// The total horizontal force acting on the tires at C in N
+printf("\nAt A,F=%4.0f N \nAt B,F=%4.0f N \nAt C,F=%4.0f N",F_a,F_b,F_c);
+
|