https://mooseframework.inl.gov
CubicTransitionFunction.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 
13 #include "CubicTransition.h"
14 
23 {
24 public:
26 
27  using Function::value;
28  virtual Real value(Real t, const Point & p) const;
29  virtual RealVectorValue gradient(Real t, const Point & p) const;
30 
31 protected:
36 
39 
40 public:
42 };
Cubic polynomial transition between two functions of one variable.
CubicTransitionFunction(const InputParameters &parameters)
Base class for functions to smoothly transition from one function to another.
virtual RealVectorValue gradient(Real t, const Point &p) const
static InputParameters validParams()
virtual Real value(Real t, const Point &p) const
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
CubicTransition _transition
Transition object.
const InputParameters & parameters() const
Computes a cubic polynomial transition between two functions.
virtual Real value(Real t, const Point &p) const
const Real & _df2dx_end_point
Derivative of second function at end point.
const Real & _df1dx_end_point
Derivative of first function at end point.