blob: 31bd6f8a1ac4ad2fd09b24203d05530599d380b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
R1=5//tonf
R2=7//tonf
P=5.77//tonf,compressive
m=11.56//tonf
a=30//degree
//CALCULATIONS
P=-sqrt(cosd(a)+m*sqrt(cosd(a))+2*0.5-R1*2)//tonf
//RESULTS
printf('the methods of sections in the force=% f tonf',P)
|