Thermo parcel surface film model. More...
Public Types | |
enum | interactionType { itAbsorb, itBounce, itSplashBai } |
Public Member Functions | |
interactionType | interactionTypeEnum (const word &it) const |
word | interactionTypeStr (const interactionType &it) const |
TypeName ("thermoSurfaceFilm") | |
Runtime type information. More... | |
ThermoSurfaceFilm (const dictionary &dict, CloudType &owner) | |
Construct from components. More... | |
ThermoSurfaceFilm (const ThermoSurfaceFilm< CloudType > &sfm) | |
Construct copy. More... | |
virtual autoPtr< SurfaceFilmModel< CloudType > > | clone () const |
Construct and return a clone using supplied owner cloud. More... | |
virtual | ~ThermoSurfaceFilm () |
Destructor. More... | |
virtual bool | transferParcel (parcelType &p, const polyPatch &pp, bool &keepParticle) |
Transfer parcel from cloud to surface film. More... | |
virtual void | info (Ostream &os) |
Write surface film info to stream. More... | |
![]() | |
TypeName ("surfaceFilmModel") | |
Runtime type information. More... | |
declareRunTimeSelectionTable (autoPtr, SurfaceFilmModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
Declare runtime constructor selection table. More... | |
SurfaceFilmModel (CloudType &owner) | |
Construct null from owner. More... | |
SurfaceFilmModel (const dictionary &dict, CloudType &owner, const word &type) | |
Construct from components. More... | |
SurfaceFilmModel (const SurfaceFilmModel< CloudType > &sfm) | |
Construct copy. More... | |
virtual autoPtr< SurfaceFilmModel< CloudType > > | clone () const=0 |
Construct and return a clone. More... | |
virtual | ~SurfaceFilmModel () |
Destructor. More... | |
const dimensionedVector & | g () const |
Return gravitational acceleration constant. More... | |
label | nParcelsTransferred () const |
Return const access to the number of parcels transferred to the. More... | |
label & | nParcelsTransferred () |
Return non-const access to the number of parcels transferred to. More... | |
label | nParcelsInjected () const |
Return const access to the number of parcels injected from the. More... | |
label & | nParcelsInjected () |
Return non-const access to the number of parcels injected from. More... | |
void | inject (TrackData &td) |
Inject parcels into the cloud. More... | |
Static Public Attributes | |
static wordList | interactionTypeNames_ |
Word descriptions of interaction type names. More... | |
Protected Types | |
typedef CloudType::parcelType | parcelType |
Convenience typedef to the cloud's parcel type. More... | |
![]() | |
typedef CloudType::parcelType | parcelType |
Convenience typedef to the cloud's parcel type. More... | |
Protected Member Functions | |
vector | tangentVector (const vector &v) const |
Return a vector tangential to input vector, v. More... | |
vector | splashDirection (const vector &tanVec1, const vector &tanVec2, const vector &nf) const |
Return splashed parcel direction. More... | |
void | absorbInteraction (regionModels::surfaceFilmModels::surfaceFilmModel &filmModel, const parcelType &p, const polyPatch &pp, const label faceI, const scalar mass, bool &keepParticle) |
Absorb parcel into film. More... | |
void | bounceInteraction (parcelType &p, const polyPatch &pp, const label faceI, bool &keepParticle) const |
Bounce parcel (flip parcel normal velocity) More... | |
void | drySplashInteraction (regionModels::surfaceFilmModels::surfaceFilmModel &filmModel, const parcelType &p, const polyPatch &pp, const label faceI, bool &keepParticle) |
Parcel interaction with dry surface. More... | |
void | wetSplashInteraction (regionModels::surfaceFilmModels::surfaceFilmModel &filmModel, parcelType &p, const polyPatch &pp, const label faceI, bool &keepParticle) |
Parcel interaction with wetted surface. More... | |
void | splashInteraction (regionModels::surfaceFilmModels::surfaceFilmModel &filmModel, const parcelType &p, const polyPatch &pp, const label faceI, const scalar mRatio, const scalar We, const scalar Wec, const scalar sigma, bool &keepParticle) |
Bai parcel splash interaction model. More... | |
virtual void | cacheFilmFields (const label filmPatchI, const label primaryPatchI, const regionModels::surfaceFilmModels::surfaceFilmModel &filmModel) |
Cache the film fields in preparation for injection. More... | |
virtual void | setParcelProperties (parcelType &p, const label filmFaceI) const |
Set the individual parcel properties. More... | |
Protected Attributes | |
cachedRandom & | rndGen_ |
Reference to the cloud random number generator. More... | |
const SLGThermo & | thermo_ |
Reference to the cloud thermo package. More... | |
scalarList | TFilmPatch_ |
Film temperature / patch face. More... | |
scalarList | CpFilmPatch_ |
Film specific heat capacity / patch face. More... | |
interactionType | interactionType_ |
Interaction type enumeration. More... | |
scalar | deltaWet_ |
Film thickness beyond which patch is assumed to be wet. More... | |
label | splashParcelType_ |
Splash parcel type label - id assigned to identify parcel for. More... | |
label | parcelsPerSplash_ |
Number of new parcels resulting from splash event. More... | |
scalar | Adry_ |
Dry surface roughness coefficient. More... | |
scalar | Awet_ |
Wet surface roughness coefficient. More... | |
scalar | Cf_ |
Skin friction typically in the range 0.6 < Cf < 0.8. More... | |
label | nParcelsSplashed_ |
Counter for number of new splash parcels. More... | |
![]() | |
const dimensionedVector & | g_ |
Gravitational acceleration constant. More... | |
label | ejectedParcelType_ |
Ejected parcel type label - id assigned to identify parcel for. More... | |
scalarList | massParcelPatch_ |
Parcel mass / patch face. More... | |
scalarList | diameterParcelPatch_ |
Parcel diameter / patch face. More... | |
List< vector > | UFilmPatch_ |
Film velocity / patch face. More... | |
scalarList | rhoFilmPatch_ |
Film density / patch face. More... | |
scalarListList | deltaFilmPatch_ |
Film height of all film patches / patch face. More... | |
label | nParcelsTransferred_ |
Number of parcels transferred to the film model. More... | |
label | nParcelsInjected_ |
Number of parcels injected from the film model. More... | |
Additional Inherited Members | |
![]() | |
static autoPtr< SurfaceFilmModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
Selector. More... | |
Thermo parcel surface film model.
Splash model references:
Bai and Gosman, `Mathematical modelling of wall films formed by impinging sprays', SAE 960626, 1996
Bai et al, `Modelling off gasoline spray impingement', Atom. Sprays, vol 12, pp 1-27, 2002
Definition at line 63 of file ThermoSurfaceFilm.H.
|
protected |
Convenience typedef to the cloud's parcel type.
Definition at line 97 of file ThermoSurfaceFilm.H.
enum interactionType |
Enumerator | |
---|---|
itAbsorb | |
itBounce | |
itSplashBai |
Definition at line 72 of file ThermoSurfaceFilm.H.
ThermoSurfaceFilm | ( | const dictionary & | dict, |
CloudType & | owner | ||
) |
Construct from components.
Definition at line 478 of file ThermoSurfaceFilm.C.
References Foam::endl(), and Foam::Info.
ThermoSurfaceFilm | ( | const ThermoSurfaceFilm< CloudType > & | sfm | ) |
Construct copy.
Definition at line 522 of file ThermoSurfaceFilm.C.
|
virtual |
Destructor.
Definition at line 545 of file ThermoSurfaceFilm.C.
Foam::ThermoSurfaceFilm< CloudType >::interactionType interactionTypeEnum | ( | const word & | it | ) | const |
Definition at line 49 of file ThermoSurfaceFilm.C.
References Foam::abort(), Foam::FatalError, FatalErrorInFunction, and forAll.
Foam::word interactionTypeStr | ( | const interactionType & | it | ) | const |
Definition at line 70 of file ThermoSurfaceFilm.C.
References Foam::abort(), Foam::FatalError, and FatalErrorInFunction.
|
protected |
Return a vector tangential to input vector, v.
Definition at line 86 of file ThermoSurfaceFilm.C.
References Foam::mag(), and Vector< scalar >::zero.
|
protected |
Return splashed parcel direction.
Definition at line 106 of file ThermoSurfaceFilm.C.
References Foam::constant::atomic::alpha, Foam::cos(), Foam::mag(), Foam::constant::mathematical::pi(), Foam::sin(), and Foam::constant::mathematical::twoPi().
|
protected |
Absorb parcel into film.
Definition at line 131 of file ThermoSurfaceFilm.C.
References surfaceFilmModel::addSources(), Foam::endl(), PrimitivePatch< Face, FaceList, PointField, PointType >::faceNormals(), patchIdentifier::index(), Foam::Info, Foam::mag(), p, and Urel.
|
protected |
Bounce parcel (flip parcel normal velocity)
Definition at line 178 of file ThermoSurfaceFilm.C.
References Foam::endl(), PrimitivePatch< Face, FaceList, PointField, PointType >::faceNormals(), patchIdentifier::index(), Foam::Info, p, and Urel.
|
protected |
Parcel interaction with dry surface.
Definition at line 208 of file ThermoSurfaceFilm.C.
References Foam::endl(), PrimitivePatch< Face, FaceList, PointField, PointType >::faceNormals(), patchIdentifier::index(), Foam::Info, Foam::magSqr(), Foam::constant::physicoChemical::mu, liquidProperties::mu(), p, Foam::pow(), rho, Foam::constant::physicoChemical::sigma, liquidProperties::sigma(), Foam::sqr(), and Urel.
|
protected |
Parcel interaction with wetted surface.
Definition at line 264 of file ThermoSurfaceFilm.C.
References Foam::acos(), Foam::endl(), epsilon, PrimitivePatch< Face, FaceList, PointField, PointType >::faceNormals(), patchIdentifier::index(), Foam::Info, Foam::mag(), Foam::magSqr(), Foam::constant::physicoChemical::mu, liquidProperties::mu(), p, Foam::constant::mathematical::pi(), Foam::pow(), rho, Foam::constant::physicoChemical::sigma, liquidProperties::sigma(), Foam::sqr(), U, and Urel.
|
protected |
Bai parcel splash interaction model.
Definition at line 341 of file ThermoSurfaceFilm.C.
References Foam::cbrt(), Foam::meshTools::constrainDirection(), Foam::exp(), PrimitivePatch< Face, FaceList, PointField, PointType >::faceNormals(), forAll, patchIdentifier::index(), Foam::log(), Foam::mag(), Foam::magSqr(), Foam::max(), mesh, UPstream::myProcNo(), p, Foam::constant::mathematical::pi(), Foam::pow3(), Foam::constant::physicoChemical::sigma, Foam::sqr(), Foam::sqrt(), Urel, and y.
|
protectedvirtual |
Cache the film fields in preparation for injection.
Reimplemented from SurfaceFilmModel< CloudType >.
Definition at line 625 of file ThermoSurfaceFilm.C.
References GeometricField::boundaryField(), SurfaceFilmModel::cacheFilmFields(), surfaceFilmModel::Cp(), regionModel::toPrimary(), and surfaceFilmModel::Ts().
|
protectedvirtual |
Set the individual parcel properties.
Reimplemented from SurfaceFilmModel< CloudType >.
Definition at line 648 of file ThermoSurfaceFilm.C.
References p, and SurfaceFilmModel::setParcelProperties().
TypeName | ( | "thermoSurfaceFilm" | ) |
Runtime type information.
|
inlinevirtual |
Construct and return a clone using supplied owner cloud.
Definition at line 256 of file ThermoSurfaceFilm.H.
|
virtual |
Transfer parcel from cloud to surface film.
Returns true if parcel is to be transferred
Implements SurfaceFilmModel< CloudType >.
Definition at line 553 of file ThermoSurfaceFilm.C.
References Foam::abort(), Foam::FatalError, FatalErrorInFunction, patchIdentifier::index(), regionModel::isRegionPatch(), p, and polyPatch::whichFace().
|
virtual |
Write surface film info to stream.
Reimplemented from SurfaceFilmModel< CloudType >.
Definition at line 662 of file ThermoSurfaceFilm.C.
References Foam::endl(), SurfaceFilmModel::info(), and Foam::returnReduce().
|
static |
Word descriptions of interaction type names.
Definition at line 80 of file ThermoSurfaceFilm.H.
|
protected |
Reference to the cloud random number generator.
Definition at line 100 of file ThermoSurfaceFilm.H.
|
protected |
Reference to the cloud thermo package.
Definition at line 103 of file ThermoSurfaceFilm.H.
|
protected |
Film temperature / patch face.
Definition at line 109 of file ThermoSurfaceFilm.H.
|
protected |
Film specific heat capacity / patch face.
Definition at line 112 of file ThermoSurfaceFilm.H.
|
protected |
Interaction type enumeration.
Definition at line 118 of file ThermoSurfaceFilm.H.
|
protected |
Film thickness beyond which patch is assumed to be wet.
Definition at line 121 of file ThermoSurfaceFilm.H.
|
protected |
Splash parcel type label - id assigned to identify parcel for.
post-processing. If not specified, defaults to originating cloud type
Definition at line 126 of file ThermoSurfaceFilm.H.
|
protected |
Number of new parcels resulting from splash event.
Definition at line 129 of file ThermoSurfaceFilm.H.
|
protected |
Dry surface roughness coefficient.
= 2630 for dry interaction (ref. Bai)
Definition at line 137 of file ThermoSurfaceFilm.H.
|
protected |
Wet surface roughness coefficient.
= 1320 for wet interaction (ref. Bai)
Definition at line 141 of file ThermoSurfaceFilm.H.
|
protected |
Skin friction typically in the range 0.6 < Cf < 0.8.
Definition at line 145 of file ThermoSurfaceFilm.H.
|
protected |
Counter for number of new splash parcels.
Definition at line 148 of file ThermoSurfaceFilm.H.
Copyright © 2011-2018 OpenFOAM | OPENFOAM® is a registered trademark of OpenCFD Ltd.