summaryrefslogtreecommitdiff
path: root/1187/CH6/EX6.3/3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1187/CH6/EX6.3/3.sce')
-rwxr-xr-x1187/CH6/EX6.3/3.sce21
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