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 /1730/CH2/EX2.19/Exa2_19.sce | |
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 '1730/CH2/EX2.19/Exa2_19.sce')
-rwxr-xr-x | 1730/CH2/EX2.19/Exa2_19.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1730/CH2/EX2.19/Exa2_19.sce b/1730/CH2/EX2.19/Exa2_19.sce new file mode 100755 index 000000000..1cc44cf54 --- /dev/null +++ b/1730/CH2/EX2.19/Exa2_19.sce @@ -0,0 +1,17 @@ +//Exa2.19
+clc;
+clear;
+close;
+disp("Let R0 be the resistance of the coil at 0 degree C and alpha0 be its temperature coefficient of resistance at 0 degree C");
+disp("Resistance at 20 degree C, 18 = R0 * (1+20*alpha0) (i)");
+disp("Resistance at 50 degree C, 20 = R0 * (1+50*alpha0) (ii)");
+disp("Dividing Eq.(ii) by Eq.(i), we have");
+disp("20/18= (1+50*alpha0)/(1+20*alpha0)");
+disp("or alpha0 = 1/250=0.004 ohm/ohm/degree C");
+disp("If t degree C is the temperature of coil when its resistance is 21 ohm, then");
+disp("21=R0*(1+0.004*t)");
+disp("Dividing Eq.(iii) by Eq.(ii), we have");
+disp("21/20=(1+0.004*t)/(1+50*0.004)");
+disp("or t=65 degree C");
+disp("Temperature rise = t-surrounding temperature = 65 - 15 = 50 degree C");
+
|