mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
25 lines
493 B
C++
25 lines
493 B
C++
#include "PostprocessOperationAvMassVelocity.hpp"
|
|
|
|
namespace pFlow::postprocessData
|
|
{
|
|
|
|
PostprocessOperationAvMassVelocity::PostprocessOperationAvMassVelocity
|
|
(
|
|
const dictionary &opDict,
|
|
const regionPoints ®Points,
|
|
fieldsDataBase &fieldsDB
|
|
)
|
|
:
|
|
PostprocessOperationAverage
|
|
(
|
|
opDict,
|
|
opDict.getValOrSet<word>("velocityName", "velocity"),
|
|
opDict.getValOrSet<word>("massName", "mass"),
|
|
"all",
|
|
regPoints,
|
|
fieldsDB
|
|
)
|
|
{
|
|
}
|
|
|
|
} |