Skip to content

Commit

Permalink
fix the number
Browse files Browse the repository at this point in the history
  • Loading branch information
ahurta92 committed Oct 24, 2023
1 parent d7670f3 commit 2b9743a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/molresponse/FrequencyResponse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ void FrequencyResponse::iterate(World &world) {
r_params.dconv());//.01 .0001 .1e-5
auto thresh = FunctionDefaults<3>::get_thresh();
auto density_target = dconv * std::max(size_t(5.0), molecule.natom());
const double a_pow{0.618};
const double b_pow{-.069};
const double a_pow{0.6201};
const double b_pow{.10273};
const double x_residual_target = pow(thresh, a_pow) * pow(10, b_pow);//thresh^a*10^b
Tensor<double> x_residual((int(m)));
Tensor<double> density_residuals((int(m)));
Expand Down

0 comments on commit 2b9743a

Please sign in to comment.