summaryrefslogtreecommitdiff
path: root/3456/CH1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3456/CH1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3456/CH1')
-rw-r--r--3456/CH1/EX1.1/Ex1_1.sce14
1 files changed, 14 insertions, 0 deletions
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)