diff options
Diffstat (limited to '569/CH3/EX3.17/3_17.sci')
-rwxr-xr-x | 569/CH3/EX3.17/3_17.sci | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/569/CH3/EX3.17/3_17.sci b/569/CH3/EX3.17/3_17.sci new file mode 100755 index 000000000..5c5aca438 --- /dev/null +++ b/569/CH3/EX3.17/3_17.sci @@ -0,0 +1,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)
|