diff options
Diffstat (limited to '24/CH9/EX9.9')
-rwxr-xr-x | 24/CH9/EX9.9/Example9_9.sce | 12 | ||||
-rwxr-xr-x | 24/CH9/EX9.9/Example9_9_result.txt | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/24/CH9/EX9.9/Example9_9.sce b/24/CH9/EX9.9/Example9_9.sce new file mode 100755 index 000000000..ec1d9625a --- /dev/null +++ b/24/CH9/EX9.9/Example9_9.sce @@ -0,0 +1,12 @@ +//Given that
+m = 4.0* 10^-6 //in kg
+l = 0.77 * 10^-3 //in meter
+h = 0.30 //in m
+g = 9.8 //in m/s^2
+
+//Sample Problem 9-9
+printf("**Sample Problem 9-9**\n")
+//Using Work-Energy theorem
+//F * l = mgh
+F = m* g* h/l
+printf("The external force on the betal is %fN", F)
\ No newline at end of file diff --git a/24/CH9/EX9.9/Example9_9_result.txt b/24/CH9/EX9.9/Example9_9_result.txt new file mode 100755 index 000000000..3f838c3ca --- /dev/null +++ b/24/CH9/EX9.9/Example9_9_result.txt @@ -0,0 +1,2 @@ +**Sample Problem 9-9**
+The external force on the betal is 0.015273N
\ No newline at end of file |