blob: bc4279420acbafa579f4ce88952b5712ae47f830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Example 11.1
//Fracture Toughness
//Page No. 354
clc;clear;close;
a=5; //in mm
a=a*10^-3; //conversion to m
t=1.27; //in cm
t=t*10^-2; //conversion to m
K_Ic=24; //in MPa*m^(1/2)
sigma=K_Ic/(sqrt(%pi*a)*sqrt(sec(%pi*a/(2*t))));
printf('Since Fracture Toughness of the material is = %g MPa\n and the applied stress is 172 MPa thus the flaw will propagate as a brittle fracture',sigma);
|