Skip to content

Commit

Permalink
fix issue with smoother weight on mass inverse
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigfried Haering committed Jun 13, 2024
1 parent eb376c3 commit af6845f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/calorically_perfect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class CaloricallyPerfectThermoChem : public ThermoChemModelBase {
double smoother_poly_fraction_ = 0.1;
int smoother_eig_est_ = 10;
int smoother_passes_ = 1;
double smoother_relax_weight_ = 0.0;
double smoother_relax_weight_ = 0.01;
double smoother_relax_omega_ = 0.001;
double hsmoother_relax_weight_ = 0.01;
double hsmoother_relax_omega_ = 0.001;
Expand Down
2 changes: 1 addition & 1 deletion src/tomboulides.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Tomboulides final : public FlowBase {
double smoother_poly_fraction_ = 0.1;
int smoother_eig_est_ = 10;
int smoother_passes_ = 1;
double smoother_relax_weight_ = 0.0;
double smoother_relax_weight_ = 0.01;
double smoother_relax_omega_ = 0.001;
double hsmoother_relax_weight_ = 0.01;
double hsmoother_relax_omega_ = 0.001;
Expand Down

0 comments on commit af6845f

Please sign in to comment.