Skip to content

Commit

Permalink
errors correction
Browse files Browse the repository at this point in the history
  • Loading branch information
GBenedett committed Oct 23, 2024
1 parent faeef8e commit 96c9d47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ceasiompy/CPACS2GMSH/func/RANS_mesh_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def pentagrow_3d_mesh(
MaxLayerThickness = max_layer_thickness / 10
FarfieldRadius = fuselage_maxlen * farfield_factor * 100
OutputFormat = "su2"
HolePosition = model_center
HolePosition = " ".join(map(str, model_center))
TetgenOptions = "-pq1.3VY"
TetGrowthFactor = growth_factor
HeightIterations = 8
Expand Down
2 changes: 1 addition & 1 deletion ceasiompy/utils/commonxpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
GMSH_MAX_THICKNESS_LAYER_XPATH = GMSH_XPATH + "/max_thickness_layer"
GMSH_GROWTH_FACTOR_XPATH = GMSH_XPATH + "/growth_factor"
GMSH_GROWTH_RATIO_XPATH = GMSH_XPATH + "/growth_ratio"
MIN_GMSH_SURFACE_MESH_SIZE_XPATH = GMSH_XPATH + "max_mesh_factor"
MIN_GMSH_SURFACE_MESH_SIZE_XPATH = GMSH_XPATH + "min_mesh_factor"
MAX_GMSH_SURFACE_MESH_SIZE_XPATH = GMSH_XPATH + "max_mesh_factor"
GMSH_FEATURE_ANGLE_XPATH = GMSH_XPATH + "/feature_angle"

Expand Down

0 comments on commit 96c9d47

Please sign in to comment.