diff options
Diffstat (limited to '3850/CH33/EX33.3')
-rw-r--r-- | 3850/CH33/EX33.3/Ex33_3.sce | 24 | ||||
-rw-r--r-- | 3850/CH33/EX33.3/Ex33_3.txt | 3 |
2 files changed, 27 insertions, 0 deletions
diff --git a/3850/CH33/EX33.3/Ex33_3.sce b/3850/CH33/EX33.3/Ex33_3.sce new file mode 100644 index 000000000..d8721d896 --- /dev/null +++ b/3850/CH33/EX33.3/Ex33_3.sce @@ -0,0 +1,24 @@ + +//To Find Thermal Coefficients a and b
+
+//Example 33.3
+
+clear;
+
+clc;
+
+acupb=2.76*10^-6;//Coefficient(a) for Copper-Lead Thermocouple
+
+afepb=16.6*10^-6;//Coefficient(a) for Iron-Lead Thermocouple
+
+acufe=acupb-afepb;//Coefficient(a) for Copper-Iron Thermocouple
+
+bcupb=0.012*10^-6;//Coefficient(b) for Copper-Lead Thermocouple
+
+bfepb=-0.030*10^-6;//Coefficient(b) for Iron-Lead Thermocouple
+
+bcufe=bcupb-bfepb;//Coefficient(b) for Copper-Iron Thermocouple
+
+printf("Thermal Coefficient (a) for Copper-Iron Thermocouple = %f uV/deg C",acufe*10^6);
+
+printf("\nThermal Coefficient (b) for Copper-Iron Thermocouple =%f uV/deg C^2",bcufe*10^6);
diff --git a/3850/CH33/EX33.3/Ex33_3.txt b/3850/CH33/EX33.3/Ex33_3.txt new file mode 100644 index 000000000..180004334 --- /dev/null +++ b/3850/CH33/EX33.3/Ex33_3.txt @@ -0,0 +1,3 @@ + + Thermal Coefficient (a) for Copper-Iron Thermocouple = -13.840000 uV/deg C
+Thermal Coefficient (b) for Copper-Iron Thermocouple =0.042000 uV/deg C^2
\ No newline at end of file |