Skip to content
Snippets Groups Projects
Commit 06e32320 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL] set current solution, time, dof_table in Cached2ndVar

parent eb9d7091
No related branches found
No related tags found
No related merge requests found
...@@ -51,8 +51,8 @@ GlobalVector const& CachedSecondaryVariable::evalField( ...@@ -51,8 +51,8 @@ GlobalVector const& CachedSecondaryVariable::evalField(
std::unique_ptr<GlobalVector>& /*result_cache*/ std::unique_ptr<GlobalVector>& /*result_cache*/
) const ) const
{ {
// _current_solution = &x; (void)t, (void)x, (void)dof_table;
// _dof_table = &dof_table; assert(t == _t && &x == _current_solution && &dof_table == _dof_table);
return evalFieldNoArgs(); return evalFieldNoArgs();
} }
...@@ -64,10 +64,8 @@ GlobalVector const& CachedSecondaryVariable::evalFieldNoArgs() const ...@@ -64,10 +64,8 @@ GlobalVector const& CachedSecondaryVariable::evalFieldNoArgs() const
return _cached_nodal_values; return _cached_nodal_values;
} }
DBUG("Recomputing %s.", _internal_variable_name.c_str()); DBUG("Recomputing %s.", _internal_variable_name.c_str());
// TODO fix
const double t = 0.0;
_extrapolator.extrapolate( _extrapolator.extrapolate(
1, *_extrapolatables, t, *_current_solution, *_dof_table); 1, *_extrapolatables, _t, *_current_solution, *_dof_table);
auto const& nodal_values = _extrapolator.getNodalValues(); auto const& nodal_values = _extrapolator.getNodalValues();
MathLib::LinAlg::copy(nodal_values, _cached_nodal_values); MathLib::LinAlg::copy(nodal_values, _cached_nodal_values);
_needs_recomputation = false; _needs_recomputation = false;
......
...@@ -60,8 +60,19 @@ public: ...@@ -60,8 +60,19 @@ public:
//! Returns extrapolation functions that compute the secondary variable. //! Returns extrapolation functions that compute the secondary variable.
SecondaryVariableFunctions getExtrapolator(); SecondaryVariableFunctions getExtrapolator();
//! Set that recomputation is necessary. void setTime(const double t)
void expire() { _needs_recomputation = true; } {
_t = t;
_needs_recomputation = true;
}
void updateCurrentSolution(GlobalVector const& x,
NumLib::LocalToGlobalIndexMap const& dof_table)
{
_current_solution = &x;
_dof_table = &dof_table;
_needs_recomputation = true;
}
private: private:
//! Provides the value at the current index of the _context. //! Provides the value at the current index of the _context.
...@@ -87,6 +98,7 @@ private: ...@@ -87,6 +98,7 @@ private:
SecondaryVariableContext const& _context; SecondaryVariableContext const& _context;
std::string const _internal_variable_name; std::string const _internal_variable_name;
double _t = 0.0;
GlobalVector const* _current_solution = nullptr; GlobalVector const* _current_solution = nullptr;
NumLib::LocalToGlobalIndexMap const* _dof_table = nullptr; NumLib::LocalToGlobalIndexMap const* _dof_table = nullptr;
}; };
......
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