diff options
Diffstat (limited to '1466/CH7/EX7.2/7_2.sce')
-rwxr-xr-x | 1466/CH7/EX7.2/7_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1466/CH7/EX7.2/7_2.sce b/1466/CH7/EX7.2/7_2.sce new file mode 100755 index 000000000..82c448f48 --- /dev/null +++ b/1466/CH7/EX7.2/7_2.sce @@ -0,0 +1,13 @@ +
+clc
+//initialisation of variables
+f= 0.0056
+l= 150 //ft
+v= 8 //ft/sec
+d= 8//in
+g= 32.2//ft/sec^2
+//CALCULATIONS
+hf= 4*f*l*v^2/((d/12)*2*g)
+hf1= v^2*12*4*150/(106^2*d)
+//RESULTS
+printf (' head lost in friction = %.2f ft of water',hf1)
|