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

[pull] master from crest-lab:master #55

Merged
merged 4 commits into from
Feb 3, 2025
Merged
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
12 changes: 6 additions & 6 deletions src/parsing/parse_calcdata.f90
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,8 @@ subroutine parse_setting_auto(env,job,kv,rd)
job%id = jobtype%gfn0occ
case ('gfnff','gff','gfn-ff')
job%id = jobtype%gfnff
case ('pvol','libpvol')
case ('pvol','libpvol', 'pv')
job%id = jobtype%libpvol
case ('xhcff')
job%id = jobtype%libpvol
job%pvmodel=0
case ('none')
job%id = jobtype%unknown
case ('lj','lennard-jones')
Expand Down Expand Up @@ -406,16 +403,19 @@ subroutine parse_setting_auto(env,job,kv,rd)
case ('getsasa')
call get_atlist(env%ref%nat,job%getsasa,kv%value_c,env%ref%at)

case ('pvol_model')
case ('pvol_model','pgrad','pvgrad')
select case (kv%id)
case (valuetypes%int)
job%pvmodel = kv%value_i
case (valuetypes%string)
select case (kv%value_c)
case ('xhcff')
job%pvmodel = 0
case default
case ('analytic')
job%pvmodel = 1
case default
write (stdout,fmtura) kv%value_c
call creststop(status_config)
end select
case default
write (stdout,fmtura) trim(kv%rawvalue)
Expand Down
2 changes: 1 addition & 1 deletion subprojects/pvol