diff options
Diffstat (limited to '24/CH8/EX8.6')
-rwxr-xr-x | 24/CH8/EX8.6/Example8_6.sce | 19 | ||||
-rwxr-xr-x | 24/CH8/EX8.6/Example8_6_result.txt | 5 |
2 files changed, 24 insertions, 0 deletions
diff --git a/24/CH8/EX8.6/Example8_6.sce b/24/CH8/EX8.6/Example8_6.sce new file mode 100755 index 000000000..f85f6a692 --- /dev/null +++ b/24/CH8/EX8.6/Example8_6.sce @@ -0,0 +1,19 @@ +//Given that
+m = 14 //in kg
+F = 40 //in N
+d = 0.50 //in meter
+Vo = 0.60 //in m/s
+V = 0.20 //in m/s
+
+//Sample Problem 8-6a
+printf("**Sample Problem 8-6a**\n")
+//Using the definition of Work done
+Wf = F* d
+printf("The work done by the force F is equal to %dJ\n", Wf)
+
+//Sample Problem 8-6b
+printf("\n**Sample Problem 8-6b**\n")
+//Using Work-Energy theorem
+//TE = decrease in Kinetic Energy + Work done by the force F
+TE = .5*m*(Vo^2 - V^2) + Wf
+printf("The incrase in the thermal energy is equal to %fJ", TE)
\ No newline at end of file diff --git a/24/CH8/EX8.6/Example8_6_result.txt b/24/CH8/EX8.6/Example8_6_result.txt new file mode 100755 index 000000000..c91098f95 --- /dev/null +++ b/24/CH8/EX8.6/Example8_6_result.txt @@ -0,0 +1,5 @@ +**Sample Problem 8-6a**
+The work done by the force F is equal to 20J
+
+**Sample Problem 8-6b**
+The incrase in the thermal energy is equal to 22.240000J
\ No newline at end of file |