diff options
Diffstat (limited to '3850/CH33/EX33.2/Ex33_2.sce')
-rw-r--r-- | 3850/CH33/EX33.2/Ex33_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3850/CH33/EX33.2/Ex33_2.sce b/3850/CH33/EX33.2/Ex33_2.sce new file mode 100644 index 000000000..3eecf4185 --- /dev/null +++ b/3850/CH33/EX33.2/Ex33_2.sce @@ -0,0 +1,16 @@ + +//To Calculate the Neutral Temperature
+
+//Example 33.2
+
+clear;
+
+clc;
+
+ThetaI=530;//Inversion temperature in degree Celsius
+
+ThetaC=10;//Temperature of the cold junction in degree Celsius
+
+ThetaN=(ThetaI+ThetaC)/2;//Neutral temperature in degree Celsius
+
+printf("Neutral Temperature = %d degree celsius",ThetaN);
|