Skip to content

Commit 0a363f8

Browse files
[FXC-2899] Removing deleted surface check on GeometryRefinement (#1432)
1 parent f346636 commit 0a363f8

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

flow360/component/simulation/meshing_param/face_params.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,7 @@ class GeometryRefinement(Flow360BaseModel):
7777
+ "to geometry_accuracy should be resolved accurately during the surface meshing process.",
7878
)
7979

80-
@pd.field_validator("entities", mode="after")
81-
@classmethod
82-
def ensure_surface_existence(cls, value):
83-
"""Ensure all boundaries will be present after mesher"""
84-
return check_deleted_surface_in_entity_list(value)
80+
# Note: No checking on deleted surfaces since geometry accuracy on deleted surface does impact the volume mesh.
8581

8682
@pd.model_validator(mode="after")
8783
def ensure_geometry_ai(self):
@@ -96,7 +92,7 @@ def ensure_geometry_ai(self):
9692

9793
class PassiveSpacing(Flow360BaseModel):
9894
"""
99-
Passively control the mesh spacing either through adjecent `Surface`'s meshing
95+
Passively control the mesh spacing either through adjacent `Surface`'s meshing
10096
setting or doing nothing to change existing surface mesh at all.
10197
10298
Example

0 commit comments

Comments
 (0)