diff options
Diffstat (limited to '2087/CH14/EX14.2')
-rwxr-xr-x | 2087/CH14/EX14.2/example14_2.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2087/CH14/EX14.2/example14_2.sce b/2087/CH14/EX14.2/example14_2.sce new file mode 100755 index 000000000..b8952835b --- /dev/null +++ b/2087/CH14/EX14.2/example14_2.sce @@ -0,0 +1,26 @@ +
+
+//example 14.2
+//design an irrigation canal for given data
+clc;funcprot(0);
+//given
+Q=14; //discharge
+m=1; //critical velocity ratio
+r=5.7; //B/D
+
+D=(Q/(0.55*6.2))^(1/2.64);
+B=D*r;
+R=(B*D+D^2/2)/(B+D*5^0.5);
+Vo=0.55*m*D^0.64;
+//applying kutters formula; V=C(RS)^0.5
+//where C=(23+1/N+0.00155/S)*(R*S)^0.5/(1+(23+0.00155/S)*N/R^0.5);
+//assuming S^0.5=y
+y=poly([-1.98D-5,1.55D-3,-0.954,67.5],'x','c');
+roots(y);
+//taking real values of y
+S=0.0139906^2;
+B=round(B*100)/100;
+D=round(D*100)/100;
+mprintf("Width of channel section=%f m.",B);
+mprintf("\nDepth of channel section=%f m.",D);
+mprintf("\nBed slope=%f.",S);
|