-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Volume curving using a radial basis function interpolation of the displacement of the curved boundary sides to the volume points. * Add remaining RBF types, scale global support RBF types with SupportRadius (set to 1 to recover original formulation) * Fixed wrong indizes in RBF coefficient calculations. Some RBFs need special threatment to avoid NANs since calculations of log(0) can occur. * Also use the corner nodes of all elements as base points for the RBF interpolation. This way, e.g. the cell height in a BL mesh will not be affected. * Move RBF curving after zCorrection * RBF curving is only done inside of a user-defined box * Update and declutterng of comments. * Also only evaluate the interpolation inside the box * Use LAPACK routines to directly solve the linear System, not to invert the Matrix and apply using MATMUL. * Z correction for RBF curving to undo any 3D effects introduced for extruded meshes * Fix bug in RBF curving, different conditions for the bounding box where applied when counting the RBF control points and when storing them, leading to a singular matrix * Allow for multiple RBF boxes * Only curve all or no nodes of an element * Example for RBF curving * Correctly count RBF control if the first is outside the bounding box but others inside * Only add complete elements, remove print statement * Update .gitlab-ci.yml * Clean standard values for RBF bounding box limits xlim and ylim and cleaner fomatting of parameter file for RBF tutorial * Move RBF tutorial to avoid clash with numbering of tutorials added prior. * Address comments of code review. Remove distance function between points by the NORM2 intrinsic, clean up the if-conditions in the RBF implementation and replace the bary-center with the bounding box of an elemenet to check whether it resides within the current RBF domain * Reduced image file sizes (changed total file size from 25M to 3.4M). --------- Co-authored-by: iagkrais <krais@iag.uni-stuttgart.de> Co-authored-by: Patrick Kopper <patrick.kopper@ila.uni-stuttgart.de> Co-authored-by: Marcel Blind <marcel.blind@iag.uni-stuttgart.de> Co-authored-by: Stephen Copplestone <stephen@copplestone.de>
- Loading branch information
1 parent
dc3cc4a
commit f230958
Showing
23 changed files
with
14,111 additions
and
24 deletions.
There are no files selected for viewing
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
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
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
Oops, something went wrong.