Mushy Layer  1.0
Public Member Functions | Public Attributes | List of all members
CoefficientInterpolatorLinearFace Class Reference

Linear coefficient interpolator (face centred) More...

#include <CoefficientInterpolatorLinearFace.H>

Inheritance diagram for CoefficientInterpolatorLinearFace:
CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >

Public Member Functions

 CoefficientInterpolatorLinearFace (int a_numComps=1)
 default constructor
 
virtual void interpolate (LevelData< FluxBox > &a_result, Real a_time)
 Interpolate coefficient.
 
virtual void interpolate (LevelData< FluxBox > &a_result, const LevelData< FluxBox > &a_solution, Real a_time)
 
virtual bool dependsUponSolution () const
 
virtual void interpolatePrime (LevelData< FluxBox > &a_prime, const LevelData< FluxBox > &a_solution, Real a_time)
 
virtual void solve (LevelData< FluxBox > &a_phi, const LevelData< FluxBox > &a_f, Real a_time, const LevelData< FluxBox > &a_phi0, Real a_tolerance)
 
void define (RefCountedPtr< LevelData< FluxBox > > a_coefOld, RefCountedPtr< LevelData< FluxBox > > a_coefNew, Real a_timeOld, Real a_timeNew)
 Define.
 
- Public Member Functions inherited from CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >
 CoefficientInterpolator (int a_numComps)
 
int numComps () const
 
void NewtonRaphson (SolutionLevelDataType &a_phi, const SolutionLevelDataType &a_f, Real a_time, const SolutionLevelDataType &a_phi0, Real a_tolerance)
 

Public Attributes

RefCountedPtr< LevelData< FluxBox > > m_coefOld
 Coefficient at old time.
 
RefCountedPtr< LevelData< FluxBox > > m_coefNew
 Coefficient at new time.
 
Real m_timeOld
 Old time.
 
Real m_timeNew
 New time.
 

Additional Inherited Members

- Public Types inherited from CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >
typedef LevelData< FluxBoxLevelDataType
 
typedef LevelData< FluxBoxSolutionLevelDataType
 

Detailed Description

Linear coefficient interpolator (face centred)

Class to get time depdendent (face centred) coefficients by interpolating linearly in time.

Member Function Documentation

◆ dependsUponSolution()

bool CoefficientInterpolatorLinearFace::dependsUponSolution ( ) const
virtual

Returns true if the coefficient depends on the solution to the partial differential equation (rendering it nonlinear), false otherwise. By default, the coefficient is assumed not to depend upon the solution.

Reimplemented from CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >.

◆ interpolate()

void CoefficientInterpolatorLinearFace::interpolate ( LevelData< FluxBox > &  a_result,
const LevelData< FluxBox > &  a_solution,
Real  a_time 
)
virtual

Interpolate the coefficient at the given time, placing the result in the given LevelData object. This method assumes that the coefficient depends upon the solution to the partial differential equation in question, so the solution is passed into it as an argument.

Parameters
a_resultThe LevelData object that will store the result.
a_solutionThe solution to the partial differential equation.
a_timeThe time at which the coefficient is to be evaluated.

Reimplemented from CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >.

◆ interpolatePrime()

void CoefficientInterpolatorLinearFace::interpolatePrime ( LevelData< FluxBox > &  a_prime,
const LevelData< FluxBox > &  a_solution,
Real  a_time 
)
virtual

Computes the derivative of the coefficient with respect to the solution at the desired time. By default, this sets a_deriv to 0.

Parameters
a_primeThe coefficient derivative data will be stored here.
a_solutionThe solution to the partial differential equation.
a_timeThe time at which to compute the coefficient data.

Reimplemented from CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >.

◆ solve()

void CoefficientInterpolatorLinearFace::solve ( LevelData< FluxBox > &  a_phi,
const LevelData< FluxBox > &  a_f,
Real  a_time,
const LevelData< FluxBox > &  a_phi0,
Real  a_tolerance 
)
virtual

This virtual void method performs the iterative nonlinear solve $A(\phi) \phi - f(\vec{x}) = 0$ for $\phi$.

Parameters
a_phiThe solution to the equation, $\phi$, will be stored here.
a_fThe term $f(\vec{x})$ in the equation.
a_timeThe time at which the equation is solved.
a_phi0The initial estimate for $\phi$.
a_toleranceThe threshold for the error in the equation that dictates when iteration should cease.

Reimplemented from CoefficientInterpolator< LevelData< FluxBox >, LevelData< FluxBox > >.


The documentation for this class was generated from the following files: