blob: 9aee8a21990e5b11f77b240f5938995f89e6b88e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc;
clear all;
Y = 2e11 // Young's modulus in newton per square meter
l = 2.75 // Length of wire in meters
d = 1e-3 // Diameter of wire in meter
r = (d/2); // Radius of wire
M = 1 // Applied load in kilogram
g = 9.8 // Acceleration due to gravity
T = M*g; // Tensile force
deltal = (T*l)/(%pi*r*r*Y);//Increase in length of wire
disp('m',deltal,'Increase in length of wire is')
// Variation in answer.. there is mistake in the book..checked in calculator also..
|