Preview information, subject to change at any time !!!
- Potential breaking changes
- Deprecation and Removal
- Changes in definition
- Changes in behaviour
- Namespace changes
- Rename
Potential breaking changes
Finite Area
The finite-area infrastructure has been revised to now have its own
objectRegistry
instead of simply riding onto of the polyMesh
registry. Any existing finite-area code must be adjusted accordingly
to ensure that the fields will be located properly.
areaScalarField h
(
IOobject
(
"h",
runTime.timeName(),
// mesh_, //<-- BAD this is the volume mesh!!
aMesh.thisDb(), //<-- GOOD, works with v2312, v2406, ....
// aMesh, //<-- OK to use area mesh directly (v2406)
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
aMesh
);