mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
This is a small, simple tutorial for testing the implementation of large, incomplete data bases. In this tutorial case, rStatAnalysis is used as post-processor and it uses a data base in memory, which is smaller than the number of snapshots on disk.
95 lines
1.7 KiB
Plaintext
95 lines
1.7 KiB
Plaintext
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.4 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "";
|
|
case "";
|
|
instance "";
|
|
local "";
|
|
|
|
class dictionary;
|
|
object recProperties;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
//===========================================================================//
|
|
// sub-models & settings
|
|
|
|
|
|
//recModel standardRecModel;
|
|
recModel gerhardsRecModel;
|
|
|
|
verbose false;
|
|
|
|
recNorm sqrDiffNorm;
|
|
|
|
recPath simpleRandomPath;
|
|
|
|
|
|
volScalarFields
|
|
(
|
|
);
|
|
|
|
volVectorFields
|
|
(
|
|
U
|
|
);
|
|
|
|
surfaceScalarFields
|
|
(
|
|
);
|
|
|
|
//verbose;
|
|
|
|
|
|
|
|
//===========================================================================//
|
|
// sub-model properties
|
|
|
|
standardRecModelProps
|
|
{
|
|
dataBase ".";
|
|
|
|
skipZero on;
|
|
}
|
|
|
|
gerhardsRecModelProps
|
|
{
|
|
dataBase ".";
|
|
|
|
skipZero on;
|
|
|
|
numDataBaseFields 11;
|
|
|
|
verboseVacate on;
|
|
}
|
|
|
|
sqrDiffNormProps
|
|
{
|
|
fieldType "volVectorField";
|
|
fieldName U;
|
|
|
|
//verbose false;
|
|
}
|
|
|
|
simpleRandomPathProps
|
|
{
|
|
}
|
|
|
|
noRecStatAnalysis
|
|
{
|
|
}
|
|
|
|
// ************************************************************************* //
|