diff options
Diffstat (limited to '3772/CH3/EX3.1/Ex3_1.sce')
-rw-r--r-- | 3772/CH3/EX3.1/Ex3_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3772/CH3/EX3.1/Ex3_1.sce b/3772/CH3/EX3.1/Ex3_1.sce new file mode 100644 index 000000000..745356751 --- /dev/null +++ b/3772/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,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) |