You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think I completely understand your question. Do you mean "what do the parameters represent mathematically"? Or do you mean "where are they defined"?
If you mean "what do the parameters represent mathematically" you can see the potential (assuming you are referring to the polynomial_repulsive potential) plotted here with the mathematical formula written out. I believe the parameters you ask about are represented in that equation as:
REPsigma <-> $R_\mathrm{max}$
rmin12 <-> $\sqrt{6/7}$
rsc <-> $\frac{r\sqrt{6/7}}{R_\mathrm{max}}$
If you mean "where are they defined", then you can find their definition a little further down in the code using the function addGlobalParameter
I hope that clarifies things a bit. If not, don't hesitate to ask clarifying questions.
radius = sim_object.conlen * radiusMult
nbCutOffDist = radius
repul_energy = (
"rsc12 * (rsc2 - 1.0) * REPe / emin12 + REPe;"
"rsc12 = rsc4 * rsc4 * rsc4;"
"rsc4 = rsc2 * rsc2;"
"rsc2 = rsc * rsc;"
"rsc = r / REPsigma * rmin12;
What is REPsigma, rmin12,rsc?
The text was updated successfully, but these errors were encountered: