Skip to content

Commit

Permalink
Merge pull request #38 from JayTheDog/main
Browse files Browse the repository at this point in the history
Fixed Temprun; Changed simMD steps for MFP MD
  • Loading branch information
JayTheDog authored Sep 24, 2021
2 parents e68d46f + 2bddc14 commit b884043
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main.f90
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ program QCxMS
etempGS=298.15 ! normal ! Maybe make this input relevant
convetemp=0
! introduce simmd
simMD = 0
simMD = 8000 ! =8000 * 0.5 fs => 4 ps

! GBSA Solvation Model
!solvent='none'
Expand Down Expand Up @@ -1761,8 +1761,9 @@ program QCxMS

!> reduce the MD time if fragmentation in MFP occurs
!> even if manually set
if (isec == 3) simMD =int(simMD/2)
if (isec >= 4) simMD =int(simMD/3)
if (isec == 3) simMD =int(simMD * 0.75_wp)
if (isec == 4) simMD =int(simMD * 0.6_wp )
if (isec >= 5) simMD =int(simMD * 0.5_wp )
!if ( fragstate == 2 ) simMD = simMD / 2


Expand Down

0 comments on commit b884043

Please sign in to comment.