diff options
Diffstat (limited to '1962/CH9/EX9.13/example9_13.sce')
-rwxr-xr-x | 1962/CH9/EX9.13/example9_13.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1962/CH9/EX9.13/example9_13.sce b/1962/CH9/EX9.13/example9_13.sce new file mode 100755 index 000000000..7738d4d44 --- /dev/null +++ b/1962/CH9/EX9.13/example9_13.sce @@ -0,0 +1,23 @@ +
+//example 9.13
+//page 342
+clc; funcprot(0);
+//initialisation of variable
+L1=5000;
+D1=1.5;
+EL1=136;//energy level 1
+L2=800;
+D2=0.5;
+EL2=122;
+EL3=110;
+L3=1500;
+D3=0.75;
+//using iteration junction height=131;
+j=131;
+Q1=sqroot((EL1-j)/0.7594);
+disp(Q1,"flow in pipe 1(m^3/s)");
+Q2=sqroot((j-EL2)/36.33);
+disp(Q2,"flow in pipe 2(m^3/s)");
+Q3=sqroot((j-EL3)/8.168);
+disp(Q3,"flow in pipe 3(m^3/s)");
+clear
|