Skip to content
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

momentum_pressure Kernel is missing required parameter #1

Open
wk9874 opened this issue Jul 1, 2024 · 0 comments
Open

momentum_pressure Kernel is missing required parameter #1

wk9874 opened this issue Jul 1, 2024 · 0 comments

Comments

@wk9874
Copy link

wk9874 commented Jul 1, 2024

When using Proteus to run this MOOSE file, I get the following error:

*** ERROR ***
/home/auto-breeder-pin/src/breeder-pin.i:31: missing required parameter 'Kernels/momentum_pressure/pressure'
        Doc String: "The pressure"

Looking at this section of the MOOSE file:

  [./momentum_pressure] #dp
    type = INSADMomentumPressure
    variable = velocity
    block = 'fluid'
    p = p
    integrate_p_by_parts = false
  [../]

But the docs of INSADMomentumPressure say it requires pressure, not p - maybe this has changed recently? Updating that section of the MOOSE file to instead be:

  [./momentum_pressure] #dp
    type = INSADMomentumPressure
    variable = velocity
    block = 'fluid'
    pressure = p
    integrate_p_by_parts = false
  [../]

Fixes the issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant