diff options
Diffstat (limited to '3850/CH33/EX33.3/Ex33_3.sce')
-rw-r--r-- | 3850/CH33/EX33.3/Ex33_3.sce | 24 |
1 files changed, 24 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);
|