Engineer Joe
Well-known Member
- Joined
- Jun 10, 2005
- Messages
- 549
This isn't actually a question. I worked for a while to come up with a feasible formula working between 0 and 100°F to provide an enthalpy value based on dry bulb temperature and relative humidity. It uses a polynomial model to match Psat to temperature in order to avoid referencing a table (I wanted it to be able to work by a simple math equation...no steps.) You can see the polynomial in it's own bracket with several terms raised to the 4,3,2,1st order. That's the approximation model. It's >99% accurate between 0 and 100°F. I'm posting here so that if someone googles the key terms, maybe this will pop up for them. I've googled this several times before with no results that were any good. So, future HVAC/excel users, here ya go!
h = 0.24*OAT+(0.6219)*(0.01*(0.000000007401234*OAT^4 - 0.000000493526794*OAT^3 + 0.000071281097208*OAT^2 - 0.000489806163078*OAT + 0.039762055806989)*RH)/(14.7-(0.01*(0.000000007401234*OAT^4 - 0.000000493526794*OAT^3 + 0.000071281097208*OAT^2 - 0.000489806163078*OAT + 0.039762055806989)*RH))*(1061.2+0.444*OAT)
Entalpy: h is in btu/lb(dry air)
OAT: Temperature in °F
RH: Relative Humidity as a percentage. (e.g. 40% RH would just be 40, not 0.40)
Obviously, plugging this into excel, you would replace references to OAT and RH with cell references.
Have a nice day! And yes, I'm aware I didn't need to use 15 sig figs. i went into the trend in the chart and just started clicking the decimals button until i got tired and then copy/pasted.
h = 0.24*OAT+(0.6219)*(0.01*(0.000000007401234*OAT^4 - 0.000000493526794*OAT^3 + 0.000071281097208*OAT^2 - 0.000489806163078*OAT + 0.039762055806989)*RH)/(14.7-(0.01*(0.000000007401234*OAT^4 - 0.000000493526794*OAT^3 + 0.000071281097208*OAT^2 - 0.000489806163078*OAT + 0.039762055806989)*RH))*(1061.2+0.444*OAT)
Entalpy: h is in btu/lb(dry air)
OAT: Temperature in °F
RH: Relative Humidity as a percentage. (e.g. 40% RH would just be 40, not 0.40)
Obviously, plugging this into excel, you would replace references to OAT and RH with cell references.
Have a nice day! And yes, I'm aware I didn't need to use 15 sig figs. i went into the trend in the chart and just started clicking the decimals button until i got tired and then copy/pasted.