mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-09-16 04:16:04 +00:00
20 lines
461 B
C++
20 lines
461 B
C++
![]() |
#include "PostprocessOperationAvMassVelocity.hpp"
|
||
|
|
||
|
pFlow::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
|
||
|
)
|
||
|
{
|
||
|
}
|