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
11b774d8
Commit
11b774d8
authored
3 years ago
by
Abhinav Singh
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
parents
d113fa3d
14ae574a
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/CMakeLists.txt
+3
-1
3 additions, 1 deletion
src/CMakeLists.txt
src/level_set/redistancing_Sussman/RedistancingSussman.hpp
+39
-14
39 additions, 14 deletions
src/level_set/redistancing_Sussman/RedistancingSussman.hpp
with
42 additions
and
15 deletions
src/CMakeLists.txt
+
3
−
1
View file @
11b774d8
...
...
@@ -47,7 +47,7 @@ add_executable(numerics ${OPENFPM_INIT_FILE} ${CUDA_SOURCES}
../../src/lib/pdata.cpp
BoundaryConditions/tests/method_of_images_cylinder_unit_test.cpp
# level_set/closest_point/closest_point_unit_tests.cpp
level_set/redistancing_Sussman/tests/redistancingSussman_unit_test.cpp
#
level_set/redistancing_Sussman/tests/redistancingSussman_unit_test.cpp
# level_set/redistancing_Sussman/tests/convergence_test.cpp
)
...
...
@@ -252,6 +252,8 @@ install(FILES level_set/redistancing_Sussman/HelpFunctions.hpp
level_set/redistancing_Sussman/HelpFunctionsForGrid.hpp
level_set/redistancing_Sussman/NarrowBand.hpp
level_set/redistancing_Sussman/RedistancingSussman.hpp
level_set/redistancing_Sussman/tests/l_norms/LNorms.hpp
level_set/redistancing_Sussman/tests/analytical_SDF/AnalyticalSDF.hpp
DESTINATION openfpm_numerics/include/level_set/redistancing_Sussman
COMPONENT OpenFPM
)
...
...
This diff is collapsed.
Click to expand it.
src/level_set/redistancing_Sussman/RedistancingSussman.hpp
+
39
−
14
View file @
11b774d8
...
...
@@ -240,7 +240,27 @@ public:
/// This timestep is computed according to the grid spacing fulfilling the CFL condition.
return
time_step
;
}
int
get_finalIteration
()
{
return
final_iter
;
}
double
get_finalChange
()
{
return
distFromSol
.
change
;
}
double
get_finalResidual
()
{
return
distFromSol
.
residual
;
}
int
get_finalNumberNbPoints
()
{
return
distFromSol
.
count
;
}
private
:
// Some indices for better readability
static
constexpr
size_t
Phi_n_temp
=
0
;
///< Property index of Phi_0 on the temporary grid.
...
...
@@ -251,6 +271,9 @@ private:
Redist_options
redistOptions
;
///< Instantiate redistancing options.
grid_in_type
&
r_grid_in
;
///< Define reference to input grid.
DistFromSol
distFromSol
;
///< Instantiate distance from solution in terms of change, residual, numb. point in NB.
int
final_iter
=
0
;
///< Will be set to the final iteration when redistancing ends.
/// Transform the half-bandwidth in no_of_grid_points into physical half-bandwidth kappa.
double
kappa
=
ceil
(
redistOptions
.
width_NB_in_grid_points
/
2.0
)
*
get_biggest_spacing
(
g_temp
);
/**@brief Artificial timestep for the redistancing iterations.
...
...
@@ -332,14 +355,12 @@ private:
return
(
abs
(
Phi
)
<=
kappa
);
}
/** @brief Checks how far current solution is from fulfilling the user-defined convergence criteria.
/** @brief Re-computes the member variables distFromSol.change, distFromSol.residual, distFromSol.count for the
* Phi of the current iteration. Needed to check how far current solution is from fulfilling the user-defined convergence criteria.
*
* @param grid Internal temporary grid.
*
* @return Total residual (1 - phi_gradient_magnitude) and total change from the last time step,
* both normalized by the number of grid nodes in the narrow band.
*/
DistFromSol
get_residual_and_change_NB
(
g_temp_type
&
grid
)
void
update_distFromSol
(
g_temp_type
&
grid
)
{
double
max_residual
=
0
;
double
max_change
=
0
;
...
...
@@ -370,20 +391,22 @@ private:
v_cl
.
max
(
max_residual
);
v_cl
.
sum
(
count
);
v_cl
.
execute
();
return
{
max_change
,
max_residual
,
count
};
// Update member variable distFromSol
distFromSol
.
change
=
max_change
;
distFromSol
.
residual
=
max_residual
;
distFromSol
.
count
=
count
;
}
/** @brief Prints out the iteration number, residual and change of the current re-distancing iteration
/** @brief Prints out the iteration number, max. change, max. residual and number of points in the narrow band of
* the current re-distancing iteration.
*
* @param grid Internal temporary grid.
* @param iter Current re-distancing iteration.
*
* @return Total residual (1 - phi_gradient_magnitude) and total change from the last time step,
* both normalized by the number of grid nodes in the narrow band.
*/
void
print_out_iteration_change_residual
(
g_temp_type
&
grid
,
size_t
iter
)
{
DistFromSol
distFromSol
=
get_residual_and_change_NB
(
grid
);
update_distFromSol
(
grid
);
auto
&
v_cl
=
create_vcluster
();
if
(
v_cl
.
rank
()
==
0
)
{
...
...
@@ -411,7 +434,7 @@ private:
bool
steady_state_NB
(
g_temp_type
&
grid
)
{
bool
steady_state
=
false
;
DistFromSol
distFromSol
=
get_residual_and_change_NB
(
grid
);
update_distFromSol
(
grid
);
if
(
redistOptions
.
convTolChange
.
check
&&
redistOptions
.
convTolResidual
.
check
)
{
steady_state
=
(
...
...
@@ -475,11 +498,13 @@ private:
}
}
}
update_distFromSol
(
grid
);
final_iter
=
i
;
// If save_temp_grid set true, save the temporary grid as hdf5 that can be reloaded onto a grid
if
(
redistOptions
.
save_temp_grid
)
{
get_upwind_gradient
<
Phi_n_temp
,
Phi_0_sign_temp
,
Phi_grad_temp
>
(
g_temp
,
order_upwind_gradient
,
true
);
g_temp
.
setPropNames
({
"Phi_n"
,
"Phi_nplus1_temp"
,
"Phi_grad_temp"
,
"Phi_0_sign_temp"
});
g_temp
.
setPropNames
({
"Phi_n"
,
"Phi_grad_temp"
,
"Phi_0_sign_temp"
});
g_temp
.
save
(
"g_temp_redistancing.hdf5"
);
// HDF5 file}
}
}
...
...
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