Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_numerics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_numerics
Commits
f8a03268
Commit
f8a03268
authored
3 years ago
by
jstark
Browse files
Options
Downloads
Patches
Plain Diff
Changed order of gradient for the narrow band and default value of get_upwind_gradient to 1.
parent
1f28141d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/FiniteDifference/Upwind_gradient.hpp
+1
-1
1 addition, 1 deletion
src/FiniteDifference/Upwind_gradient.hpp
src/level_set/redistancing_Sussman/NarrowBand.hpp
+1
-1
1 addition, 1 deletion
src/level_set/redistancing_Sussman/NarrowBand.hpp
with
2 additions
and
2 deletions
src/FiniteDifference/Upwind_gradient.hpp
+
1
−
1
View file @
f8a03268
...
...
@@ -210,7 +210,7 @@ static bool ghost_width_is_sufficient(gridtype & grid, size_t required_width)
* @param grid Grid, on which the gradient should be computed.
*/
template
<
size_t
Field_in
,
size_t
Sign
,
size_t
Gradient_out
,
typename
gridtype
>
void
get_upwind_gradient
(
gridtype
&
grid
,
const
size_t
order
=
5
,
const
bool
one_sided_BC
=
true
)
void
get_upwind_gradient
(
gridtype
&
grid
,
const
size_t
order
=
1
,
const
bool
one_sided_BC
=
true
)
{
grid
.
template
ghost_get
<
Field_in
>();
grid
.
template
ghost_get
<
Sign
>();
...
...
This diff is collapsed.
Click to expand it.
src/level_set/redistancing_Sussman/NarrowBand.hpp
+
1
−
1
View file @
f8a03268
...
...
@@ -340,7 +340,7 @@ private:
copy_gridTogrid
<
Phi_SDF
,
Phi_SDF_temp
>
(
grid_in
,
g_temp
);
// Copy Phi_SDF from the input grid to the temorary grid
init_sign_prop
<
Phi_SDF_temp
,
Phi_sign_temp
>
(
g_temp
);
// initialize Phi_sign_temp with the sign of the
// input Phi_SDF
get_upwind_gradient
<
Phi_SDF_temp
,
Phi_sign_temp
,
Phi_grad_temp
>
(
g_temp
);
// Get initial gradients
get_upwind_gradient
<
Phi_SDF_temp
,
Phi_sign_temp
,
Phi_grad_temp
>
(
g_temp
,
1
,
true
);
// Get initial gradients
}
/**@brief Checks if a value for Phi_SDF lays within the narrow band.
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment