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

application     pisoFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         12.5;

deltaT          0.5e-4;

writeControl    timeStep;

writeInterval   500;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable true;

functions
{
#includeFunc  residuals

scalar1
{
type            scalarTransport;
functionObjectLibs ("libsolverFunctionObjects.so");
enabled true;
writeControl outputTime; // write scalar field results
	
field s1; //name of scalar field
nCorr 1; //number of corrector loop
D 0.0005; //difussion coefficient
//    schemesField U;  // Name of field to use when looking up schemes from fvSchemes

//log yes;
}

scalar2
{
type            scalarTransport;
functionObjectLibs ("libsolverFunctionObjects.so");
enabled true;
writeControl outputTime; // write scalar field results
	
field s2; //name of scalar field
nCorr 1; //number of corrector loop
D 0.0005; //difussion coefficient
//    schemesField U;  // Name of field to use when looking up schemes from fvSchemes

//log yes;
}
scalar3
{
type            scalarTransport;
functionObjectLibs ("libsolverFunctionObjects.so");
enabled true;
writeControl outputTime; // write scalar field results
	
field s3; //name of scalar field
nCorr 1; //number of corrector loop
D 0.0005; //difussion coefficient
//    schemesField U;  // Name of field to use when looking up schemes from fvSchemes

//log yes;
}
scalar4
{
type            scalarTransport;
functionObjectLibs ("libsolverFunctionObjects.so");
enabled true;
writeControl outputTime; // write scalar field results
	
field s4; //name of scalar field
nCorr 1; //number of corrector loop
D 0.0005; //difussion coefficient
//    schemesField U;  // Name of field to use when looking up schemes from fvSchemes

//log yes;
}

scalar5
{
type            scalarTransport;
functionObjectLibs ("libsolverFunctionObjects.so");
enabled true;
writeControl outputTime; // write scalar field results
	
field s5; //name of scalar field
nCorr 1; //number of corrector loop
D 0.0005; //difussion coefficient
//    schemesField U;  // Name of field to use when looking up schemes from fvSchemes

//log yes;
}


}
// ************************************************************************* //
