-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v1.3.3 #31
Closed
Release v1.3.3 #31
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…nFOAM's checkMesh routine
The files `input/02_square_in_channel.para` and `input/06_airfoil_from_csv.para` generated invalid meshes and have thus be adjusted for it.
The call to `vertex.intersects_mesh_edges()`, which checked if a vertex is placed too close to its surrounding edges has been removed. This check led to wrong element sizes when choosing quad layers with very small heights (compared to the global element size). It was also found that this check is not required to pass the current meshing tests and thus has been removed.
…f headers in algorithm part and testing part
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Release v1.3.3
Fixed
Log.h
which resulted from the additionalstatic
declaration onLOG_PROPERTIES
in commit5c2cebc
.Due to this declaration,
LOG_PROPERTIES
was no longer treated as singleton and thus the logging properties were no longer used byLOG
.The singleton approach for
LogProperties
andLOG_PROPERTIES
is now implemented in a different way.Changed
FrontInitData
into separate fileFrontInitData
structure for handling fixed interior edgesEdge
attributemarker
tocolor
TriangulationStrategy
toTriangulation
QuadLayerStrategy
toQuadLayering
QuadRefinementStrategy
toQuadRefinement
Tri2QuadStrategy
toTri2QuadModification
LaplaceSmoothingStrategy
toLaplaceSmoothing
TorsionSmoothingStrategy
toTorsionSmoothing
MixedSmoothingStrategy
toMixedSmoothing
Added
EdgeProperty
- similarly toVertexProperty
, but for edgesinput/09_fixed_edges.para