-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Issue warning in --mesh-only mode if unused parameters exist in input file #29824
base: next
Are you sure you want to change the base?
Conversation
Job Precheck, step Clang format on ed6f597 wanted to post the following: Your code requires style changes. A patch was auto generated and copied here
Alternatively, with your repository up to date and in the top level of your repository:
|
2e26738
to
91a1e12
Compare
Job Documentation, step Docs: sync website on db92386 wanted to post the following: View the site here This comment will be updated on new commits. |
Job Coverage, step Generate coverage on be99186 wanted to post the following: Framework coverage
Modules coverageCoverage did not change Full coverage reportsReports
This comment will be updated on new commits. |
5f0604d
to
be99186
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for sure an improvement. my only concern is that the "check input" is done after mesh generation still, so meshing parameters that would be critical and would make mesh generation fail when misspelled are not caught
@GiudGiud one possible workaround here could be to call errorCheck() within MeshOnlyAction, so that it happens before exodus mesh outputting, what do you think? |
I think that would be a good thing to try. A bad parameter is usually a critical failure in meshing in my experience |
be99186
to
3701321
Compare
@GiudGiud just pushed some changes that call errorCheck before mesh generation now, this should now be the desired behavior that you requested |
Nice, it looks like these changes are already picking up instances in existing unit tests where unused parameters are being used |
yup a whopping 26 tests affected. this is a great fix |
I'll be working towards updating the failing tests. A few things I'm noticing:
|
Submitted a PR in Griffin to address controlled app test failures for Griffin: |
6dae246
to
3eb4d0b
Compare
Turns out pi is an understood constant in the MOOSE input so explicitly defining it is not needed, hence the error message |
d2df16a
to
417a640
Compare
ok that's my bad unfortunately. I ll do this now since I am looking at your PR |
it should be good now. Looks like the amr detection diagnostics were broken for high order hexes @roystgnr can you please approve my two commits on Shikhar's PR? |
b5b7456
to
5495357
Compare
Adapt mesh diagnostics generator for second order Hexes that are newly tested
5495357
to
db92386
Compare
Thanks, all MOOSE tests pass now, (modules parallel is unrelated). The Griffin changes were also merged (https://github.inl.gov/ncrc/griffin/pull/2337), will take some time for Griffin master to be updated. Only thing that's left is updating subchannel tests (don't have access) and addressing internal app tests (can't access). |
ok we just need to wait for the master merge there then |
nevermind there's a subchannel and some BISON failures. I can take care of BISON, subchannel should be removed |
I don't have access to subchannel, you can take care of that too right? |
yup. Subchannel is just done |
Bison PR https://github.inl.gov/ncrc/bison/pull/6284 |
Job Controlled app tests on db92386 : invalidated by @shikhar413 |
Griffin controlled app tests now pass - feel free to invalidate the remaining tests when the other app PR's are through |
Reason
Design
Impact
refs #14550, this should be merged in after #29803 is merged