/** * 初始化 */ #ifndef CFDSTRUCTDATASOLVERINITIALIZATIONEMANAGER_H #define CFDSTRUCTDATASOLVERINITIALIZATIONEMANAGER_H #include #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: // 参考值取自 int m_ReferenceValuesFrom; // Reference Values From // 密度 double m_Density; // Density // μ速度 double m_MuVelocity; // Mu Velocity // v速度 double m_VVelocity; // V Velocity // w速度 double m_WVelocity; // W Velocity // 压强 double m_Pressure; // Pressure // 湍流粘性比 double m_TurbulentViscosityRatio; // Turbulent Viscosity Ratio // 湍流强度 double m_TurbulentIntensity; // Turbulent Intensity }; #endif // CFDSTRUCTDATASOLVERINITIALIZATIONEMANAGER_H