mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
41 lines
1.2 KiB
C++
Executable File
41 lines
1.2 KiB
C++
Executable File
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \ / O peration | Version: 2.1.x |
|
|
| \ / A nd | Web: www.OpenFOAM.org |
|
|
| \/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object probesDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
fields
|
|
(
|
|
T
|
|
);
|
|
|
|
outputControl timeStep; //outputTime;
|
|
outputInterval 10;
|
|
|
|
outputInterval 0.01;
|
|
|
|
|
|
// Locations to be probed.
|
|
probeLocations
|
|
(
|
|
// FYI: Overall domain bounding box (0 0 0) (0.2 0.05 0.5)
|
|
// (0.05 0.025 0.1) injection point; defined in constant/fvOptions
|
|
(0.05 0.025 0.15) // above injection point
|
|
(0.05 0.025 0.05) // below injection point
|
|
(0.1 0.025 0.1) // right of injection point
|
|
);
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|