diff options
Diffstat (limited to '2021/CH12/EX12.1/EX12_1.sce')
-rwxr-xr-x | 2021/CH12/EX12.1/EX12_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH12/EX12.1/EX12_1.sce b/2021/CH12/EX12.1/EX12_1.sce new file mode 100755 index 000000000..00a62a9a9 --- /dev/null +++ b/2021/CH12/EX12.1/EX12_1.sce @@ -0,0 +1,13 @@ +//Finding the type of boundary
+//Given
+ks=0.20*10^-3;
+tau=7.848;
+nu=0.01*10^-4;
+rho=1000;
+//To Find
+v=sqrt(tau/rho);
+R=(v*ks)/nu;
+disp("R ="+string(R)+" no units");
+if(R>4);
+if(R<60);
+disp("Flow is Transitional");
|