openfoam/tutorials/multiphase/interFoam/RAS/electrostaticDeposition/system/FOelectricPotential
Mark Olesen 8a7221cf50 TUT: update tutorials to use dictionary-style sets
- can now specify sampled sets as dictionary entries instead of a list
  entry.
    can now use:  sets { ... }
    instead of:   sets ( ... );

  This is similar to sampled surfaces and makes it easier to
  manage with dictionary manipulation tools.

TUT: update to use writeTime instead of outputTime
2022-03-10 19:45:20 +01:00

53 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2112 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object FOelectricPotential;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
electricPotential
{
// Mandatory entries
type electricPotential;
libs (solverFunctionObjects);
phases
{
alpha.air
{
epsilonr 1.12940906737;
sigma 1e-10;
}
alpha.water
{
epsilonr 3.38822720212;
sigma 0.14;
}
}
// Optional entries
nCorr 1;
writeDerivedFields true;
// Inherited entries
region region0;
enabled true;
log true;
timeStart 0;
timeEnd 100;
executeControl timeStep;
executeInterval 1;
writeControl writeTime;
writeInterval -1;
}
// ************************************************************************* //