LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Using Psychrometric Charts in Labview to calculate Humidity?

Solved!
Go to solution
I'm constructing a chilled mirror hygrometer for a college project and controlling it through labview. I will have the dew point temperature and dry dry bulb temperature I need to calculate the humidity through an algorithm or a look up table for psychrometric charts. can anyone help please.
0 Kudos
Message 1 of 10
(7,704 Views)
Solution
Accepted by altenbach
Equations necessary to calculate relative humidity from pressure and dry and wet bulb temperatures can be found here:
http://www.srh.noaa.gov/elp/wxcalc/formulas/rhTdFromWetBulb.html
With the two temperatures and the pressure coming in as variables, I would break the calculation down just as they have on the webpage linked, by first calculating the saturated and wet bulb vapor pressures ==> then calculating the actual vapor pressure ==> then the relative humidity. All the operators you need for these calculations should be under the math operators function palette. You could call out all the individual operations including the exponentials, or just use a few formula nodes.
Of course, just dump everything into a while loop (with a time delay), to make the system constantly monitor and update the humidity.
Message 2 of 10
(7,688 Views)
Thanks for that problem solved
0 Kudos
Message 3 of 10
(7,675 Views)
Here is a VI that calculates RH using wet & dry bulb temps. I don't remember where I got it. Maybe it'll help.

This reply didn't post the first time, so I'm trying it again.
0 Kudos
Message 4 of 10
(7,642 Views)

Please put the sub VI. Thanks.

0 Kudos
Message 5 of 10
(6,476 Views)

Calculating wet bulb from dew point and ambient temperature is hard.  It requires iterative algorithms.  It is easy to calculate RH, absolute humity and enthalpy.

 

I have attached a paper I find usefull, "Numerical calculations of psychrometric properties on a calculator" by Singh, et al.  

 

If I find an algoritm for wet bulb  or figure out how to  implement Singh's I will upload my VI.  

0 Kudos
Message 6 of 10
(6,255 Views)

For calculations with relative humidity the trial version on www.psychrometricchart.net is also very usefull.

0 Kudos
Message 7 of 10
(5,997 Views)

Can anyone please help with how we could use lookup tables for calculating dew point temperature or other parameters? 

Basically, I want to know how we could use lookup tables.

0 Kudos
Message 8 of 10
(5,273 Views)

@mohitsoni95 wrote:

Can anyone please help with how we could use lookup tables for calculating dew point temperature or other parameters? 

Basically, I want to know how we could use lookup tables.


If you have a lookup able, you don't need to calculate anything, you just need to look up values. Do you also want to interpolate?

 

What "other parameters" are you interested? You need to be more specific, we cannot read your mind!

 

What have you tried? Do you have the relevant tables?

0 Kudos
Message 9 of 10
(5,238 Views)

A few years back I made an excel plugin to do Psych calcs.  Someone after me translated it into a python script which if works you might be able to integrate into labview, or you can use the excel plugin to generate look up table perhaps.  
http://wcec.ucdavis.edu/resources/software-resource-applications/

The chapter of the ASHREA book is posted as a PDF in the zip file.  

If you just need to do one implementation you may be able just to use the equations from the book.   

0 Kudos
Message 10 of 10
(5,225 Views)