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.
|
|
|
|
|
#ifndef TEST_H
|
|
|
|
|
|
#define TEST_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
#include <QVector>
|
|
|
|
|
|
#include "iAlgPvtBase.h"
|
|
|
|
|
|
#include "gasCritical.h"
|
|
|
|
|
|
#include "gasZg.h"
|
|
|
|
|
|
#include "gasMiug.h"
|
|
|
|
|
|
#include "gasCg.h"
|
|
|
|
|
|
#include "gasBg.h"
|
|
|
|
|
|
#include "gasRhog.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "bubblePre.h"
|
|
|
|
|
|
#include "triRs.h"
|
|
|
|
|
|
#include "oilLiveBo.h"
|
|
|
|
|
|
#include "oilLiveCo.h"
|
|
|
|
|
|
#include "oilLiveMiuo.h"
|
|
|
|
|
|
#include "oilLiveRhoo.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "waterBw.h"
|
|
|
|
|
|
#include "waterCw.h"
|
|
|
|
|
|
#include "waterRhow.h"
|
|
|
|
|
|
#include "waterMiuw.h"
|
|
|
|
|
|
/*
|
|
|
|
|
|
*这个程序是测试程序
|
|
|
|
|
|
**/
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
class test;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class test : public QDialog
|
|
|
|
|
|
{
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
//explicit test();
|
|
|
|
|
|
explicit test(QWidget *parent = 0);
|
|
|
|
|
|
~test();
|
|
|
|
|
|
|
|
|
|
|
|
bool testMethodGasCrital();
|
|
|
|
|
|
bool testMethodZg();//Z
|
|
|
|
|
|
bool testMethodMiug();
|
|
|
|
|
|
bool testMethodCg();
|
|
|
|
|
|
bool testMethodBg();
|
|
|
|
|
|
bool testMethodRhog();
|
|
|
|
|
|
|
|
|
|
|
|
bool testMethodPb();
|
|
|
|
|
|
bool testMethodTriRs();
|
|
|
|
|
|
bool testMethodLiveBo();
|
|
|
|
|
|
bool testMethodLiveCo();
|
|
|
|
|
|
bool testMethodLiveMiuo();
|
|
|
|
|
|
bool testMethodLiveRhoo();
|
|
|
|
|
|
|
|
|
|
|
|
bool testMethodBw();
|
|
|
|
|
|
bool testMethodCw();
|
|
|
|
|
|
bool testMethodRhow();
|
|
|
|
|
|
bool testMethodMiuw();
|
|
|
|
|
|
|
|
|
|
|
|
bool result(VecDouble vecIns,VecDouble vecOuts);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
Ui::test *ui;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // TEST_H
|