Clarification on polar chain length equation #275
Unanswered
ImagineBaggins
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
-
Concerning the limitation of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello again,
I have a question about the equation for the average chain length term used for polar calculations, specifically the way it is limited to a maximum value of 2.
In your code (if I understand correctly; I am not familiar with Rust notation), you appear to be limiting the pure-component mi/mj to 2:
(the above starting @ line 94 in
polar.rs
)In the original paper by Gross & Vrabec (2006) on dipoles, it is instead the post-average quantity that is limited to 2:

(the QQ (2005) and DQ (2008) papers do not mention this limit at all)
However, these two forms are not mathematically equivalent;$\min (\sqrt{x \cdot y},2 ) \neq \sqrt{\min(x,2) \cdot \min(y,2)}$ . So I was wondering if you know if either of these is incorrect or misrepresented (or if I am misunderstanding). It seems like the maximum error (for mij) ranges between ~27% and ~42% (depending on how you define the error) for {mi,mj} ≥ 1, so I would like to use the correct form for my own implementation of this model.
Thank you again for all your work on FeOs; it's been very helpful for my research!
Beta Was this translation helpful? Give feedback.
All reactions