mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Added new filmFlux function object
Calculates the mass flux for surface film models.
Example usage:
filmFlux
{
type filmFlux;
writeControl writeTime;
result myPhi; // optional
}
This commit is contained in:
@ -63,6 +63,36 @@ functions
|
||||
internalField yes;
|
||||
patches ();
|
||||
}
|
||||
|
||||
filmFlux
|
||||
{
|
||||
type filmFlux;
|
||||
writeControl writeTime;
|
||||
result myPhi; // optional
|
||||
}
|
||||
|
||||
filmPatchFluxIn
|
||||
{
|
||||
type surfaceFieldValue;
|
||||
libs (fieldFunctionObjects);
|
||||
region wallFilmRegion;
|
||||
fields (myPhi);
|
||||
operation sum;
|
||||
regionType patch;
|
||||
name inlet;
|
||||
writeFields no;
|
||||
}
|
||||
filmPatchFluxOut
|
||||
{
|
||||
type surfaceFieldValue;
|
||||
libs (fieldFunctionObjects);
|
||||
region wallFilmRegion;
|
||||
fields (myPhi);
|
||||
operation sum;
|
||||
regionType patch;
|
||||
name outlet;
|
||||
writeFields no;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
Reference in New Issue
Block a user