blob: f25a1debcf0a9fd9ce101ffc22330d0c4c7466f0 (
plain)
1
2
3
4
5
6
|
//Components of block normal to and parallel to inclined plane
//Let Wn be the normal component and Wp be the parallel component
//Refer fig. 2.5(b),triangle ABC
Wn=10*cosd(20) //kN
Wp=10*sind(20) //kN
printf("The normal and parallel components respectively are :-\n Wn=%.2f kN\n Wp=%.2f kN",Wn,Wp)
|