blob: 824dd6b927bc06f4076ccdcfc893d4d9be2be6f1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
//initialization of variables
clear
A=100 //cm^2
E=2*10^6 //kg/cm^2
// calculations
del=1093.5*10^6/(E*A)
// 1093.5 from the table
// results
printf('Central deflection = %.2f mm',del)
|