You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/Include/mTool/mToolPvt/iWxPvtSubPhaseOil.h

62 lines
1.5 KiB
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "iWxPvtSubPhase.h"
namespace Ui {
class iWxPvtSubPhaseOil;
}
// 油
class M_TOOL_PVT_EXPORT iWxPvtSubPhaseOil : public iWxPvtSubPhase
{
Q_OBJECT
public:
explicit iWxPvtSubPhaseOil(QString sFluidType, \
QString sPhaseType, \
QWidget *parent = 0);
~iWxPvtSubPhaseOil();
// 初始化
virtual void initUI();
// 文件标识
virtual QString getFilePvtTag();
protected:
// 默认值
virtual void initDefault();
virtual void dealwithPvtItemAlgos_O(QString sPara);//油
virtual void dealWithMethodItemExt(QGridLayout* pLayout,
QString sPara,
int r,
int& c);
// 返回数据
virtual bool getParaValue(QString sPara,
double &dValue,
QString sUnitDest = "");
virtual void onSerialize(ZxSerializer* ser);
virtual void onDeserialize(ZxSerializer* ser);
private slots:
void slotVasBegSetting();
private:
Ui::iWxPvtSubPhaseOil *ui;
double m_dPsep; //Psep,分离器压力MPa0.79111
double m_dTsep; //tsep,分离器温度20260602 统一调整为摄氏度℃15.5556 不再采用 F60F
// 20260421 扩展一项,即:
// 针对油单相、油水两相采用OilExt对应死油
// 针对油气两相采用Oil对应饱和油
bool m_bDeadMode; //是否死油模式
};