summaryrefslogtreecommitdiff
path: root/629/CH2/EX2.3/example2_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '629/CH2/EX2.3/example2_3.sce')
-rw-r--r--629/CH2/EX2.3/example2_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/629/CH2/EX2.3/example2_3.sce b/629/CH2/EX2.3/example2_3.sce
new file mode 100644
index 000000000..14d04964a
--- /dev/null
+++ b/629/CH2/EX2.3/example2_3.sce
@@ -0,0 +1,13 @@
+clear
+clc
+//Example 2.3 MODELING A BOARD SLIDING ON A LIQUID LAYER
+mu=0.05; //[N.s/m^2]
+l=1; //[m]
+A=l^2 //area[m^2]
+delV=0.02; //ΔV[m]
+W=25; //[N]
+//Frebody analysis
+Ft=W*sind(20) //tangential force[N]
+Fs=Ft //shear force[N]
+dely=mu*delV*A*10^3/Fs //Δy[mm]
+printf("\n The space between board and the tramp = %.3f mm.\n",dely) \ No newline at end of file