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 CFDSTRUCTDATASOLVERINITIALIZATIONEMANAGER_H
|
|
|
|
|
#define CFDSTRUCTDATASOLVERINITIALIZATIONEMANAGER_H
|
|
|
|
|
|
|
|
|
|
#include <CFDStructDataManagerBase.h>
|
|
|
|
|
#include "CFDStructDataManager_global.h"
|
|
|
|
|
class CUIConfig;
|
|
|
|
|
|
|
|
|
|
class CFDSTRUCTDATAMANAGER_EXPORT CFDStructDataSolverInitializationManager : public CFDStructDataManagerBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit CFDStructDataSolverInitializationManager(QObject *parent = nullptr);
|
|
|
|
|
~CFDStructDataSolverInitializationManager();
|
|
|
|
|
|
|
|
|
|
CUIConfig* getParamUIConfig();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// 生成界面配置
|
|
|
|
|
CUIConfig* genUIConfig();
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// 时间模式:定常0,非定常1
|
|
|
|
|
int m_runtype = 0;
|
|
|
|
|
// 时间模式:定常0,则是迭代步数;时间模式:非定常1,则是内迭代步数
|
|
|
|
|
int m_mcyc = 1000;
|
|
|
|
|
// 步长模式 >=1
|
|
|
|
|
double m_alf0 = 1.0;
|
|
|
|
|
// 时间步长 >0
|
|
|
|
|
double m_realdt = 1.0;
|
|
|
|
|
// 时间步数 >=1
|
|
|
|
|
int m_nstep = 10;
|
|
|
|
|
// 时均统计量数据采样:0 | 1
|
|
|
|
|
int m_timeaverage = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CFDSTRUCTDATASOLVERINITIALIZATIONEMANAGER_H
|