Skip to content

Commit b884043

Browse files
authored
Merge pull request #38 from JayTheDog/main
Fixed Temprun; Changed simMD steps for MFP MD
2 parents e68d46f + 2bddc14 commit b884043

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/main.f90

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ program QCxMS
245245
etempGS=298.15 ! normal ! Maybe make this input relevant
246246
convetemp=0
247247
! introduce simmd
248-
simMD = 0
248+
simMD = 8000 ! =8000 * 0.5 fs => 4 ps
249249

250250
! GBSA Solvation Model
251251
!solvent='none'
@@ -1761,8 +1761,9 @@ program QCxMS
17611761

17621762
!> reduce the MD time if fragmentation in MFP occurs
17631763
!> even if manually set
1764-
if (isec == 3) simMD =int(simMD/2)
1765-
if (isec >= 4) simMD =int(simMD/3)
1764+
if (isec == 3) simMD =int(simMD * 0.75_wp)
1765+
if (isec == 4) simMD =int(simMD * 0.6_wp )
1766+
if (isec >= 5) simMD =int(simMD * 0.5_wp )
17661767
!if ( fragstate == 2 ) simMD = simMD / 2
17671768

17681769

0 commit comments

Comments
 (0)