www.mooseframework.org
MutableCoefficientsFunctionInterface.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "FunctionInterface.h"
13 
16 
21  protected FunctionInterface,
23 {
24 public:
26 
28  const InputParameters & parameters);
29 
30 protected:
31  // Override from MemoizedFunctionInterface
32  virtual void coefficientsChanged() override;
33 };
Interface for a type of functions using coefficients that may be changed before or after a solve...
MutableCoefficientsFunctionInterface(const MooseObject *moose_object, const InputParameters &parameters)
const InputParameters & parameters() const
Implementation of Function that memoizes (caches) former evaluations in an unordered map using a hash...
This class is designed to provide a uniform interface for any class that uses an array of coefficient...
virtual void coefficientsChanged() override
Called when the coefficients have been changed.