From f31d3567e158958d6a66265529c38dfdc6132dcb Mon Sep 17 00:00:00 2001 From: Henning Scheufler Date: Sun, 9 Feb 2025 21:32:54 +0100 Subject: [PATCH] update to Operator::Type --- NeoFOAM | 2 +- test/test_implicitOperators.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NeoFOAM b/NeoFOAM index 0603f4b..cf9539f 160000 --- a/NeoFOAM +++ b/NeoFOAM @@ -1 +1 @@ -Subproject commit 0603f4be2fce7f4a76ec5599cae073b6abc3bd78 +Subproject commit cf9539f6d5bee946e1e235e88900b0d5cd6fcd55 diff --git a/test/test_implicitOperators.cpp b/test/test_implicitOperators.cpp index aa428db..b99ef22 100644 --- a/test/test_implicitOperators.cpp +++ b/test/test_implicitOperators.cpp @@ -79,7 +79,7 @@ TEST_CASE("matrix multiplication") matrix & ofT ); // we should get a uniform field with a value of 1 // ddt.write(); - fvcc::DdtOperator ddtOp(dsl::SpatialOperator::Type::Implicit, nfT); + fvcc::DdtOperator ddtOp(dsl::Operator::Type::Implicit, nfT); auto ls = ddtOp.createEmptyLinearSystem(); ddtOp.implicitOperation(ls, runTime.value(), runTime.deltaTValue()); @@ -117,7 +117,7 @@ TEST_CASE("matrix multiplication") ); auto coefficients = nfT; NeoFOAM::fill(coefficients.internalField(), coeff); - fvcc::SourceTerm sourceTerm(dsl::SpatialOperator::Type::Implicit, coefficients, nfT); + fvcc::SourceTerm sourceTerm(dsl::Operator::Type::Implicit, coefficients, nfT); NeoFOAM::Field source(nfT.exec(), nfT.internalField().size(), 0.0); sourceTerm.explicitOperation(source);