bwrgasmodel.cpp
来自「气体热力性质计算程序」· C++ 代码 · 共 36 行
CPP
36 行
#include "..\\include\\BWRGasModel.h"
namespace XZGas
{
BWRGasModel::BWRGasModel(const GasData &gas):
GasModel(gas)
{
}
BWRGasModel::~BWRGasModel()
{
}
inline double BWRGasModel::dpdvT(double TT,double vv)
{
}
inline double BWRGasModel::dpdTv(double TT,double vv)
{
}
inline double BWRGasModel::Cp(double TT,double pp)
{
return 0;
}
inline double BWRGasModel::Cv(double TT,double vv)
{
return 0;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?