diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /569/CH3/EX3.17 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '569/CH3/EX3.17')
-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)
|