diff options
Diffstat (limited to '2021/CH10/EX10.8/EX10_8.sce')
-rwxr-xr-x | 2021/CH10/EX10.8/EX10_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2021/CH10/EX10.8/EX10_8.sce b/2021/CH10/EX10.8/EX10_8.sce new file mode 100755 index 000000000..7b28eab71 --- /dev/null +++ b/2021/CH10/EX10.8/EX10_8.sce @@ -0,0 +1,15 @@ +//Finding of Dimemsions
+//Given
+q=0.5;
+sb=1/3000;
+c=60;
+n=0.015;
+//To Find
+y=q/(2*c*(1/2)^(0.5)*(sb)^(1/2));
+y1=y^(2/5);
+b=2*y1;
+y2=q/(2*(1/n)*(1/2)^(2/3)*(sb)^(1/2));
+y3=(y2)^(3/8);
+b1=2*y3;
+disp("Economical Dimensions ="+string(b)+" meter");
+disp("Economical Dimensions ="+string(b1)+" meter");
|