/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      controlDict;    	
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     LDLFoam;

startFrom       startTime;

startTime       0.0;

stopAt          endTime;

endTime         4.25;

deltaT          0.00005;

writeControl 	adjustableRunTime;

writeInterval 	0.01;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable yes;

adjustTimeStep  yes;

maxCo 		0.5;

maxDeltaT 	1e-2;

functions
{

probes
{

// Where to load it from
functionObjectLibs ( "libsampling.so" );
type        probes;

// Name of the directory for probe data
name          probes;
writeControl  timeStep;
writeInterval 20;

// Fields to be probed
fields ( p  );

probeLocations
(
   (0.1 0.00498 0.00017)	      // x = 0D
   (0.14 0.0098 0.00034)	      // x = 2D
   (0.18 0.0098 0.00034)	      // x = 4D
   (0.22 0.0098 0.00034)	      // x = 6D

);
}

}


// ************************************************************************* //
