FEM: Better defaults for mesh export (#23553)
* FEM: Update mesh_gmsh.py * FEM: Update DlgSettingsFemExportAbaqus.ui * FEM: Update DlgSettingsFemExportAbaqus.ui * FEM: Update DlgSettingsFemExportAbaqusImp.cpp * FEM: Update AppFemPy.cpp
This commit is contained in:
@@ -232,8 +232,8 @@ private:
|
||||
else if (file.hasExtension("inp")) {
|
||||
// get Abaqus inp prefs
|
||||
ParameterGrp::handle g = hGrp->GetGroup("Abaqus");
|
||||
int elemParam = g->GetInt("AbaqusElementChoice", 1);
|
||||
bool groupParam = g->GetBool("AbaqusWriteGroups", false);
|
||||
int elemParam = g->GetInt("AbaqusElementChoice", 2);
|
||||
bool groupParam = g->GetBool("AbaqusWriteGroups", true);
|
||||
// write ABAQUS Output
|
||||
femMesh.writeABAQUS(file.filePath(), elemParam, groupParam);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user