File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1015,9 +1015,9 @@ namespace aspect
1015
1015
else if (deletion_algorithm_string == " random" )
1016
1016
deletion_algorithm = DeletionAlgorithm::random;
1017
1017
else
1018
- {
1019
- AssertThrow (true , ExcNotImplemented ());
1020
- }
1018
+ {
1019
+ AssertThrow (true , ExcNotImplemented ());
1020
+ }
1021
1021
1022
1022
// The kernel function to use when using the point density function particle removal algorithm
1023
1023
std::string kernel_function_string = prm.get (" Point density kernel function" );
@@ -1031,9 +1031,9 @@ namespace aspect
1031
1031
else if (kernel_function_string == " gaussian" )
1032
1032
kernel_function = ParticlePDF<dim>::KernelFunction::gaussian;
1033
1033
else
1034
- {
1035
- AssertThrow (true , ExcNotImplemented ());
1036
- }
1034
+ {
1035
+ AssertThrow (true , ExcNotImplemented ());
1036
+ }
1037
1037
1038
1038
TimerOutput::Scope timer_section (this ->get_computing_timer (), " Particles: Initialization" );
1039
1039
Original file line number Diff line number Diff line change 1
1
# This .prm file is intended to test the kernel density estimation
2
2
# based algorithm for deleting excess particles. The KDE-based algorithm
3
3
# generates a point-density function from the location of the particles
4
- # and removes the particles whose location represents the maxiumum of the
4
+ # and removes the particles whose location represents the maximum of the
5
5
# point density function first. This method is intended to avoid some of the
6
6
# problems with particle clustering which are caused by randomly deleting
7
7
# excess particles.
You can’t perform that action at this time.
0 commit comments