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
|
{
"metadata": {
"name": "",
"signature": "sha256:1bd6512f5b9ca8155cc1e9c3b04ad8207681499e095afaf4830a217017e989ea"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 15: Fatigue"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 15.1 Pg.No.445"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from __future__ import division\n",
"from scipy import integrate\n",
"from sympy import symbols\n",
"import math\n",
"\n",
"#eqn 15.30 K=S(pi*a)^1/2*alpha\n",
"S=175 #stress range (N/mm^2)\n",
"K=1708 #fracture toughness (n/mm^3/2)\n",
"alpha=1 #constant\n",
"n=4 #constant\n",
"C=40*10**-15 #rate of crack growth (mm/cycle)\n",
"ai=0.1 #initial crack length\n",
"\n",
"alpha_f=K**2/S**2/math.pi\n",
"\n",
"\n",
"Nf=2/C/(n-2)/(S*math.pi**0.5)**n*(1/ai**((n-2)/2)-1/alpha_f**((n-2)/2))\n",
"print \"Number of cycles to failure = %5.0f cycles\\n\"%(Nf)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Number of cycles to failure = 26919 cycles\n",
"\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
|