blob: 14d04964a328e5ac9d5cb4dc7e0d28b6ddc57ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
|