Skip to content
Snippets Groups Projects
Commit 5d4c3a50 authored by renchao.lu's avatar renchao.lu Committed by Dmitri Naumov
Browse files

[PL/CT] update process solutions.

parent 660d612d
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,12 @@ void ComponentTransportProcess::solveReactionEquation(
std::vector<GlobalVector*>& x, std::vector<GlobalVector*> const& x_prev,
double const t, double const dt)
{
if (_process_data.lookup_table)
{
INFO("Update process solutions via the look-up table approach");
_process_data.lookup_table->lookup(x, x_prev, _mesh.getNumberOfNodes());
}
if (!_chemical_solver_interface)
{
return;
......
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