blob: 745356751f0fa54a70111ea29698de5795d1b8fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Problem 3.1,Page no.54
clc;clear;
close;
P=40 //mm //Force applied to stretch a tape
L=30 //m //Length of steel tape
A=6*1 //mm //Cross section area
E=200*10**9*10**-6 //KN/m**2 //Modulus of Elasticity
//Calculations
sigma_L=(P*L*10**3)*(A*E)**-1 //mm
//Result
printf("The Elongation of steel tape is %.1f mm",sigma_L)
|