diff options
Diffstat (limited to '2087/CH14/EX14.30/example14_30.sce')
-rwxr-xr-x | 2087/CH14/EX14.30/example14_30.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2087/CH14/EX14.30/example14_30.sce b/2087/CH14/EX14.30/example14_30.sce new file mode 100755 index 000000000..4544ea1c5 --- /dev/null +++ b/2087/CH14/EX14.30/example14_30.sce @@ -0,0 +1,22 @@ +
+
+//example 14.30
+//Design a section of unlined canal in a loomy soil
+clc;funcprot(0);
+//given
+Q=50; //discharge
+V=1; //permissible velocity
+s=2; //side slope
+r=6; //B/D ratio
+N=0.0225; //rogosity coefficient
+
+A=Q/V;
+D=(A/(r+2))^0.5;
+B=r*D;
+P=B+2*(5*D^2)^0.5;
+R=A/P;
+S=(V*N/R^(2/3))^2;
+mprintf("Width of channel section=%i m.",B);
+mprintf("\nDepth of channel section=%f m.",D);
+mprintf("\nBed slope=%f.",S);
+
|