summaryrefslogtreecommitdiff
path: root/1730/CH2/EX2.28/Exa2_28.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1730/CH2/EX2.28/Exa2_28.sce
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 '1730/CH2/EX2.28/Exa2_28.sce')
-rwxr-xr-x1730/CH2/EX2.28/Exa2_28.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1730/CH2/EX2.28/Exa2_28.sce b/1730/CH2/EX2.28/Exa2_28.sce
new file mode 100755
index 000000000..cca71a1b1
--- /dev/null
+++ b/1730/CH2/EX2.28/Exa2_28.sce
@@ -0,0 +1,14 @@
+//Exa2.28
+clc;
+clear;
+close;
+//given data
+E_AC=7.4;//in miu V per degree C
+E_BC=-34.4;//in miu V per degree C
+//By law of successive contact (or intermediate metals)
+E_AB=E_AC-E_BC;//in miu V/degree C
+E_AB=E_AB*10^-6;// in V/degree C
+// Let Thermo-emf for a temperature difference of 250 degree C = EMF_250
+EMF_250=E_AB*250;// in V
+EMF_250=EMF_250*10^3;//in mV
+disp("Termo-emf for a temperature difference of 250 degree C is "+string(EMF_250)+" mV");