diff options
Diffstat (limited to '3647/CH12/EX12.14/ex12_4.sce')
-rw-r--r-- | 3647/CH12/EX12.14/ex12_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3647/CH12/EX12.14/ex12_4.sce b/3647/CH12/EX12.14/ex12_4.sce new file mode 100644 index 000000000..ad9d582a1 --- /dev/null +++ b/3647/CH12/EX12.14/ex12_4.sce @@ -0,0 +1,12 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +clc
+//initialisation of variables
+x=32.5//in
+y=33.7//in
+h=8//in
+//CALCULATIONS
+C=sqrt((x)^2/(4*y*h))//ft
+//RESULTS
+printf('the coefficient of velocity=% f ft',C)
|