Basic first-order Euler implicit/explicit ddt using only the current and previous time-step values. More...
Public Types | |
typedef ddtScheme< Type >::fluxFieldType | fluxFieldType |
Public Types inherited from ddtScheme< Type > | |
typedef SurfaceField< typename flux< Type >::type > | fluxFieldType |
Public Member Functions | |
TypeName ("Euler") | |
Runtime type information. More... | |
EulerDdtScheme (const fvMesh &mesh) | |
Construct from mesh. More... | |
EulerDdtScheme (const fvMesh &mesh, Istream &is) | |
Construct from mesh and Istream. More... | |
EulerDdtScheme (const EulerDdtScheme &)=delete | |
Disallow default bitwise copy construction. More... | |
virtual tmp< VolField< Type > > | fvcDdt (const dimensioned< Type > &) |
virtual tmp< VolField< Type > > | fvcDdt (const VolField< Type > &) |
virtual tmp< VolField< Type > > | fvcDdt (const dimensionedScalar &, const VolField< Type > &) |
virtual tmp< VolField< Type > > | fvcDdt (const volScalarField &, const VolField< Type > &) |
virtual tmp< VolField< Type > > | fvcDdt (const volScalarField &alpha, const volScalarField &rho, const VolField< Type > &psi) |
virtual tmp< SurfaceField< Type > > | fvcDdt (const SurfaceField< Type > &) |
virtual tmp< fvMatrix< Type > > | fvmDdt (const VolField< Type > &) |
virtual tmp< fvMatrix< Type > > | fvmDdt (const dimensionedScalar &, const VolField< Type > &) |
virtual tmp< fvMatrix< Type > > | fvmDdt (const volScalarField &, const VolField< Type > &) |
virtual tmp< fvMatrix< Type > > | fvmDdt (const volScalarField &alpha, const volScalarField &rho, const VolField< Type > &psi) |
virtual tmp< fluxFieldType > | fvcDdtUfCorr (const VolField< Type > &U, const SurfaceField< Type > &Uf) |
virtual tmp< fluxFieldType > | fvcDdtPhiCorr (const VolField< Type > &U, const fluxFieldType &phi) |
virtual tmp< fluxFieldType > | fvcDdtUfCorr (const volScalarField &rho, const VolField< Type > &U, const SurfaceField< Type > &rhoUf) |
virtual tmp< fluxFieldType > | fvcDdtPhiCorr (const volScalarField &rho, const VolField< Type > &U, const fluxFieldType &phi) |
virtual tmp< fluxFieldType > | fvcDdtUfCorr (const volScalarField &alpha, const volScalarField &rho, const VolField< Type > &U, const SurfaceField< Type > &Uf) |
virtual tmp< fluxFieldType > | fvcDdtPhiCorr (const volScalarField &alpha, const volScalarField &rho, const VolField< Type > &U, const fluxFieldType &phi) |
virtual tmp< surfaceScalarField > | meshPhi (const VolField< Type > &) |
virtual tmp< scalarField > | meshPhi (const VolField< Type > &, const label patchi) |
void | operator= (const EulerDdtScheme &)=delete |
Disallow default bitwise assignment. More... | |
tmp< surfaceScalarField > | fvcDdtUfCorr (const VolField< scalar > &U, const SurfaceField< scalar > &Uf) |
tmp< surfaceScalarField > | fvcDdtPhiCorr (const volScalarField &U, const surfaceScalarField &phi) |
tmp< surfaceScalarField > | fvcDdtUfCorr (const volScalarField &rho, const volScalarField &U, const surfaceScalarField &Uf) |
tmp< surfaceScalarField > | fvcDdtPhiCorr (const volScalarField &rho, const volScalarField &U, const surfaceScalarField &phi) |
tmp< surfaceScalarField > | fvcDdtUfCorr (const volScalarField &alpha, const volScalarField &rho, const volScalarField &U, const surfaceScalarField &Uf) |
tmp< surfaceScalarField > | fvcDdtPhiCorr (const volScalarField &alpha, const volScalarField &rho, const volScalarField &U, const surfaceScalarField &phi) |
Public Member Functions inherited from ddtScheme< Type > | |
virtual const word & | type () const =0 |
Runtime type information. More... | |
declareRunTimeSelectionTable (tmp, ddtScheme, Istream,(const fvMesh &mesh, Istream &schemeData),(mesh, schemeData)) | |
ddtScheme (const fvMesh &mesh) | |
Construct from mesh. More... | |
ddtScheme (const fvMesh &mesh, Istream &) | |
Construct from mesh and Istream. More... | |
ddtScheme (const ddtScheme &)=delete | |
Disallow default bitwise copy construction. More... | |
virtual | ~ddtScheme () |
Destructor. More... | |
const fvMesh & | mesh () const |
Return mesh reference. More... | |
virtual tmp< surfaceScalarField > | fvcDdtPhiCoeff (const VolField< Type > &U, const fluxFieldType &phi, const fluxFieldType &phiCorr) |
virtual tmp< surfaceScalarField > | fvcDdtPhiCoeff (const VolField< Type > &U, const fluxFieldType &phi, const fluxFieldType &phiCorr, const volScalarField &rho) |
virtual tmp< surfaceScalarField > | fvcDdtPhiCoeff (const VolField< Type > &U, const fluxFieldType &phi) |
virtual tmp< surfaceScalarField > | fvcDdtPhiCoeff (const VolField< Type > &U, const fluxFieldType &phi, const volScalarField &rho) |
void | operator= (const ddtScheme &)=delete |
Disallow default bitwise assignment. More... | |
Public Member Functions inherited from refCount | |
int | count () const |
Return the current reference count. More... | |
bool | unique () const |
Return true if the reference count is zero. More... | |
void | operator++ () |
Increment the reference count. More... | |
void | operator++ (int) |
Increment the reference count. More... | |
void | operator-- () |
Decrement the reference count. More... | |
void | operator-- (int) |
Decrement the reference count. More... | |
void | operator= (const refCount &)=delete |
Disallow bitwise assignment. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from ddtScheme< Type > | |
static tmp< ddtScheme< Type > > | New (const fvMesh &mesh, Istream &schemeData) |
Return a pointer to a new ddtScheme created on freestore. More... | |
Protected Member Functions inherited from refCount | |
refCount () | |
Construct null initialising count to 0. More... | |
refCount (const refCount &)=delete | |
Disallow copy. More... | |
Protected Attributes inherited from ddtScheme< Type > | |
const fvMesh & | mesh_ |
Basic first-order Euler implicit/explicit ddt using only the current and previous time-step values.
Definition at line 55 of file EulerDdtScheme.H.
typedef ddtScheme<Type>::fluxFieldType fluxFieldType |
Definition at line 145 of file EulerDdtScheme.H.
|
inline |
Construct from mesh.
Definition at line 68 of file EulerDdtScheme.H.
|
inline |
Construct from mesh and Istream.
Definition at line 74 of file EulerDdtScheme.H.
|
delete |
Disallow default bitwise copy construction.
TypeName | ( | "Euler" | ) |
Runtime type information.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 45 of file EulerDdtScheme.C.
References dimensioned< Type >::dimensions(), Foam::dimTime, dimensioned< Type >::name(), GeometricField< Type, PatchField, GeoMesh >::New(), tmp< T >::ref(), dimensioned< Type >::value(), and Foam::Zero.
Implements ddtScheme< Type >.
Definition at line 96 of file EulerDdtScheme.C.
References GeometricField< Type, PatchField, GeoMesh >::boundaryField(), IOobject::name(), GeometricField< Type, PatchField, GeoMesh >::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), and dimensioned< Type >::value().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 134 of file EulerDdtScheme.C.
References GeometricField< Type, PatchField, GeoMesh >::boundaryField(), IOobject::name(), GeometricField< Type, PatchField, GeoMesh >::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and dimensioned< Type >::value().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 173 of file EulerDdtScheme.C.
References GeometricField< Type, PatchField, GeoMesh >::boundaryField(), IOobject::name(), GeometricField< Type, PatchField, GeoMesh >::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and dimensioned< Type >::value().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 215 of file EulerDdtScheme.C.
References alpha(), GeometricField< Type, PatchField, GeoMesh >::boundaryField(), IOobject::name(), GeometricField< Type, PatchField, GeoMesh >::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and dimensioned< Type >::value().
|
virtual |
Reimplemented from ddtScheme< Type >.
Definition at line 270 of file EulerDdtScheme.C.
References GeometricField< Type, PatchField, GeoMesh >::New(), and sf().
Implements ddtScheme< Type >.
Definition at line 289 of file EulerDdtScheme.C.
References lduMatrix::diag(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimTime, Foam::dimVol, GeometricField< Type, PatchField, GeoMesh >::oldTime(), tmp< T >::ref(), and fvMatrix< Type >::source().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 324 of file EulerDdtScheme.C.
References lduMatrix::diag(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimTime, Foam::dimVol, GeometricField< Type, PatchField, GeoMesh >::oldTime(), tmp< T >::ref(), rho, and fvMatrix< Type >::source().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 361 of file EulerDdtScheme.C.
References lduMatrix::diag(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimTime, Foam::dimVol, GeometricField< Type, PatchField, GeoMesh >::oldTime(), tmp< T >::ref(), rho, and fvMatrix< Type >::source().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 400 of file EulerDdtScheme.C.
References alpha(), lduMatrix::diag(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimTime, Foam::dimVol, GeometricField< Type, PatchField, GeoMesh >::oldTime(), tmp< T >::ref(), rho, and fvMatrix< Type >::source().
|
virtual |
Implements ddtScheme< Type >.
Definition at line 443 of file EulerDdtScheme.C.
References Foam::fvc::dotInterpolate(), IOobject::name(), Foam::compressible::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), and U.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 467 of file EulerDdtScheme.C.
References Foam::fvc::dotInterpolate(), IOobject::name(), Foam::compressible::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), and U.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 491 of file EulerDdtScheme.C.
References Foam::abort(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimVelocity, Foam::fvc::dotInterpolate(), Foam::FatalError, FatalErrorInFunction, IOobject::name(), Foam::compressible::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and U.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 554 of file EulerDdtScheme.C.
References Foam::abort(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimFlux, Foam::dimVelocity, Foam::fvc::dotInterpolate(), Foam::FatalError, FatalErrorInFunction, IOobject::name(), Foam::compressible::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and U.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 627 of file EulerDdtScheme.C.
References Foam::abort(), alpha(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimVelocity, Foam::FatalError, FatalErrorInFunction, Foam::fvc::interpolate(), IOobject::name(), Foam::compressible::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and U.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 670 of file EulerDdtScheme.C.
References Foam::abort(), alpha(), DimensionedField< Type, GeoMesh >::dimensions(), Foam::dimFlux, Foam::dimVelocity, Foam::fvc::dotInterpolate(), Foam::FatalError, FatalErrorInFunction, Foam::fvc::interpolate(), IOobject::name(), Foam::compressible::New(), GeometricField< Type, PatchField, GeoMesh >::oldTime(), rho, and U.
|
virtual |
Implements ddtScheme< Type >.
Definition at line 709 of file EulerDdtScheme.C.
|
virtual |
|
delete |
Disallow default bitwise assignment.
tmp< surfaceScalarField > fvcDdtUfCorr | ( | const VolField< scalar > & | U, |
const SurfaceField< scalar > & | Uf | ||
) |
tmp< surfaceScalarField > fvcDdtPhiCorr | ( | const volScalarField & | U, |
const surfaceScalarField & | phi | ||
) |
tmp< surfaceScalarField > fvcDdtUfCorr | ( | const volScalarField & | rho, |
const volScalarField & | U, | ||
const surfaceScalarField & | Uf | ||
) |
tmp< surfaceScalarField > fvcDdtPhiCorr | ( | const volScalarField & | rho, |
const volScalarField & | U, | ||
const surfaceScalarField & | phi | ||
) |
tmp< surfaceScalarField > fvcDdtUfCorr | ( | const volScalarField & | alpha, |
const volScalarField & | rho, | ||
const volScalarField & | U, | ||
const surfaceScalarField & | Uf | ||
) |
tmp< surfaceScalarField > fvcDdtPhiCorr | ( | const volScalarField & | alpha, |
const volScalarField & | rho, | ||
const volScalarField & | U, | ||
const surfaceScalarField & | phi | ||
) |