summaryrefslogtreecommitdiff
path: root/3557/CH7/EX7.4/Ex7_4.sce
blob: f11080cd410873e6fd8ee5b39fe1d02dceb3bfa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 7.4//

//The thermal expansion coefficient for AL2O3 over the range
a=8.8*10^-6//mm/(mm degree C) //Linear coefficient of Thermal expansion
//If we take room temperature as 25degree C
T=1000;//degree C //Temperature
T1=25;//degree C //Temperature
e=a*(T-T1)
mprintf("e = %e",e)
//an E for sintered Al2O3 as
E=370*10^3;//MPa // sintered Al2O3
si=E*e
mprintf("\n si = %i MPa (compressive) (Answer calculated in textbook is wrong)",si)