summaryrefslogtreecommitdiff
path: root/1205/CH8/EX8.2/S_8_2.sce
blob: 8983fac49eb3a2cd91b0d67993bf108b7685c87d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
clc;
F=800;//N Firce in verical direction
us=0.35;// Coeffiecient of static friction
uk=0.25;//Co=efficient of kinetic friction
theta=25;//degree, angle of inclination
theta=theta*%pi/180;//rad, Conversion into radian
// Force P start block moving up
// At static equillibrium Tan(Theta_s)=us
theta_s=atan(us);//rad
P=F*tan(theta+theta_s);//N,Force P to start block moving up
printf("Force P to start block moving up is %.0f N\n",P);


// Force P to keep block moving up
// At kinetic equillibrium Tan(Theta_k)=uk
theta_k=atan(uk);//rad
P=F*tan(theta+theta_k);//N,Force P to keep block moving up
printf("Force P to keep block moving up is %.0f N\n",P);


// Force P to prevent  block from sliding down

theta_s=atan(us);//rad
P=F*tan(theta-theta_s);//N,Force P to prevent  block from sliding down
printf("Force P to prevent  block from sliding down is %.0f N\n",P);