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

application     simpleFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         10000;

deltaT          1;

writeControl    timeStep;

writeInterval   1;

purgeWrite      1;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

graphFormat     gnuplot;

runTimeModifiable true;

functions
  {

    
    
   
    shearStress
      {
           type        shearStress;
           libs        ("libfieldFunctionObjects.so");
           writeInterval   1;
           purgeWrite      1;
         }  

    components1
      {
         type    components;
         libs        ("libfieldFunctionObjects.so");
         field        shearStress;
      }
      grad
       {
          type    grad;
          libs    ("libfieldFunctionObjects.so");
         field   U;
           writeInterval   1;
       }

        components2
      {
         type    components;
         libs        ("libfieldFunctionObjects.so");
         field        grad(U);
      }
 
        #includeFunc singleGraph
        #includeFunc probes
  
}




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