www.mooseframework.org
Public Member Functions | List of all members
FXValuePenaltyBC Class Reference

Defines an FX-based BC that strongly encourages the values to match. More...

#include <FXValuePenaltyBC.h>

Inheritance diagram for FXValuePenaltyBC:
[legend]

Public Member Functions

 FXValuePenaltyBC (const InputParameters &parameters)
 

Detailed Description

Defines an FX-based BC that strongly encourages the values to match.

Definition at line 22 of file FXValuePenaltyBC.h.

Constructor & Destructor Documentation

◆ FXValuePenaltyBC()

FXValuePenaltyBC::FXValuePenaltyBC ( const InputParameters &  parameters)

Definition at line 29 of file FXValuePenaltyBC.C.

30  : FunctionPenaltyDirichletBC(parameters)
31 {
32  FunctionSeries & fe_basis =
33  FunctionSeries::checkAndConvertFunction(_func, getParam<std::string>("_moose_base"), name());
34 
35  fe_basis.useCache(true);
36 }

The documentation for this class was generated from the following files:
FunctionSeries
This class uses implementations of CompositeSeriesBasisInterface to generate a function based on conv...
Definition: FunctionSeries.h:25
name
const std::string name
Definition: Setup.h:21
MemoizedFunctionInterface::useCache
void useCache(bool use)
Enable/disable the cache.
Definition: MemoizedFunctionInterface.C:75
FunctionSeries::checkAndConvertFunction
static FunctionSeries & checkAndConvertFunction(const Function &function, const std::string &typeName, const std::string &objectName)
Static function to cast a Function to SeriesFunction.
Definition: FunctionSeries.C:175