We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e68d46f + 2bddc14 commit b884043Copy full SHA for b884043
src/main.f90
@@ -245,7 +245,7 @@ program QCxMS
245
etempGS=298.15 ! normal ! Maybe make this input relevant
246
convetemp=0
247
! introduce simmd
248
- simMD = 0
+ simMD = 8000 ! =8000 * 0.5 fs => 4 ps
249
250
! GBSA Solvation Model
251
!solvent='none'
@@ -1761,8 +1761,9 @@ program QCxMS
1761
1762
!> reduce the MD time if fragmentation in MFP occurs
1763
!> even if manually set
1764
- if (isec == 3) simMD =int(simMD/2)
1765
- 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 )
1766
+ if (isec >= 5) simMD =int(simMD * 0.5_wp )
1767
!if ( fragstate == 2 ) simMD = simMD / 2
1768
1769
0 commit comments