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 /2135/CH1/EX1.19 | |
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 '2135/CH1/EX1.19')
-rwxr-xr-x | 2135/CH1/EX1.19/Exa_1_19.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2135/CH1/EX1.19/Exa_1_19.sce b/2135/CH1/EX1.19/Exa_1_19.sce new file mode 100755 index 000000000..5413d7f8f --- /dev/null +++ b/2135/CH1/EX1.19/Exa_1_19.sce @@ -0,0 +1,17 @@ +//Exa 1.19
+clc;
+clear;
+close;
+format('v',6);
+
+//Given Data :
+//epsilon=0.2*t-5*10^-4*t^2;//mV
+t_ice=0;//degree C
+epsilon_ice=0.2*t_ice-5*10^-4*t_ice^2;//mV
+t_steam=100;//degree C
+epsilon_steam=0.2*t_steam-5*10^-4*t_steam^2;//mV
+//At t=60;
+t=60;//degree C
+epsilon=0.2*t-5*10^-4*t^2;//mV
+reading=(t_steam-t_ice)/(epsilon_steam-epsilon_ice)*(epsilon-epsilon_ice)
+disp(reading,"Thermometer will read(degree C) : ");
|