summaryrefslogtreecommitdiff
path: root/2975/CH23/EX23.5w/Ex23_5w.sce
diff options
context:
space:
mode:
Diffstat (limited to '2975/CH23/EX23.5w/Ex23_5w.sce')
-rw-r--r--2975/CH23/EX23.5w/Ex23_5w.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2975/CH23/EX23.5w/Ex23_5w.sce b/2975/CH23/EX23.5w/Ex23_5w.sce
new file mode 100644
index 000000000..3424ffbaa
--- /dev/null
+++ b/2975/CH23/EX23.5w/Ex23_5w.sce
@@ -0,0 +1,16 @@
+//developed in windows 8 operating system 64bit
+//platform Scilab 5.4.1
+//example 23_5w
+
+clc;clear;
+//Given Data
+
+rt=6.5; //Resistance of platinum thermometer at boiling point(unit :ohm)
+r0=2.5; //Resistance of platinum thermometer at ice point(unit :ohm)
+r100=3.5; //Resistance of platinum thermometer at steam point(unit :ohm)
+
+//Calculation
+
+t=(rt-r0)*100/(r100-r0); //Calculation of temperature of sulphur on new scale (Unit: Degree)
+
+disp(t,"Boiling temperature of sulphur on this scale is (Unit: Degree)");