AMIInterpolation and cyclicAMI have been superseded by patchToPatch and
nonConformalCoupled, respectively.
The motivation behind this change is explained in the following article:
https://cfd.direct/openfoam/free-software/non-conformal-coupling/
Information about how to convert a case which uses cyclicAMI to
nonConformalCoupled can be found here:
https://cfd.direct/openfoam/free-software/using-non-conformal-coupling/
75 lines
1.1 KiB
C++
75 lines
1.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
cyclic
|
|
{
|
|
type cyclic;
|
|
}
|
|
|
|
cyclicSlip
|
|
{
|
|
type cyclicSlip;
|
|
}
|
|
|
|
nonConformalCyclic
|
|
{
|
|
type nonConformalCyclic;
|
|
value $internalField;
|
|
}
|
|
|
|
nonConformalError
|
|
{
|
|
type nonConformalError;
|
|
}
|
|
|
|
empty
|
|
{
|
|
type empty;
|
|
}
|
|
|
|
processor
|
|
{
|
|
type processor;
|
|
value $internalField;
|
|
}
|
|
|
|
processorCyclic
|
|
{
|
|
type processorCyclic;
|
|
value $internalField;
|
|
}
|
|
|
|
nonConformalProcessorCyclic
|
|
{
|
|
type nonConformalProcessorCyclic;
|
|
value $internalField;
|
|
}
|
|
|
|
symmetryPlane
|
|
{
|
|
type symmetryPlane;
|
|
}
|
|
|
|
symmetry
|
|
{
|
|
type symmetry;
|
|
}
|
|
|
|
wedge
|
|
{
|
|
type wedge;
|
|
}
|
|
|
|
internal
|
|
{
|
|
type internal;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|