diff options
Diffstat (limited to '3204/CH6/EX6.7/Ex6_7.sce')
-rw-r--r-- | 3204/CH6/EX6.7/Ex6_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3204/CH6/EX6.7/Ex6_7.sce b/3204/CH6/EX6.7/Ex6_7.sce new file mode 100644 index 000000000..4ab756816 --- /dev/null +++ b/3204/CH6/EX6.7/Ex6_7.sce @@ -0,0 +1,10 @@ +// Initilization of variables
+M=2000 // kg // mass of the car
+mu=0.3 // coefficient of static friction between the tyre and the road
+g=9.81 // m/s^2 // acc. due to gravity
+// Calculations
+// Divide eqn 1 by eqn 2, We get
+theta=atand(mu) //degree
+// Results
+clc
+printf('The angle of inclination is %f degree \n',theta)
|