blob: 00ea0eabf4d2817d7f341976b6de0c7bd4d2adb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//example 14.34
//calculate concentration at point 10 cm above the bed
clc;funcprot(0);
//given
D=2.8; //depth of flow
c_=700; //concentration at 30 cm below water surface
y=0.1;
a=D-0.3;
e=0.4; //exponent in rouse equation;
c=c_*(a*(D-y)/(y*(D-a)))^e;
mprintf("concentration at point 10 cm above the bed=%i ppm.",c);
|