Go to the source code of this file.
|
Info<< nl<< "Creating autocorrelation functions."<< endl;IOdictionary mdTransportPropertiesDict(IOobject("mdTransportPropertiesDict", mesh.time().system(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE, false));const dictionary &autocorrelationFunctionDict(mdTransportPropertiesDict.subDict("autocorrelationFunctions"));Info<< tab<< "velocity"<< endl;const dictionary &velocityACFDict(autocorrelationFunctionDict.subDict("velocity"));correlationFunction< vector > | vacf (mesh, velocityACFDict, molecules.size()) |
|
bool | writeVacf (Switch(velocityACFDict.lookup("writeFile"))) |
|
Info<< tab<< "pressure"<< endl;const dictionary &pressureACFDict(autocorrelationFunctionDict.subDict("pressure"));correlationFunction< vector > | pacf (mesh, pressureACFDict, 1) |
| Pressure autocorrelation function. More...
|
|
bool | writePacf (Switch(pressureACFDict.lookup("writeFile"))) |
|
Info<< tab<< "heat flux"<< endl;const dictionary &heatFluxACFDict(autocorrelationFunctionDict.subDict("heatFlux"));correlationFunction< vector > | hfacf (mesh, heatFluxACFDict, 1) |
| Heat flux autocorrelation function. More...
|
|
bool | writeHFacf (Switch(heatFluxACFDict.lookup("writeFile"))) |
|
◆ vacf()
Info<< nl << "Creating autocorrelation functions." << endl;IOdictionary mdTransportPropertiesDict( IOobject ( "mdTransportPropertiesDict", mesh.time().system(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE, false ));const dictionary& autocorrelationFunctionDict( mdTransportPropertiesDict.subDict("autocorrelationFunctions"));Info << tab << "velocity" << endl;const dictionary& velocityACFDict( autocorrelationFunctionDict.subDict("velocity"));correlationFunction<vector> vacf |
( |
mesh |
, |
|
|
velocityACFDict |
, |
|
|
molecules. |
size() |
|
) |
| |
◆ writeVacf()
◆ pacf()
Info<< tab << "pressure" << endl;const dictionary& pressureACFDict( autocorrelationFunctionDict.subDict("pressure"));correlationFunction<vector> pacf |
( |
mesh |
, |
|
|
pressureACFDict |
, |
|
|
1 |
|
|
) |
| |
Pressure autocorrelation function.
Referenced by if().
◆ writePacf()
◆ hfacf()
Info<< tab << "heat flux" << endl;const dictionary& heatFluxACFDict( autocorrelationFunctionDict.subDict("heatFlux"));correlationFunction<vector> hfacf |
( |
mesh |
, |
|
|
heatFluxACFDict |
, |
|
|
1 |
|
|
) |
| |
Heat flux autocorrelation function.
Referenced by if().
◆ writeHFacf()