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

Exchange Repulsion Model #167

Open
wants to merge 22 commits into
base: release
Choose a base branch
from
Open
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion source/analysis.f
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ subroutine analysis (energy)
use iounit
use limits
use potent
use reppot
use vdwpot
implicit none
integer i
Expand Down Expand Up @@ -227,7 +228,11 @@ subroutine analysis (energy)
if (vdwtyp .eq. 'BUFFERED-14-7') call ehal3
if (vdwtyp .eq. 'GAUSSIAN') call egauss3
end if
if (use_repel) call erepel3
if (use_repel) then
call erepel3
else if (use_xrepel) then
call exrepel3
end if
if (use_disp) call edisp3
c
c call any miscellaneous energy component routines
Expand Down
Loading