summaryrefslogtreecommitdiff
path: root/569/CH3/EX3.17/3_17.sci
blob: 5c5aca438ffcbe15c7541b53fea2b8ade281d528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// calculate the per unit change in the value of spring for different temperature ranges
clc;
dG_pu=-240*10^-6;
dD_pu=11.8*10^-6;
disp('for temperature change of 20 degree C to 50 degree C (%) =')
d_th=30;
dK_pu=(dG_pu+dD_pu)*d_th*100;
disp(dK_pu)
disp('for temperature change of 20 degree C to -50 degree C (%) =')
d_th=-70;
dK_pu=(dG_pu+dD_pu)*d_th*100;
disp(dK_pu)