diff options
Diffstat (limited to '3648/CH5/EX5.7')
-rw-r--r-- | 3648/CH5/EX5.7/Ex5_7.sce | 11 | ||||
-rw-r--r-- | 3648/CH5/EX5.7/Ex5_7.txt | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH5/EX5.7/Ex5_7.sce b/3648/CH5/EX5.7/Ex5_7.sce new file mode 100644 index 000000000..0c92cd748 --- /dev/null +++ b/3648/CH5/EX5.7/Ex5_7.sce @@ -0,0 +1,11 @@ +//Example 5_7
+clc();
+clear;
+//To find the required tension in the rope
+m=40 //units in Kg
+g=9.8 //units in meters/sec^2
+theta=0 //units in degrees
+vf=0.3 //units in meters/sec
+s=0.5 //units in meters
+T=round((m*g)+((0.5*m*vf^2)/(s*cos(theta*%pi/180)))) //units in Newtons
+printf("Tension in the rope is T=%d N",T)
diff --git a/3648/CH5/EX5.7/Ex5_7.txt b/3648/CH5/EX5.7/Ex5_7.txt new file mode 100644 index 000000000..9952ea3b1 --- /dev/null +++ b/3648/CH5/EX5.7/Ex5_7.txt @@ -0,0 +1 @@ + Tension in the rope is T=396 N
\ No newline at end of file |