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 --- 3456/CH1/EX1.1/Ex1_1.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 3456/CH1/EX1.1/Ex1_1.sce (limited to '3456/CH1') diff --git a/3456/CH1/EX1.1/Ex1_1.sce b/3456/CH1/EX1.1/Ex1_1.sce new file mode 100644 index 000000000..85d01b495 --- /dev/null +++ b/3456/CH1/EX1.1/Ex1_1.sce @@ -0,0 +1,14 @@ +//Example 1.1 +//Shear Stress +//Page No. 16 +clc;clear;close; + +y_b=2; //in J/m^2 +G=75; //in Gpa +G=G*10^9; //conversion to Pa +L=0.01; //in mm +L=L*10^-3; //conversion to m +nu=0.3; //no unit +T=sqrt((3*%pi*y_b*G)/(8*(1-nu)*L)); +T=T/10^6; +printf('Shear Stress Required to nucleate a grain boundary crack in high temperature deformation = %g MPa',T) -- cgit