diff options
Diffstat (limited to '1466/CH10')
-rwxr-xr-x | 1466/CH10/EX10.1/10_1.sce | 17 | ||||
-rwxr-xr-x | 1466/CH10/EX10.2/10_2.sce | 15 | ||||
-rwxr-xr-x | 1466/CH10/EX10.3/10_3.sce | 17 | ||||
-rwxr-xr-x | 1466/CH10/EX10.4/10_4.sce | 8 | ||||
-rwxr-xr-x | 1466/CH10/EX10.5/10_5.sce | 20 | ||||
-rwxr-xr-x | 1466/CH10/EX10.6/10_6.sce | 10 | ||||
-rwxr-xr-x | 1466/CH10/EX10.7/10_7.sce | 11 | ||||
-rwxr-xr-x | 1466/CH10/EX10.8/10_8.sce | 14 |
8 files changed, 112 insertions, 0 deletions
diff --git a/1466/CH10/EX10.1/10_1.sce b/1466/CH10/EX10.1/10_1.sce new file mode 100755 index 000000000..bdd38e137 --- /dev/null +++ b/1466/CH10/EX10.1/10_1.sce @@ -0,0 +1,17 @@ +
+clc
+//initialisation of variables
+A=32//ft^2
+b=6//ft
+d=4//ft
+c=2//ft
+k=0.29
+sl=10//ft per mile
+//CALCULATIONS
+wp=b+2*sqrt(d^2+c^2)
+m=A/wp
+C=157.5/(1+(k/(sqrt(m))))
+v=C*sqrt(m*sl/5280)
+Q=A*v
+//RESULTS
+printf (' quantity= %.f ft^3/sec',Q)
diff --git a/1466/CH10/EX10.2/10_2.sce b/1466/CH10/EX10.2/10_2.sce new file mode 100755 index 000000000..0a860cc1c --- /dev/null +++ b/1466/CH10/EX10.2/10_2.sce @@ -0,0 +1,15 @@ +
+clc
+//initialisation of variables
+clear
+d= 3 //ft
+r= 200
+Q= 3500 //gal/min
+k= 100
+d1= 1.9 //ft
+
+//CALCULATIONS
+D= d-(Q/(k*r))-d1
+
+//RESULTS
+printf (' Required depth= %.3f ft',D)
diff --git a/1466/CH10/EX10.3/10_3.sce b/1466/CH10/EX10.3/10_3.sce new file mode 100755 index 000000000..7ab13c342 --- /dev/null +++ b/1466/CH10/EX10.3/10_3.sce @@ -0,0 +1,17 @@ +
+clc
+//initialisation of variables
+r=0.5
+sl=1600
+a=10000//ft^2
+//CALUCLATIONS
+k1=2*sqrt(1+1)-2
+A=k1+1
+wp=k1+2*sqrt(2)
+m=A/wp
+k=r/sl
+d=(a/(60*A*90*k))^0.2
+b=k1*d
+//RESULTS
+printf (' d= %.2f ft' ,d)
+printf ('\n b= %.2f ft',b)
diff --git a/1466/CH10/EX10.4/10_4.sce b/1466/CH10/EX10.4/10_4.sce new file mode 100755 index 000000000..6a661b4ac --- /dev/null +++ b/1466/CH10/EX10.4/10_4.sce @@ -0,0 +1,8 @@ +
+clc
+//initialisation of variables
+d=6//ft
+//CALCULATIONS
+depth=0.81*d
+//RESULTS
+printf (' depth= %.2f ft',depth)
diff --git a/1466/CH10/EX10.5/10_5.sce b/1466/CH10/EX10.5/10_5.sce new file mode 100755 index 000000000..81898ee21 --- /dev/null +++ b/1466/CH10/EX10.5/10_5.sce @@ -0,0 +1,20 @@ +
+clc
+//initialisation of variables
+p=80//percent
+ra=36.6//in
+area=1680//acres
+r=1/3
+re=15//in
+h=48//gallons per head
+V= 1098435 //gal
+//CALCULATOINS
+mir=ra*p/100
+cr=mir-re
+vol=area*4840*9*cr/12
+volg=(vol/0.161)+V
+vola=volg*(1-r)
+pop=vola/(h*365)
+//RESULTS
+printf (' Volume of rain collected per annum= %.f gal',volg)
+printf (' \n population supplied= %.f',pop-24)
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)
diff --git a/1466/CH10/EX10.7/10_7.sce b/1466/CH10/EX10.7/10_7.sce new file mode 100755 index 000000000..ae37904ff --- /dev/null +++ b/1466/CH10/EX10.7/10_7.sce @@ -0,0 +1,11 @@ +
+clc
+//initialisation of variables
+q=40//ft^3/sec
+d1=3//ft
+g=32.2//ft/sec^2
+//CALCULATIONS
+d2=-1.5+sqrt((2*q*q/(g*3))+(d1*d1/4))
+H=d2-d1
+//RESULTS
+printf (' height of the wave= %.2f ft',H)
diff --git a/1466/CH10/EX10.8/10_8.sce b/1466/CH10/EX10.8/10_8.sce new file mode 100755 index 000000000..2454cda37 --- /dev/null +++ b/1466/CH10/EX10.8/10_8.sce @@ -0,0 +1,14 @@ +
+clc
+//initialisation of variables
+Q=1.5//ft
+w=1//ft
+g=32.2//ft/sec^2
+//CALCULATIONS
+H1=(Q/(w*3.09))^(2/3)
+h=2*H1/3
+v=sqrt(2*g*H1/3)
+V=1.76//ft/sec//by plotting
+H=H1-(V*V/(2*g))
+//RESULTS
+printf (' depth of water at throat= %.2f ft',H)
|