Adds overset discretisation to selected physics: - diffusion : overLaplacianDyMFoam - incompressible steady : overSimpleFoam - incompressible transient : overPimpleDyMFoam - compressible transient: overRhoPimpleDyMFoam - two-phase VOF: overInterDyMFoam The overset method chosen is a parallel, fully implicit implementation whereby the interpolation (from donor to acceptor) is inserted as an adapted discretisation on the donor cells, such that the resulting matrix can be solved using the standard linear solvers. Above solvers come with a set of tutorials, showing how to create and set-up simple simulations from scratch.
74 lines
1.2 KiB
C++
74 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
cyclic
|
|
{
|
|
type cyclic;
|
|
}
|
|
|
|
cyclicAMI
|
|
{
|
|
type cyclicAMI;
|
|
}
|
|
|
|
cyclicACMI
|
|
{
|
|
type cyclicACMI;
|
|
value $internalField;
|
|
}
|
|
|
|
cyclicSlip
|
|
{
|
|
type cyclicSlip;
|
|
}
|
|
|
|
empty
|
|
{
|
|
type empty;
|
|
}
|
|
|
|
nonuniformTransformCyclic
|
|
{
|
|
type nonuniformTransformCyclic;
|
|
}
|
|
|
|
processor
|
|
{
|
|
type processor;
|
|
value $internalField;
|
|
}
|
|
|
|
processorCyclic
|
|
{
|
|
type processorCyclic;
|
|
value $internalField;
|
|
}
|
|
|
|
symmetryPlane
|
|
{
|
|
type symmetryPlane;
|
|
}
|
|
|
|
symmetry
|
|
{
|
|
type symmetry;
|
|
}
|
|
|
|
wedge
|
|
{
|
|
type wedge;
|
|
}
|
|
|
|
overset
|
|
{
|
|
type overset;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|