openfoam/applications/test/IOField
Mark Olesen 33693f32b6 ENH: wrapped IOField, IOList, IOmapDistributePolyMesh
- Uses a refPtr to reference external content.
  Useful (for example) when writing data without copying.
  Reading into external locations is not implemented
  (no current requirement for that).

    * IOFieldRef -> IOField
    * IOListRef -> IOList
    * IOmapDistributePolyMeshRef -> IOmapDistributePolyMesh

  Eg,

    labelList addressing = ...;

    io.rename("cellProcAddressing");
    IOListRef<label>(io, addressing).write();

  Or,
    primitivePatch patch = ...;
    IOFieldRef<vector>(io, patch.localPoints()).write();
2022-05-10 10:47:01 +02:00
..
Make STYLE: use finiteVolume in Make/options placeholder 2019-02-24 17:32:13 +01:00
Test-IOField.C ENH: wrapped IOField, IOList, IOmapDistributePolyMesh 2022-05-10 10:47:01 +02:00