hermes-3 icon indicating copy to clipboard operation
hermes-3 copied to clipboard

inconsistency between upper and lower target

Open dschwoerer opened this issue 2 years ago • 1 comments

On the lower target sin_alpha is missing: https://github.com/bendudson/hermes-3/blob/cf5d2967622eb841e5c2245995f872b7fbece308/src/sheath_boundary.cxx#L250

Screenshot at 2024-03-25 10-20-59

dschwoerer avatar Mar 25 '24 09:03 dschwoerer

There are also two different expressions for s_i used:

        BoutReal s_i = (nesheath > 1e-5) ? nisheath / nesheath : 0.0; // Concentration
        BoutReal s_i = clip(nisheath / floor(nesheath, 1e-10), 0, 1); // Concentration

I am currently writing a replacement for the sheath_boundary component, that will not only unify upper and lower target, but also FCI and non-FCI ...

dschwoerer avatar Mar 27 '24 09:03 dschwoerer

This was fixed in 2faaa3c5

bendudson avatar Jul 19 '24 16:07 bendudson