blob: c7d9402643f8cd5fd9b5dc19ee5bce8327583e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//radius of gyration
//initialisation of variables
m=2.58065//slug ft^3
w=2.144//in
//CALCULATIONS
R=sqrt(m/w)//ft
//RESULTS
printf('The radius of gyration=% f ft',R)
|