Skip to content
Snippets Groups Projects
Commit da61e1c3 authored by garibay-j's avatar garibay-j Committed by renchao.lu
Browse files

[CL] changed name of setReactantVolumeFraction

parent a081c90b
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,7 @@ void setReactantMolality(Reactant& reactant,
}
template <typename Reactant>
void setReactantVolumeFraction(Reactant& reactant,
void updateReactantVolumeFraction(Reactant& reactant,
GlobalIndexType const& chemical_system_id,
MaterialPropertyLib::Medium const& medium,
ParameterLib::SpatialPosition const& pos,
......@@ -734,13 +734,13 @@ void PhreeqcIO::updateVolumeFractionPostReaction(
{
for (auto& kinetic_reactant : _chemical_system->kinetic_reactants)
{
setReactantVolumeFraction(kinetic_reactant, chemical_system_id, medium,
updateReactantVolumeFraction(kinetic_reactant, chemical_system_id, medium,
pos, porosity, t, dt);
}
for (auto& equilibrium_reactant : _chemical_system->equilibrium_reactants)
{
setReactantVolumeFraction(equilibrium_reactant, chemical_system_id, medium,
updateReactantVolumeFraction(equilibrium_reactant, chemical_system_id, medium,
pos, porosity, t, dt);
}
}
......
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