Error deriving from PorousFlowMasstimederivative #26350
-
Hello,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The error means that a You can just specify |
Beta Was this translation helpful? Give feedback.
The error means that a
nodal
version of those material properties isn't supplied. We use an action (PorousFlowAddMaterialAction
) to add either nodal or qp versions of each material (or both if required), depending on what kernels are added. As you have inherited fromPorousFlowMassTimeDerivative
, your kernel is looking for nodal versions, but the action doesn't know what to add for your new kernel, so only defaults to qp versions.You can just specify
at_nodes = true
in the input file for all of those materials that provide the properties that are missing in the error message (you might need to have two versions, one withat_nodes = true
and one without, depending on your other kernels, see