Skip to content
Snippets Groups Projects
Commit 254f42b1 authored by renchao.lu's avatar renchao.lu Committed by Dmitry Yu. Naumov
Browse files

[PL/CT] store in process data.

parent df4dcdbc
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
#include <memory>
#include "ChemistryLib/ChemicalSolverInterface.h"
#include "LookupTable.h"
#include "MaterialLib/MPL/CreateMaterialSpatialDistributionMap.h"
#include "MathLib/LinAlg/Eigen/EigenMapTools.h"
#include "ParameterLib/Parameter.h"
......@@ -66,6 +67,7 @@ struct ComponentTransportProcessData
*/
bool const chemically_induced_porosity_change;
ChemistryLib::ChemicalSolverInterface* const chemical_solver_interface;
std::unique_ptr<LookupTable> lookup_table;
const int hydraulic_process_id;
// TODO (renchao-lu): This variable is used in the calculation of the
......
......@@ -247,6 +247,7 @@ std::unique_ptr<Process> createComponentTransportProcess(
temperature,
chemically_induced_porosity_change,
chemical_solver_interface.get(),
std::move(lookup_table),
hydraulic_process_id,
first_transport_process_id};
......
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