From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3764/CH2/EX2.13/Ex2_13.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3764/CH2/EX2.13/Ex2_13.sce (limited to '3764/CH2/EX2.13/Ex2_13.sce') diff --git a/3764/CH2/EX2.13/Ex2_13.sce b/3764/CH2/EX2.13/Ex2_13.sce new file mode 100644 index 000000000..10ed7b770 --- /dev/null +++ b/3764/CH2/EX2.13/Ex2_13.sce @@ -0,0 +1,18 @@ +clc +// + +//Variable declaration +L=500.0 // Length of rod(mm) +A=60 // Cross Sectional area(mm**2) +E=200 // Modulus of elasticity(GPa) +ey=300 // Yield Point(MPa) +DELTAc=7 // Stretch(mm) + +//Calculation +ec=DELTAc/L // Maximum strain permitted on point C +ey=(ey*((10**6)))/(E*((10**9))*(1.0)) // Maximum strain permitted on point Y +ed=ec-ey // Strain after unloading +DELTAd=ed*L // Deformation(mm) + +// Results +printf("\n Permanent set deformation =%1f mm' ,DELTAd) -- cgit