Templated function that returns a constant value. More...


Public Member Functions | |
| TypeName ("constant") | |
| Runtime type information. More... | |
| ConstantField (const polyPatch &pp, const word &entryName, const Type &uniformValue, const dictionary &dict=dictionary::null, const bool faceValues=true) | |
| Construct from a uniform value. More... | |
| ConstantField (const polyPatch &pp, const word &entryName, const bool isUniform, const Type &uniformValue, const Field< Type > &fieldValues, const dictionary &dict=dictionary::null, const bool faceValues=true) | |
| Construct from components. More... | |
| ConstantField (const polyPatch &pp, const word &redirectType, const word &entryName, const dictionary &dict, const bool faceValues=true) | |
| Construct from entry name and dictionary. More... | |
| ConstantField (const polyPatch &pp, const entry *eptr, const word &entryName, const dictionary &dict, const bool faceValues=true) | |
| Construct from primitive entry, entry name and dictionary. More... | |
| ConstantField (const ConstantField< Type > &rhs, const polyPatch &pp) | |
| Copy construct setting patch. More... | |
| ConstantField (const ConstantField< Type > &rhs) | |
| Copy construct. More... | |
| virtual tmp< PatchFunction1< Type > > | clone () const |
| Return a clone. More... | |
| virtual tmp< PatchFunction1< Type > > | clone (const polyPatch &pp) const |
| Return a clone, setting the patch. More... | |
| virtual | ~ConstantField ()=default |
| Destructor. More... | |
| virtual bool | constant () const |
| Value is independent of x. More... | |
| virtual bool | uniform () const |
| Is value uniform (i.e. independent of coordinate) More... | |
| virtual tmp< Field< Type > > | value (const scalar x) const |
| Return constant value. More... | |
| virtual tmp< Field< Type > > | integrate (const scalar x1, const scalar x2) const |
| Integrate between two values. More... | |
| virtual void | autoMap (const FieldMapper &mapper) |
| Map (and resize as needed) from self given a mapping object. More... | |
| virtual void | rmap (const PatchFunction1< Type > &pf1, const labelList &addr) |
| Reverse map the given PatchFunction1 onto this PatchFunction1. More... | |
| virtual void | writeData (Ostream &os) const |
| Write in dictionary format. More... | |
Public Member Functions inherited from PatchFunction1< Type > | |
| TypeName ("PatchFunction1") declareRunTimeSelectionTable(autoPtr | |
| Runtime type information. More... | |
| PatchFunction1 (const polyPatch &pp, const word &entryName, const bool faceValues=true) | |
| Construct from polyPatch and entry name. More... | |
| PatchFunction1 (const polyPatch &pp, const word &entryName, const dictionary &dict, const bool faceValues=true) | |
| Construct from polyPatch, dictionary and entry name. More... | |
| PatchFunction1 (const PatchFunction1< Type > &rhs, const polyPatch &pp) | |
| Copy construct setting patch. More... | |
| PatchFunction1 (const PatchFunction1< Type > &rhs) | |
| Copy construct. More... | |
| virtual | ~PatchFunction1 ()=default |
| Destructor. More... | |
| virtual bool | good () const |
| Can function be evaluated? More... | |
| virtual tmp< pointField > | localPosition (const pointField &globalPos) const |
| Helper: optionally convert coordinates to local coordinates. More... | |
| virtual tmp< Field< Type > > | transform (const Field< Type > &fld) const |
| Apply optional transformation. More... | |
| virtual tmp< Field< Type > > | transform (const tmp< Field< Type >> &tfld) const |
| Apply optional transformation. More... | |
Public Member Functions inherited from patchFunction1Base | |
| patchFunction1Base (const polyPatch &pp, const word &entryName, const bool faceValues=true) | |
| Construct from polyPatch and entry name. More... | |
| patchFunction1Base (const polyPatch &pp, const word &entryName, const dictionary &dict, const bool faceValues=true) | |
| Construct from polyPatch, dictionary and entry name. More... | |
| patchFunction1Base (const patchFunction1Base &rhs) | |
| Copy construct. More... | |
| patchFunction1Base (const patchFunction1Base &rhs, const polyPatch &pp) | |
| Copy construct setting patch. More... | |
| virtual | ~patchFunction1Base ()=default |
| Destructor. More... | |
| const word & | name () const noexcept |
| The name of the entry. More... | |
| const polyPatch & | patch () const noexcept |
| Reference to the patch. More... | |
| bool | faceValues () const noexcept |
| Generate face or point values on patch? More... | |
| label | size () const |
| Number of faces or points on the patch. More... | |
| const objectRegistry * | whichDb () const |
| Return the associated registry (ie, the mesh) More... | |
| const objectRegistry & | obr () const |
| Return the object registry (ie, the mesh) More... | |
| const Time & | time () const |
| Return false: function not created with time database. More... | |
| virtual void | userTimeToTime (const Time &t) |
| Convert time. More... | |
Public Member Functions inherited from refCount | |
| constexpr | refCount () noexcept |
| Default construct, initializing count to 0. More... | |
| int | use_count () const noexcept |
| Return the current reference count. More... | |
| bool | unique () const noexcept |
| Return true if the reference count is zero. More... | |
| void | operator++ () noexcept |
| Increment the reference count. More... | |
| void | operator++ (int) noexcept |
| Increment the reference count. More... | |
| void | operator-- () noexcept |
| Decrement the reference count. More... | |
| void | operator-- (int) noexcept |
| Decrement the reference count. More... | |
Additional Inherited Members | |
Public Types inherited from PatchFunction1< Type > | |
| typedef Field< Type > | returnType |
| The return type is a field of values. More... | |
Static Public Member Functions inherited from PatchFunction1< Type > | |
| template<class Derived > | |
| static tmp< PatchFunction1< Type > > | Clone (const Derived &fun) |
| Clone a PatchFunction1. More... | |
| template<class Derived > | |
| static tmp< PatchFunction1< Type > > | Clone (const Derived &fun, const polyPatch &pp) |
| Clone a PatchFunction1 with a patch. More... | |
| static autoPtr< PatchFunction1< Type > > | New (const polyPatch &pp, const word &entryName, const dictionary &dict, const bool faceValues=true, const bool mandatory=true) |
| Selector. More... | |
| static autoPtr< PatchFunction1< Type > > | NewCompat (const polyPatch &pp, const word &entryName, std::initializer_list< std::pair< const char *, int >> compat, const dictionary &dict, const bool faceValues=true, const bool mandatory=true) |
| Compatibility selector. More... | |
| static autoPtr< PatchFunction1< Type > > | NewIfPresent (const polyPatch &pp, const word &entryName, const dictionary &dict, const bool faceValues=true) |
| An optional selector. More... | |
| static refPtr< PatchFunction1< Type > > | New (HashPtrTable< PatchFunction1< Type >> &cache, const polyPatch &pp, const word &entryName, const dictionary &dict, enum keyType::option matchOpt=keyType::LITERAL, const bool faceValues=true, const bool mandatory=true) |
| Selector with external storage. This also allows wildcard matches in a dictionary. More... | |
Public Attributes inherited from PatchFunction1< Type > | |
| PatchFunction1 | |
| dictionary | |
| const polyPatch & | pp |
| const polyPatch const word & | type |
| const polyPatch const word const word & | entryName |
| const polyPatch const word const word const dictionary & | dict |
| const polyPatch const word const word const dictionary const bool | faceValues |
| const polyPatch const word const word const dictionary const bool | pp |
| const polyPatch const word const word const dictionary const bool | type |
| const polyPatch const word const word const dictionary const bool | entryName |
| const polyPatch const word const word const dictionary const bool | dict |
Protected Member Functions inherited from PatchFunction1< Type > | |
| void | operator= (const PatchFunction1< Type > &)=delete |
| No copy assignment. More... | |
Protected Member Functions inherited from patchFunction1Base | |
| void | operator= (const patchFunction1Base &)=delete |
| No copy assignment. More... | |
Protected Attributes inherited from PatchFunction1< Type > | |
| coordinateScaling< Type > | coordSys_ |
| Optional local coordinate system and scaling. More... | |
Protected Attributes inherited from patchFunction1Base | |
| const word | name_ |
| Name of entry. More... | |
| const polyPatch & | patch_ |
| Reference to the patch. More... | |
| const bool | faceValues_ |
| Generate face or point values on patch. More... | |
Templated function that returns a constant value.
Usage - for entry <entryName> returning the value <value>:
<entryName> constant <value>;
or
<entryName>
{
type constant;
value <value>;
}
Definition at line 62 of file ConstantField.H.
| ConstantField | ( | const polyPatch & | pp, |
| const word & | entryName, | ||
| const Type & | uniformValue, | ||
| const dictionary & | dict = dictionary::null, |
||
| const bool | faceValues = true |
||
| ) |
Construct from a uniform value.
Definition at line 27 of file ConstantField.C.
| ConstantField | ( | const polyPatch & | pp, |
| const word & | entryName, | ||
| const bool | isUniform, | ||
| const Type & | uniformValue, | ||
| const Field< Type > & | fieldValues, | ||
| const dictionary & | dict = dictionary::null, |
||
| const bool | faceValues = true |
||
| ) |
Construct from components.
Definition at line 44 of file ConstantField.C.
References dict, Foam::exit(), Foam::FatalIOError, FatalIOErrorInFunction, Foam::nl, pp(), and UList< Type >::size().

| ConstantField | ( | const polyPatch & | pp, |
| const word & | redirectType, | ||
| const word & | entryName, | ||
| const dictionary & | dict, | ||
| const bool | faceValues = true |
||
| ) |
Construct from entry name and dictionary.
Definition at line 190 of file ConstantField.C.
| ConstantField | ( | const polyPatch & | pp, |
| const entry * | eptr, | ||
| const word & | entryName, | ||
| const dictionary & | dict, | ||
| const bool | faceValues = true |
||
| ) |
Construct from primitive entry, entry name and dictionary.
Definition at line 218 of file ConstantField.C.
|
explicit |
Copy construct setting patch.
Definition at line 246 of file ConstantField.C.
References Foam::Zero.
|
explicit |
Copy construct.
Definition at line 268 of file ConstantField.C.
|
virtualdefault |
Destructor.
| TypeName | ( | "constant" | ) |
Runtime type information.
|
inlinevirtual |
Return a clone.
Implements PatchFunction1< Type >.
Definition at line 182 of file ConstantField.H.
References PatchFunction1< Type >::Clone().

|
inlinevirtual |
Return a clone, setting the patch.
Implements PatchFunction1< Type >.
Definition at line 190 of file ConstantField.H.
References PatchFunction1< Type >::Clone(), and PatchFunction1< Type >::pp.

|
inlinevirtual |
Value is independent of x.
Reimplemented from PatchFunction1< Type >.
Definition at line 207 of file ConstantField.H.
|
inlinevirtual |
Is value uniform (i.e. independent of coordinate)
Implements PatchFunction1< Type >.
Definition at line 215 of file ConstantField.H.
References PatchFunction1< Type >::uniform().

|
inlinevirtual |
Return constant value.
Reimplemented from PatchFunction1< Type >.
Definition at line 28 of file ConstantFieldI.H.
References Foam::transform().

|
inlinevirtual |
Integrate between two values.
Reimplemented from PatchFunction1< Type >.
Definition at line 44 of file ConstantFieldI.H.
References Foam::transform().

|
virtual |
Map (and resize as needed) from self given a mapping object.
Reimplemented from PatchFunction1< Type >.
Definition at line 280 of file ConstantField.C.
|
virtual |
Reverse map the given PatchFunction1 onto this PatchFunction1.
Reimplemented from PatchFunction1< Type >.
Definition at line 296 of file ConstantField.C.
|
virtual |
Write in dictionary format.
Reimplemented from PatchFunction1< Type >.
Definition at line 308 of file ConstantField.C.
References Foam::name(), os(), and writeData().
