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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <simulation> <!-- General - geometry definitions !--> <geometry dim="2" sets="True"> <raiseorder patch="1" u="2" v="2"/> <refine type="uniform" patch="1" u="9" v="9"/> <topologysets/> </geometry> <!-- General - boundary conditions !--> <boundaryconditions> <dirichlet set="Boundary" comp="1"/> </boundaryconditions> <discretization> <nGauss> 5 </nGauss> </discretization> <!-- Problem-specific block !--> <advectiondiffusion> <advectionfield>1|0</advectionfield> <!-- <stabilization> supg </stabilization> <reactionfield> 1 </reactionfield> --> <source type="expression">2*x*cos(PI*y)</source> <kappa> 1e-2 </kappa> </advectiondiffusion> <postprocessing> <vtfformat nviz="2">ascii</vtfformat> </postprocessing> </simulation>
Two immedate errors:
The text was updated successfully, but these errors were encountered:
Three fixes:
<stabilization type="supg"/>
Also <kappa> should be wrapped into a <fluidproperties> tag.
<kappa>
<fluidproperties>
The SUPG stabilization is for some reason scaled by Xi in https://github.com/OPM/IFEM-AdvectionDiffusion/blob/master/AdvectionDiffusion.C#L253
Sorry, something went wrong.
No branches or pull requests
Two immedate errors:
The text was updated successfully, but these errors were encountered: