blob: 3eecf41852ed1c0208ca384d9e4f235cd5b85690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
|