blob: 5b82571aca702662a7914f52ef236d412b45734c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Rupture Lifetime Prediction
clear;
clc;
printf("\tDesign Example 8.2\n");
T=800+273; // Temperature in K
//stress is 140 MPa
//From Graph of Fig. 8.32 Larson-Miller Parameter is deduced
L_M=24*10^3;
t=10^((L_M/T)-20);
printf("\nTime to rupture is : %d hours\n",t);
//End
|