diff options
Diffstat (limited to '1280/CH5/EX5.8')
-rwxr-xr-x | 1280/CH5/EX5.8/5_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1280/CH5/EX5.8/5_8.sce b/1280/CH5/EX5.8/5_8.sce new file mode 100755 index 000000000..93929a34c --- /dev/null +++ b/1280/CH5/EX5.8/5_8.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+Q= 100 //gpm
+d= 1 //in
+kv= 0.05 //N
+//CALCULATIONS
+v= Q*4/(3.12*%pi*d^2)
+Nr= (12*v*d)/kv
+//RESULTS
+printf ('Reynolds number = %.f ',Nr+5)
|