diff options
Diffstat (limited to '1187/CH6/EX6.3/3.sce')
-rwxr-xr-x | 1187/CH6/EX6.3/3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1187/CH6/EX6.3/3.sce b/1187/CH6/EX6.3/3.sce new file mode 100755 index 000000000..674f7f06e --- /dev/null +++ b/1187/CH6/EX6.3/3.sce @@ -0,0 +1,21 @@ +clc
+
+F=6*10^3; // Pa
+b=0.12; // m
+
+f=F*b;
+
+disp("(a) The load the pad will support =")
+disp(f)
+disp("N/m")
+
+dp=12*10^3; // N/m^2
+dx=0.12; // m
+c=0.00018; // m
+u=0.5; // kg/m/s
+V=5; // m/s
+
+q=(dp/dx)*c^3/12/u + V*c/2;
+disp("(b) The rate at which oil must be supplied =")
+disp(q)
+disp("m^2/s")
\ No newline at end of file |