1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Chapter 11: Fracture Mechanics"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 11.1: Fracture_Toughness.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Example 11.1\n",
"//Fracture Toughness\n",
"//Page No. 354\n",
"clc;clear;close;\n",
"\n",
"a=5; //in mm\n",
"a=a*10^-3; //conversion to m\n",
"t=1.27; //in cm\n",
"t=t*10^-2; //conversion to m\n",
"K_Ic=24; //in MPa*m^(1/2)\n",
"sigma=K_Ic/(sqrt(%pi*a)*sqrt(sec(%pi*a/(2*t))));\n",
"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);"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 11.2: Fracture_Toughness.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Example 11.2\n",
"//Fracture Toughness\n",
"//Page No. 354\n",
"clc;clear;close;\n",
"\n",
"K_Ic=57; //in MPam^(1/2)\n",
"sigma0=900; //in MPa\n",
"sigma=360; //in MPa\n",
"Q=2.35; //no unit\n",
"a_c=K_Ic^2*Q/(1.21*%pi*sigma^2);\n",
"a_c=a_c*1000; //cpnversion to mm\n",
"printf('\nCritical Crack depth = %g mm\nwhich is greater than the thickness of the vessel wall, 12mm',a_c);"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 11.3: Plasticity.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Example 11.3\n",
"//Plasticity\n",
"//Page No. 361\n",
"clc;clear;close;\n",
"\n",
"a=10; //in mm\n",
"a=a*10^-3; //conversion to m\n",
"sigma=400; //in MPa\n",
"sigma0=1500; //in MPa\n",
"rp=sigma^2*a/(2*%pi*sigma0^2);\n",
"rp=rp*1000; //conversion to mm\n",
"K=sigma*sqrt(%pi*a);\n",
"K_eff=sigma*sqrt(%pi*a)*sqrt(a+%pi*rp);\n",
"printf('\nPlastic zone size = %g mm\nStress Intensity Factor = %g MPa m^(1/2)\n\n\nNote: Calculation Errors in book',rp,K_eff);"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Scilab",
"language": "scilab",
"name": "scilab"
},
"language_info": {
"file_extension": ".sce",
"help_links": [
{
"text": "MetaKernel Magics",
"url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md"
}
],
"mimetype": "text/x-octave",
"name": "scilab",
"version": "0.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|