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 
18 
19 template <>
21 
26  protected FunctionInterface,
28 {
29 public:
30  MutableCoefficientsFunctionInterface(const MooseObject * moose_object,
31  const InputParameters & parameters);
32 
33 protected:
34  // Override from MemoizedFunctionInterface
35  virtual void coefficientsChanged() override;
36 };
37 
MemoizedFunctionInterface
Implementation of Function that memoizes (caches) former evaluations in an unordered map using a hash...
Definition: MemoizedFunctionInterface.h:28
MutableCoefficientsFunctionInterface
Interface for a type of functions using coefficients that may be changed before or after a solve.
Definition: MutableCoefficientsFunctionInterface.h:25
MutableCoefficientsFunctionInterface::MutableCoefficientsFunctionInterface
MutableCoefficientsFunctionInterface(const MooseObject *moose_object, const InputParameters &parameters)
Definition: MutableCoefficientsFunctionInterface.C:28
MutableCoefficientsFunctionInterface::coefficientsChanged
virtual void coefficientsChanged() override
Called when the coefficients have been changed.
Definition: MutableCoefficientsFunctionInterface.C:39
MemoizedFunctionInterface.h
validParams< MutableCoefficientsFunctionInterface >
InputParameters validParams< MutableCoefficientsFunctionInterface >()
Definition: MutableCoefficientsFunctionInterface.C:14
MutableCoefficientsInterface.h
MutableCoefficientsInterface
This class is designed to provide a uniform interface for any class that uses an array of coefficient...
Definition: MutableCoefficientsInterface.h:30