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
|
{
"metadata": {
"name": "CH19"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 19: Thermal Properties"
]
},
{
"cell_type": "heading",
"level": 3,
"metadata": {},
"source": [
"Example 19.1 Page No 733"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Calculation of maximum temperature\n",
"\n",
"#Given\n",
"To=20 # Room Temperature (degree celsius)\n",
"sigma=-172 #Mpa Compressive stress\n",
"E=100*10**3 #Mpa Young's modulus\n",
"a=20*10**-6 #Celsius**-1 Coefficient of thermal expansion\n",
"\n",
"#Calculation\n",
"Tf=To-(sigma/(E*a))\n",
"\n",
"print\"Final Temperature is \",Tf,\"C\"\n",
"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Final Temperature is 106.0 C\n"
]
}
],
"prompt_number": 2
}
],
"metadata": {}
}
]
}
|