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 /3492/CH2/EX2.4 | |
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 '3492/CH2/EX2.4')
-rw-r--r-- | 3492/CH2/EX2.4/Ex2_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3492/CH2/EX2.4/Ex2_4.sce b/3492/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..75253ce9f --- /dev/null +++ b/3492/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,13 @@ +clc
+//Chapter2
+//Ex_2.4
+//Given
+T_summer=20 //in degree celcius
+T_summer=T_summer+273 //in kelvin
+T_winter=-30 //in degree celcius
+T_winter=T_winter+273 //in kelvin
+//we have R is proportional to A*T
+//Hence
+R=(T_summer-T_winter)/T_summer
+R=R*100
+disp(R," Percentage change in the resistance of a pure metalwire from Saskatchewans summer too winter in % is ")
|