diff options
Diffstat (limited to '1466/CH10/EX10.6/10_6.sce')
-rwxr-xr-x | 1466/CH10/EX10.6/10_6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1466/CH10/EX10.6/10_6.sce b/1466/CH10/EX10.6/10_6.sce new file mode 100755 index 000000000..7ae2cf820 --- /dev/null +++ b/1466/CH10/EX10.6/10_6.sce @@ -0,0 +1,10 @@ +
+clc
+//initialisation of variables
+d=2//ft
+vel=20//ft/sec
+//CALCULATIONS
+v=(32.2*vel*d)^(1/3)
+d1=vel*d/v
+//RESULTS
+printf ('critical depth of water= %.2f ft',d1)
|