Skip to content

Commit

Permalink
changed defaults to be consistent with the libpvol publication (#396)
Browse files Browse the repository at this point in the history
Default build of https://github.com/neudecker-group/libpvol enabled for conformational sampling with external pressure!
  • Loading branch information
pprcht authored Jan 29, 2025
2 parents 2fdb721 + 0f172da commit ad64421
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ option(WITH_TBLITE "Enable support for tblite" TRUE)
option(WITH_TOMLF "Enable support for toml-f" TRUE)
option(WITH_GFN0 "Enable support for GFN0-xTB" TRUE)
option(WITH_GFNFF "Enable support for GFN-FF" TRUE)
option(WITH_LIBPVOL "Enable support for LIBPVOL" FALSE)
option(WITH_LIBPVOL "Enable support for LIBPVOL" TRUE)
option(WITH_LWONIOM "Enable support for lwONIOM" TRUE)
option(WITH_TESTS "Enable unit tests" TRUE)

Expand Down
2 changes: 1 addition & 1 deletion config/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ if get_option('WITH_LIBPVOL')
add_project_arguments('-DWITH_LIBPVOL', language: 'fortran')
libpvol_dep = dependency(
'libpvol',
fallback: ['libpvol', 'libpvollib_dep'],
fallback: ['libpvol', 'libpvol_dep'],
default_options: ['default_library=static'],
)
exe_deps += libpvol_dep
Expand Down
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ option(
option(
'WITH_LIBPVOL',
type: 'boolean',
value: false,
value: true,
description: 'build with libpvol integration',
)

Expand Down
2 changes: 1 addition & 1 deletion src/calculator/calc_type.f90
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ module calc_type

!>--- libpvol data
integer :: pvmodel = 1 !> libpvol model type (0=XHCFF, 1=PV)
integer :: ngrid = 230 !> lebedev grid points per atom
integer :: ngrid = 1202 !> lebedev grid points per atom
real(wp) :: extpressure = 0.0_wp !> hydorstatic pressure in Gpa
real(wp) :: proberad = 1.5_wp !> proberadius in Angstroem
integer :: vdwset = 0 !> Type of VDW radii -> 0 (default) D3, 1 -> Bondi
Expand Down
4 changes: 4 additions & 0 deletions subprojects/libpvol.wrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[wrap-git]
directory = pvol
url = https://github.com/neudecker-group/libpvol.git
revision = head
4 changes: 0 additions & 4 deletions subprojects/xhcff.wrap

This file was deleted.

0 comments on commit ad64421

Please sign in to comment.