blob: 3605ee8f73d2d70d67221dfb4fe68ded6e9295d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter 1
//Example 1.1
//Page 3
clear;
clc;
K=0.222;
Qout=2;
//Calculation of value of h at which level stabilizes
printf("The level will stabilize from self regulation when Qout=Qin.Thus the value of h is %.0f ft",((Qout/K)^2)/27);
|