-
Notifications
You must be signed in to change notification settings - Fork 14
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
Level set: composition (II) #26
Merged
Merged
Changes from 4 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b79b3c5
Make LevelSetOKZSolverAdvanceConcentration::global_max_velocity local
peterrum 240da41
Compute global_omega_diameter within LevelSetOKZSolverAdvanceConcentr…
peterrum e5dc601
Create utility function compute_cell_diameters()
peterrum 7496f51
1d projection added
mschreter 5228896
bug fix in compute_cell_diameters
mschreter 44dc62d
compute normal: remove hardcoded indices
mschreter f3cb70a
ComputeNormal: parameter damping_scale_factor added
mschreter e996eb2
1d instance of solution curvature added
mschreter 97ee84b
Add specialization for 1D
peterrum 3438aff
make variable names more verbose
mschreter 4d780d5
Merge branch 'ls_composition_1' of https://github.com/peterrum/adaflo…
mschreter 91fe4a4
make variable names more verbose
mschreter 91abb20
Instantiate LevelSetOKZSolverReinitialization for 1D
peterrum 62cf354
Eliminate normal_operator from LevelSetOKZSolverComputeCurvature
peterrum 6ee1fb5
Eliminate normal_operator from LevelSetOKZSolverReinitialization
peterrum 20e23b2
Make reinitialize not virtual
mschreter fe4f8e0
Fix scoped timer
peterrum File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,17 @@ initialize_projection_matrix( | |
ilu_projection_matrix.initialize(projection_matrix); | ||
} | ||
} | ||
template void | ||
initialize_projection_matrix<1, double, VectorizedArray<double>>( | ||
const MatrixFree<1, double, VectorizedArray<double>> &matrix_free, | ||
Comment on lines
+181
to
+183
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thx! |
||
const AffineConstraints<double> & constraints_normals, | ||
const unsigned int dof_index, | ||
const unsigned int quad_index, | ||
const double & epsilon_used, | ||
const double & epsilon, | ||
const AlignedVector<VectorizedArray<double>> & cell_diameters, | ||
BlockMatrixExtension & projection_matrix, | ||
BlockILUExtension & ilu_projection_matrix); | ||
|
||
template void | ||
initialize_projection_matrix<2, double, VectorizedArray<double>>( | ||
|
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mschreter FYI :)