|
|
@ -1,4 +1,4 @@
|
|
|
|
#include "CFDStructDataSolverKvislManager.h"
|
|
|
|
#include "CFDStructDataSolverKvislManager.h"
|
|
|
|
#include "CUIProperty/CUIConfig.h"
|
|
|
|
#include "CUIProperty/CUIConfig.h"
|
|
|
|
#include "CFDStructMain/CFDStructDefine.h"
|
|
|
|
#include "CFDStructMain/CFDStructDefine.h"
|
|
|
|
#include "CFDStructSigsCenter.h"
|
|
|
|
#include "CFDStructSigsCenter.h"
|
|
|
@ -7,7 +7,7 @@ CFDStructDataSolverKvislManager::CFDStructDataSolverKvislManager(QObject *parent
|
|
|
|
{
|
|
|
|
{
|
|
|
|
m_uiConfig = nullptr;
|
|
|
|
m_uiConfig = nullptr;
|
|
|
|
connect(m_cuiSigsCenter, &CUISigsCenter::sig_cuiPropertyChanged, this, [ = ](int semaphore) {
|
|
|
|
connect(m_cuiSigsCenter, &CUISigsCenter::sig_cuiPropertyChanged, this, [ = ](int semaphore) {
|
|
|
|
if (semaphore == (int)SolutionAnalysisModuleProperty::KVISL) {
|
|
|
|
if (semaphore == (int)SolutionAnalysisModuleProperty::Viscosity_Model) {
|
|
|
|
emit CFDStructSigsCenter::getInstance()->sig_solverKvislDataChanged();
|
|
|
|
emit CFDStructSigsCenter::getInstance()->sig_solverKvislDataChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
@ -19,455 +19,474 @@ CFDStructDataSolverKvislManager::~CFDStructDataSolverKvislManager()
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::getParamUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::getParamUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if(m_Model == 0){
|
|
|
|
if(m_Model == 0) {
|
|
|
|
return genInviscidUIConfig();
|
|
|
|
return genInviscidUIConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m_Model == 1){
|
|
|
|
if(m_Model == 1) {
|
|
|
|
return genLaminarUIConfig();
|
|
|
|
return genLaminarUIConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m_Model == 2){
|
|
|
|
if(m_Model == 2) {
|
|
|
|
return genRANSSAUIConfig();
|
|
|
|
return genRANSSAUIConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m_Model == 3){
|
|
|
|
if(m_Model == 3) {
|
|
|
|
return genDESSAUIConfig();
|
|
|
|
return genDESSAUIConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(m_Model == 4){
|
|
|
|
if(m_Model == 4) {
|
|
|
|
return genCLESUIConfig();
|
|
|
|
return genCLESUIConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return this->genInviscidUIConfig();
|
|
|
|
return this->genInviscidUIConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genInviscidUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genInviscidUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
{new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Model")},
|
|
|
|
{"name", tr("Model")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{"name", tr("CLES")}})})});
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
});
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genLaminarUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genLaminarUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
{new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Model")},
|
|
|
|
{"name", tr("Model")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{"name", tr("CLES")}})})});
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
});
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genRANSSAUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genRANSSAUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{
|
|
|
|
{"name", tr("CLES")}})}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:κ-ε(两方程)
|
|
|
|
},
|
|
|
|
{"name", tr("κ-ε")}})
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
}),
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"type", "RadioComponent"}, // 组:S-A类型
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"name", tr("S-A Type")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:κ-ε(两方程)
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("κ-ε")}})}),
|
|
|
|
},
|
|
|
|
new CUIConfig({
|
|
|
|
{
|
|
|
|
{"type", "RadioComponent"}, // 组:S-A类型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
{"name", tr("S-A Type")},
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Edwards
|
|
|
|
},
|
|
|
|
{"name", tr("Edwards")}})
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
}),
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
});
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Edwards
|
|
|
|
|
|
|
|
{"name", tr("Edwards")}})}),
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genRANSUIMentersConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genRANSUIMentersConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{
|
|
|
|
{"name", tr("CLES")}})}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:κ-ε(两方程)
|
|
|
|
},
|
|
|
|
{"name", tr("κ-ε")}})
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
}),
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"type", "RadioComponent"}, // 组:κ-ω类型
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"name", tr("κ-ω Type")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:κ-ε(两方程)
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("κ-ε")}})}),
|
|
|
|
},
|
|
|
|
new CUIConfig({
|
|
|
|
{
|
|
|
|
{"type", "RadioComponent"}, // 组:κ-ω类型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
{"name", tr("κ-ω Type")},
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genRANSKEUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genRANSKEUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{
|
|
|
|
{"name", tr("CLES")}})}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:κ-ε(两方程)
|
|
|
|
},
|
|
|
|
{"name", tr("κ-ε")}})
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
}),
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"type", "RadioComponent"}, // 组:κ-ε类型
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"name", tr("κ-ε Type")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:κ-ε(两方程)
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("κ-ε")}})}),
|
|
|
|
},
|
|
|
|
new CUIConfig({
|
|
|
|
{
|
|
|
|
{"type", "RadioComponent"}, // 组:κ-ε类型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
{"name", tr("κ-ε Type")},
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genDESSAUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genDESSAUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"type", "RadioComponent"}, // 组:DES
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"name", tr("DES Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{
|
|
|
|
{"name", tr("CLES")}})}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DES
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{"type", "RadioComponent"}, // 组:DES
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DDES(两方程)
|
|
|
|
{"name", tr("DES Model")},
|
|
|
|
{"name", tr("DDES")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:IDDES(两方程)
|
|
|
|
},
|
|
|
|
{"name", tr("IDDES")}}),
|
|
|
|
{
|
|
|
|
}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DES
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DDES(两方程)
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("DDES")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:IDDES(两方程)
|
|
|
|
},
|
|
|
|
{"name", tr("IDDES")}}),
|
|
|
|
{
|
|
|
|
}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:S-A类型
|
|
|
|
{
|
|
|
|
{"name", tr("S-A Type")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
{
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:S-A类型
|
|
|
|
});
|
|
|
|
{"name", tr("S-A Type")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
|
|
|
|
{"name", tr("standard")}}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genDESMentersUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genDESMentersUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
},
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{new CUIConfig({{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("Inviscid")}}),
|
|
|
|
{"name", tr("CLES")}})
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
}),
|
|
|
|
{"name", tr("Laminar")}}),
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:DES
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"name", tr("DES Model")},
|
|
|
|
{"name", tr("RANS")}}),
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DES
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{"name", tr("CLES")}})}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DDES(两方程)
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:DES
|
|
|
|
{"name", tr("DDES")}}),
|
|
|
|
{"name", tr("DES Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:IDDES(两方程)
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
{"name", tr("IDDES")}}),
|
|
|
|
{
|
|
|
|
}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DES
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"name", tr("DES")}}),
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:DDES(两方程)
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
{"name", tr("DDES")}}),
|
|
|
|
{
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:IDDES(两方程)
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
{"name", tr("IDDES")}}),
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
}),
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
}),
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:κ-ω类型
|
|
|
|
{
|
|
|
|
{"name", tr("κ-ω Type")},
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
{"name", tr("S-A")}}),
|
|
|
|
{
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:SST
|
|
|
|
{"name", tr("Menters's κ-ω")}}),
|
|
|
|
{"name", tr("SST")}}),
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
new CUIConfig({{"type", "RadioComponent"}, // 组:κ-ω类型
|
|
|
|
});
|
|
|
|
{"name", tr("κ-ω Type")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"}},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({{"type", "RadioButton"}, // 按钮:SST
|
|
|
|
|
|
|
|
{"name", tr("SST")}}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genCLESUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genCLESUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"name", tr("Model")},
|
|
|
|
{"name", tr("Inviscid")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
{"name", tr("Laminar")},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
{new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"name", tr("Inviscid")},
|
|
|
|
{"name", tr("RANS")},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"name", tr("Laminar")},
|
|
|
|
{"name", tr("DES")},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("RANS")},
|
|
|
|
{"name", tr("CLES")},
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
new CUIConfig({
|
|
|
|
}),
|
|
|
|
{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
new CUIConfig({
|
|
|
|
{"name", tr("DES")},
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
}),
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
new CUIConfig({
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
},
|
|
|
|
{"name", tr("CLES")},
|
|
|
|
{
|
|
|
|
})}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("S-A")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
|
|
|
|
{"name", tr("S-A")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
|
|
|
|
{"name", tr("Menters's κ-ω")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:S-A类型
|
|
|
|
{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
{"name", tr("S-A Type")},
|
|
|
|
{"name", tr("Menters's κ-ω")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
{new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
{"type", "RadioComponent"}, // 组:S-A类型
|
|
|
|
{"name", tr("standard")},
|
|
|
|
{"name", tr("S-A Type")},
|
|
|
|
}),
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
new CUIConfig({
|
|
|
|
},
|
|
|
|
{"type", "RadioButton"}, // 按钮:Edwards
|
|
|
|
{
|
|
|
|
{"name", tr("Edwards")},
|
|
|
|
new CUIConfig({
|
|
|
|
})}),
|
|
|
|
{"type", "RadioButton"}, // 按钮:standard
|
|
|
|
});
|
|
|
|
{"name", tr("standard")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:Edwards
|
|
|
|
|
|
|
|
{"name", tr("Edwards")},
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
});
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genCLESMentersUIConfig()
|
|
|
|
CUIConfig *CFDStructDataSolverKvislManager::genCLESMentersUIConfig()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
return new CUIConfig(
|
|
|
|
return new CUIConfig(
|
|
|
|
{{"type", "Widget"}},
|
|
|
|
{{"type", "Widget"}}, {
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
|
|
|
|
{"name", tr("Model")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::Viscosity_Model},
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:模型
|
|
|
|
{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"name", tr("Model")},
|
|
|
|
{"name", tr("Inviscid")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
{"value_type", CUI_DATA_TYPE::CUI_DATA_TYPE_INT},
|
|
|
|
new CUIConfig({
|
|
|
|
{"value_origin", QVA_GLOBAL(&m_Model)},
|
|
|
|
{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
{"semaphore", (int)SolutionAnalysisModuleProperty::KVISL},
|
|
|
|
{"name", tr("Laminar")},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
{new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioButton"}, // 按钮:无粘
|
|
|
|
{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
{"name", tr("Inviscid")},
|
|
|
|
{"name", tr("RANS")},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:层流
|
|
|
|
|
|
|
|
{"name", tr("Laminar")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:雷诺平均
|
|
|
|
|
|
|
|
{"name", tr("RANS")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
|
|
|
|
{"name", tr("DES")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
|
|
|
|
{"name", tr("CLES")},
|
|
|
|
|
|
|
|
})}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"type", "RadioButton"}, // 按钮:分离涡模拟
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("DES")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
|
|
|
|
{"name", tr("S-A")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
|
|
|
|
{"name", tr("Menters's κ-ω")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:κ-ω类型
|
|
|
|
{"type", "RadioButton"}, // 按钮:约束大涡模型
|
|
|
|
{"name", tr("κ-ω Type")},
|
|
|
|
{"name", tr("CLES")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
new CUIConfig({
|
|
|
|
new CUIConfig({
|
|
|
|
{"type", "RadioComponent"}, // 组:RANS模型
|
|
|
|
{"type", "RadioButton"}, // 按钮:SST
|
|
|
|
{"name", tr("RANS Model")},
|
|
|
|
{"name", tr("SST")},
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
});
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:S-A(一方程)
|
|
|
|
|
|
|
|
{"name", tr("S-A")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:Menters's κ-ω(两方程)
|
|
|
|
|
|
|
|
{"name", tr("Menters's κ-ω")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioComponent"}, // 组:κ-ω类型
|
|
|
|
|
|
|
|
{"name", tr("κ-ω Type")},
|
|
|
|
|
|
|
|
{"widget", "GroupBox"},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
new CUIConfig({
|
|
|
|
|
|
|
|
{"type", "RadioButton"}, // 按钮:SST
|
|
|
|
|
|
|
|
{"name", tr("SST")},
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
}),
|
|
|
|
|
|
|
|
});
|
|
|
|
return nullptr;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|