diff options
Diffstat (limited to '2087/CH15/EX15.2/example15_2.sce')
-rwxr-xr-x | 2087/CH15/EX15.2/example15_2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2087/CH15/EX15.2/example15_2.sce b/2087/CH15/EX15.2/example15_2.sce new file mode 100755 index 000000000..51defb483 --- /dev/null +++ b/2087/CH15/EX15.2/example15_2.sce @@ -0,0 +1,19 @@ +
+
+//example 15.2
+//design an irrigation channel in alluvial soil by Laecy's theory
+clc;funcprot(0);
+//given
+Q=15; //Full supply discharge
+f=1; //silt factor
+s=1/2; //side slope of channel
+
+//from Laecey regime channel (Fig.15.4(b)) B and D is obtained as;
+B=15.1;
+D=1.38;
+//also from Fig.15.5 we get slope as
+S=0.19/1000;
+mprintf("Width of channel section=%f m.",B);
+mprintf("\nDepth of channel section=%f m.",D);
+mprintf("\nBed slope=%f.",S);
+
|