diff options
Diffstat (limited to '24/CH6/EX6.8')
-rwxr-xr-x | 24/CH6/EX6.8/Example6_8.sce | 19 | ||||
-rwxr-xr-x | 24/CH6/EX6.8/Example6_8_FBD.jpg | bin | 0 -> 37176 bytes | |||
-rwxr-xr-x | 24/CH6/EX6.8/Example6_8_result.txt | 5 |
3 files changed, 24 insertions, 0 deletions
diff --git a/24/CH6/EX6.8/Example6_8.sce b/24/CH6/EX6.8/Example6_8.sce new file mode 100755 index 000000000..3064fe0f0 --- /dev/null +++ b/24/CH6/EX6.8/Example6_8.sce @@ -0,0 +1,19 @@ +//Given that
+g = 9.8 //in m/s^2
+R = 2.1 //in m
+mu_s = 0.40
+
+//Sample Problem 6-8a
+printf("**Sample Problem 6-8a**\n")
+//N = mv^2/R
+//mg = mu_s * N
+//mg = mu_s * m*v^2/R
+//v = sqrt(g*R/mu_s)
+v_min = sqrt(g*R/mu_s)
+printf("The minimum spped of the cylender should be %f m/s\n", v_min)
+
+//Sample Problem 6-8b
+printf("\n**Sample Problem 6-8b**\n")
+mass = 49 //in kg
+c_force = mass * v_min^2/R
+printf("The Centripetal force on the rider would be %f N", c_force)
\ No newline at end of file diff --git a/24/CH6/EX6.8/Example6_8_FBD.jpg b/24/CH6/EX6.8/Example6_8_FBD.jpg Binary files differnew file mode 100755 index 000000000..d4f831dbd --- /dev/null +++ b/24/CH6/EX6.8/Example6_8_FBD.jpg diff --git a/24/CH6/EX6.8/Example6_8_result.txt b/24/CH6/EX6.8/Example6_8_result.txt new file mode 100755 index 000000000..f6936cec4 --- /dev/null +++ b/24/CH6/EX6.8/Example6_8_result.txt @@ -0,0 +1,5 @@ +**Sample Problem 6-8a**
+The minimum spped of the cylender should be 7.172866 m/s
+
+**Sample Problem 6-8b**
+The Centripetal force on the rider would be 1200.500000 N
\ No newline at end of file |