diff options
Diffstat (limited to '24/CH9/EX9.9/Example9_9.sce')
-rwxr-xr-x | 24/CH9/EX9.9/Example9_9.sce | 12 |
1 files changed, 12 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 |