You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[./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
The text was updated successfully, but these errors were encountered:
When using Proteus to run this MOOSE file, I get the following error:
Looking at this section of the MOOSE file:
But the docs of
INSADMomentumPressure
say it requirespressure
, notp
- maybe this has changed recently? Updating that section of the MOOSE file to instead be:Fixes the issue
The text was updated successfully, but these errors were encountered: