Skip to content
Snippets Groups Projects
Commit 5d482e0b authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Christoph Lehmann
Browse files

fixup GWF

parent 063d0041
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,9 @@ std::unique_ptr<Process> createGroundwaterFlowProcess(
named_function_caller);
return std::unique_ptr<Process>{new GroundwaterFlowProcess{
mesh, parameters, std::move(jacobian_assembler), std::move(process_variables),
std::move(process_data), std::move(secondary_variables),
std::move(named_function_caller)}};
mesh, std::move(jacobian_assembler), parameters,
std::move(process_variables), std::move(process_data),
std::move(secondary_variables), std::move(named_function_caller)}};
}
} // namespace GroundwaterFlow
......
......@@ -68,12 +68,12 @@ public:
std::size_t const /*local_matrix_size*/,
unsigned const integration_order,
GroundwaterFlowProcessData const& process_data)
: _element(element)
, _shape_matrices(
initShapeMatrices<ShapeFunction, ShapeMatricesType, IntegrationMethod, GlobalDim>(
element, integration_order))
, _process_data(process_data)
: _element(element),
_process_data(process_data),
_integration_method(integration_order),
_shape_matrices(initShapeMatrices<ShapeFunction, ShapeMatricesType,
IntegrationMethod, GlobalDim>(
element, _integration_method))
{
}
......
......@@ -24,11 +24,10 @@ GroundwaterFlowProcess::GroundwaterFlowProcess(
std::vector<std::reference_wrapper<ProcessVariable>>&& process_variables,
GroundwaterFlowProcessData&& process_data,
SecondaryVariableCollection&& secondary_variables,
ProcessOutput&& process_output,
NumLib::NamedFunctionCaller&& named_function_caller)
: Process(mesh, std::move(jacobian_assembler), parameters,
std::move(process_variables), std::move(secondary_variables),
std::move(process_output), std::move(named_function_caller)),
std::move(named_function_caller)),
_process_data(std::move(process_data))
{
}
......@@ -83,6 +82,9 @@ void GroundwaterFlowProcess::assembleWithJacobianConcreteProcess(
const double dxdot_dx, const double dx_dx, GlobalMatrix& M, GlobalMatrix& K,
GlobalVector& b, GlobalMatrix& Jac)
{
DBUG("AssembleWithJacobian GroundwaterFlowProcess.");
// Call global assembler for each local assembly item.
GlobalExecutor::executeMemberDereferenced(
_global_assembler, &VectorMatrixAssembler::assembleWithJacobian,
_local_assemblers, *_local_to_global_index_map, t, x, xdot, dxdot_dx,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment