summaryrefslogtreecommitdiff
path: root/779/CH2/EX2.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /779/CH2/EX2.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '779/CH2/EX2.3')
-rwxr-xr-x779/CH2/EX2.3/2_3.sce6
1 files changed, 6 insertions, 0 deletions
diff --git a/779/CH2/EX2.3/2_3.sce b/779/CH2/EX2.3/2_3.sce
new file mode 100755
index 000000000..41199e937
--- /dev/null
+++ b/779/CH2/EX2.3/2_3.sce
@@ -0,0 +1,6 @@
+R0 = 2.8; // Resistence at t=0 degree in ohm
+R100 = 3.8; // Resistence at t = 100 degree in ohm
+a = (R100/R0 - 1)*0.01; // alpha
+R = 5.8; // Indicated ressistace in ohm
+t = (R/R0 - 1)/a; // Temperature in degree
+disp("degree",t,"The temperature when indicated resistance is 5.8 ohm is ")