mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
22 lines
462 B
C++
22 lines
462 B
C++
// -*- C++ -*-
|
|
|
|
// ************************************************************************* //
|
|
|
|
// Create additional volume fields (for sampling)
|
|
derivedFields
|
|
{
|
|
type derivedFields;
|
|
libs (fieldFunctionObjects);
|
|
log true;
|
|
|
|
writeControl none;
|
|
executeControl timeStep;
|
|
executeInterval 1;
|
|
|
|
derived (rhoU pTotal);
|
|
|
|
rhoRef 1.25;
|
|
}
|
|
|
|
// ************************************************************************* //
|