How to use 'SI Psychrometric Chart' File exchange library?
9 views (last 30 days)
Show older comments
Hi everyone, I require to calculate the psychrometric properties of air at various Temperature and humidity (no plotting). I want to use this library 'SI Psychrometric Chart' (https://in.mathworks.com/matlabcentral/fileexchange/49154-si-psychrometric-chart) that a user has provided, but am not able to get the result. I tried checking the code, but I can't understand much. I need an opinion on how to use this library for calculating various psychrometric properties.
Thanks
Leo Daniel
1 Comment
Atit K
on 24 Sep 2023
Here is an example:
%Point#1
Tdb1 = 32;
phi1 = 40;
%Point#2
Tdb2 = 12;
phi2 = 90
%Point#3
h3 = 45e3;
w3 = .0096;
%%
[Tdb1,w1,phi1,h1,Tdp1,v1,Twb1] = Psychrometricsnew('Tdb',Tdb1,'phi',phi1,'P',101.325)
[Tdb2,w2,phi2,h2,Tdp2,v2,Twb2] = Psychrometricsnew('Tdb',Tdb2,'phi',phi2,'P',101.325)
[Tdb3,w3,phi3,h3,Tdp3,v3,Twb3] = Psychrometricsnew('w',w3,'h',h3,'P',101.325)
Accepted Answer
Kiran Felix Robert
on 11 Feb 2021
Hi Leo,
SI Psychrometric Chart is one of the several submissions in MATLAB File Exchange on MATLAB Central which is a forum for our product users to interact, exchange information and knowledge, without MathWorks' involvement.
Feel free to contact the author of this submission – Muhammad Tauha Ali - directly for specific questions about the implementation
More Answers (0)
See Also
Categories
Find more on Data Import and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!