Skip to content

Commit b173607

Browse files
committed
Use width from metedyn for determining sigma of random dispalcement
Signed-off-by: Igor S. Gerasimov <foxtranigor@gmail.com>
1 parent 3f85f0e commit b173607

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

man/xcontrol.7.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ $metadyn (6.1 only)
257257
*scale factor*='int','real',...::
258258
scales the factor 'int' with 'real'
259259
*alp*='real'::
260-
width of the Gaussian potential used in the rmsd criteria
260+
width of the Gaussian potential used in the rmsd criteria or width of the Gaussian for random displacement for --metaopt
261261
*coord*='file'::
262262
external structures to initialize the rmsd criteria (xmol format required)
263263
*atoms*: 'list',...::

src/prog/main.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ subroutine xtbMain(env, argParser)
11591159
do i = 1, mol%n
11601160
if (.not. fixset%is_fixed(i)) then
11611161
do j = 1, 3
1162-
mol%xyz(j, i) = mol%xyz(j, i) + normal_distribution(0.1_wp, 0.0_wp)
1162+
mol%xyz(j, i) = mol%xyz(j, i) + normal_distribution(metaset%width, 0.0_wp)
11631163
end do
11641164
end if
11651165
end do

0 commit comments

Comments
 (0)