[FEM] Elmer: fix pipeline update issue

- the existing result pipeline can have several children. They must all be updated.
This commit is contained in:
Uwe
2022-08-07 06:22:42 +02:00
parent f6e0d37264
commit 38aaf9bfb3
5 changed files with 25 additions and 3 deletions

View File

@@ -77,6 +77,15 @@ PyObject* FemPostPipelinePy::load(PyObject *args)
Py_Return;
}
PyObject *FemPostPipelinePy::recomputeChildren(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return nullptr;
getFemPostPipelinePtr()->recomputeChildren();
Py_Return;
}
PyObject* FemPostPipelinePy::getLastPostObject(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))