当前位置:  软件>C/C++软件

freesteam

    来源:    发布时间:2014-12-26

    本文导语:  Freesteam是一个库,让您使用业界标准IAPWS - IF97计算水和水蒸汽性质蒸汽表。这是C + +类库,可到您的代码中。插件允许 freesteam能与电子表格和其他应用的集成正在开发中。所包含的单元测试确保与出版属性值的情况。 IAPWS - 95...

Freesteam是一个库,让您使用业界标准IAPWS - IF97计算水和水蒸汽性质蒸汽表。这是C + +类库,可到您的代码中。插件允许 freesteam能与电子表格和其他应用的集成正在开发中。所包含的单元测试确保与出版属性值的情况。 IAPWS - 95(科学使用)的相关性也包括在内,并作为此验证的一部分使用。

示例代码:

#include 
#include
#include
#include

int main(void){

fprintf(stderr,"nThis example demonstrates use of a few of the basic"
" capabilities of freesteam. It calculates the rise in temperature"
" seen in isentropic compression of a sample of steam initially at"
" 1 bar, 400 K, to a final pressure of 10 bar. It also calculates"
" the saturation temperature for steam at that final pressure.nn"
);

double T = 400.; /* in Kelvin! */
double p = 1e5; /* = 1 bar */

fprintf(stderr,"Initial temperature = %f K, pressure = %f barn", T, p/1e5);

/* set a steam state of 1 bar, 400 K */
SteamState S = freesteam_set_pT(1e5, 400);

double s = freesteam_s(S);
fprintf(stderr,"Entropy at initial state is %f kJ/kgKn",s/1e3);

/* calculate a steam state with entropy from above and 10 bar pressure */
SteamState S2 = freesteam_set_ps(10e5, s);

double T2 = freesteam_T(S2);
double p2 = freesteam_p(S2);

/* output the new temperature */
fprintf(stderr,"New temperature is %f K at %f barn", T2, p2/1e5);

fprintf(stderr,"Check: final entropy is %f kJ/kgKn", freesteam_s(S2)/1e3);

/* saturation temperature at final pressure */
double Tsat = freesteam_region4_Tsat_p(p2);
fprintf(stderr,"Saturation temperature at %f bar is %f K.nn",p2/1e5, Tsat);

return 0;
}

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3