diff options
Diffstat (limited to '3648/CH4/EX4.7/Ex4_7.sce')
-rw-r--r-- | 3648/CH4/EX4.7/Ex4_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH4/EX4.7/Ex4_7.sce b/3648/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..386856b76 --- /dev/null +++ b/3648/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,10 @@ +//Example 4_7
+clc();
+clear;
+//To estimate the lower limit for the speed
+//In a practical situation u should be atleast 0.5
+u=0.5
+g=9.8 //units in meter/sec^2
+x=7 //units in meters
+v0=sqrt(2*u*g*x) //units in meters/sec
+printf("The lower limit of the speed v0=%.1f meter/sec",v0)
|