We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Actual harmonic interpolation. Try to make something like this:
surfaceScalarField some_ssf = fvc::interpolate(some_vsf, "harmonic");
The text was updated successfully, but these errors were encountered:
Maybe just writing this:
surfaceScalarField some_ssf = fvc::interpolate(some_vsf);
and choosing harmonic in fvSchemes file for this fvc::interpolate code.
fvc::interpolate
Sorry, something went wrong.
The same with Single Phase code. Needs harmonic interpolation with an openFOAM standard implementation.
it seems that if I just use this:
interpolationSchemes { default harmonic; }
it work's
rafaelCMoura
No branches or pull requests
Fix Actual harmonic interpolation. Try to make something like this:
The text was updated successfully, but these errors were encountered: