summaryrefslogtreecommitdiff
path: root/1187/CH6/EX6.4/4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1187/CH6/EX6.4/4.sce')
-rwxr-xr-x1187/CH6/EX6.4/4.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1187/CH6/EX6.4/4.sce b/1187/CH6/EX6.4/4.sce
new file mode 100755
index 000000000..ef1805894
--- /dev/null
+++ b/1187/CH6/EX6.4/4.sce
@@ -0,0 +1,18 @@
+clc
+
+d_p=0.05; // diameter of piston in m
+d_c=0.0504; // diameter of cylinder in m
+SG=0.87;
+rho_w=1000; // kg/m^3
+v=10^-4; // m^2/s
+dp=1.4*10^6; // Pa
+l=0.13; // m
+
+c=(d_c-d_p)/2; // clearance
+
+u=SG*rho_w*v; // Dynamice viscocity
+
+Vp=dp*c^3/(6*u*l*(d_p/2+c));
+disp("Velocity of the dashpot =")
+disp(Vp)
+disp("m/s") \ No newline at end of file