ideal-gas specific heats of various common gases function of temperature
4 ビュー (過去 30 日間)
古いコメントを表示
I know that the static pressure specific heat of air, an ideal gas, is 1.005, but in the one I made, it comes out to be 1.0002. What went wrong?
clc; clear all; close all;
M = 28.96;
T = 273.15;
a=28.11; b=0.1967E-2; c=0.4802E-5; d=-1.966E-9;
dcp=(a+(b.*T)+(c.*(T.^2))+(d.*(T.^3)));
cp = dcp./M;
disp(cp);
4 件のコメント
Dyuman Joshi
2024 年 4 月 3 日
編集済み: Dyuman Joshi
2024 年 4 月 3 日
Unfortunately, NIST has not published any data regarding Shomate polynomials of Air (If I had to guess why - I would say it is probably because air is a mixture of different elements and compounds, thus it woud be difficult to obtain data for it).
I could only find the values for N2, O2, H2, H2O and CH4.
採用された回答
VBBV
2024 年 4 月 2 日
編集済み: VBBV
2024 年 4 月 2 日
M = 28.9; % assune
T = 273.15;
a=28.11; b=0.1967E-2; c=0.4802E-5; d=-1.966E-9;
dcp=(a+(b.*T)+(c.*(T.^2))-(d.*(T.^3)));
%changge in sign here
cp = dcp./M;
disp(cp);
2 件のコメント
Dyuman Joshi
2024 年 4 月 21 日
Although @Angelo Yeo has accepted this answer, I do not think this is a right approach to solving this problem.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multirate Signal Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!