From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 539/CH6/EX6.3.a/Example_6_3a.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 539/CH6/EX6.3.a/Example_6_3a.sce (limited to '539/CH6/EX6.3.a/Example_6_3a.sce') diff --git a/539/CH6/EX6.3.a/Example_6_3a.sce b/539/CH6/EX6.3.a/Example_6_3a.sce new file mode 100755 index 000000000..d8882fd86 --- /dev/null +++ b/539/CH6/EX6.3.a/Example_6_3a.sce @@ -0,0 +1,20 @@ +clear; +clc; + +printf("\tExample 6.3\n"); + +//From draph in the question +//stress and strain can be obtained + +si2=150; // in MPa +si1=0; +e2=0.0016; +e1=0; +d0=12.8*10^-3; //Initial Diameter in m + +printf("\n\tPart A"); +//Young's Modulus = stress/strain +E=(si2-si1)/(e2-e1); +printf("\nModulus of elasticity is %.2f GPa",E/10^3); + +//End \ No newline at end of file -- cgit