Skip to content
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

core: Reinit longrange stuff on manual cutoff or skin change #3717

Merged
merged 1 commit into from
May 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/event.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@ void on_cell_structure_change() {
void on_temperature_change() { lb_lbfluid_reinit_parameters(); }

void on_parameter_change(int field) {

switch (field) {
case FIELD_BOXL:
on_boxl_change();
Expand All @@ -320,6 +319,7 @@ void on_parameter_change(int field) {
case FIELD_MIN_GLOBAL_CUT:
case FIELD_SKIN:
cells_on_geometry_change(false);
on_coulomb_change();
break;
case FIELD_NODEGRID:
grid_changed_n_nodes();
Expand Down