diff options
Diffstat (limited to '1962/CH9/EX9.2')
-rwxr-xr-x | 1962/CH9/EX9.2/example9_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1962/CH9/EX9.2/example9_2.sce b/1962/CH9/EX9.2/example9_2.sce new file mode 100755 index 000000000..f328c9f12 --- /dev/null +++ b/1962/CH9/EX9.2/example9_2.sce @@ -0,0 +1,16 @@ +
+//example 9.2
+//page 311
+clc; funcprot(0);
+//initialisation of variable
+L=100;//length
+D=0.2;//diameter
+hf=5.43;//head loss
+g=9.81
+pi=3.14;
+f=0.021//friction coeff.
+A=sqroot(2*g*D*hf/L);//area
+V=A/sqroot(f);
+Q=V*pi*D^2/4;
+disp(Q,"flow rate (m^3/s)=");
+clear
|