Merge pull request #2991 from mphowardlab/bugfix-brownian

Fix Brownian noise scale factor
This commit is contained in:
Axel Kohlmeyer
2021-10-14 12:23:04 -04:00
committed by GitHub

View File

@ -45,7 +45,7 @@ void FixBrownian::init()
{
FixBrownianBase::init();
g1 /= gamma_t;
g2 *= sqrt(gamma_t);
g2 /= sqrt(gamma_t);
}
/* ---------------------------------------------------------------------- */