summaryrefslogtreecommitdiff
path: root/3204/CH2/EX2.23/Ex2_23.sce
blob: ec4c6aa1b4653125cda0e061d2b043c9dafd563d (plain)
1
2
3
4
5
6
7
8
9
10
11
//Initilization of variables
W=1000 //N
r=0.30 //m //radius of the wheel
h=0.15 //m //height of the obstacle
//Calculations
theta=asind(1) //degree //P is mini when sin(theta)=1 from eq'n of P
Pmini=(W*sqrt((2*r*h)-(h^2)))/(r*sind(theta)) //N
//Results
clc
printf('The least force required to just turn the wheel over the block is %f N \n',Pmini)
printf('The angle wich should be made by Pmini with AC is %f degree \n',theta)