Skip to content

Commit

Permalink
Bug fix tapering function for HFX LR (#3300)
Browse files Browse the repository at this point in the history
  • Loading branch information
juerghutter committed Mar 4, 2024
1 parent 8b9dca2 commit dd7ddc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qs_tddfpt2_operators.F
Expand Up @@ -824,7 +824,7 @@ SUBROUTINE tddfpt_apply_hfxlr_kernel(qs_env, sub_env, rcut, hfx_scale, work, X,
gabr = 1._dp/dr
ELSE
r = dr - (rcut - rsmooth)
xr = r/rsmooth
xr = 0.5_dp*r/rsmooth
fcut = 6._dp*xr**5 - 15._dp*xr**4 + 10._dp*xr**3
gabr = fcut/dr
END IF
Expand Down

0 comments on commit dd7ddc2

Please sign in to comment.