Files
wg_cpso/CaeMesh/Meshing/Gmsh/Enums/GmshOptimizeFirstOrderSolidEnum.cs

34 lines
763 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
using DynamicTypeDescriptor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeMesh.Meshing
{
/* Optimization of a linear mesh
Netgen
HighOrder
HighOrderElastic
HighOrderFastCurving
Laplace2D
Relocate2D
Relocate3D
QuadQuasiStructured
UntangleMeshGeometry
*/
[Serializable]
public enum GmshOptimizeFirstOrderSolidEnum
{
[StandardValue("None", DisplayName = "None")]
None,
[StandardValue("Gmsh", DisplayName = "Gmsh")]
Gmsh,
[StandardValue("Netgen", DisplayName = "Netgen")]
Netgen,
[StandardValue("Relocate3D", DisplayName = "Relocate 3D")]
Relocate3D,
}
}