/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation Copyright (C) 2020 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::openFoamTableReader Description Reads an interpolation table from a file - OpenFOAM-format SourceFiles openFoamTableReader.C \*---------------------------------------------------------------------------*/ #ifndef openFoamTableReader_H #define openFoamTableReader_H #include "tableReader.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class openFoamTableReader Declaration \*---------------------------------------------------------------------------*/ template class openFoamTableReader : public tableReader { public: //- Declare type-name, virtual type (with debug switch) TypeName("openFoam"); // Generated Methods //- Default construct openFoamTableReader() = default; //- Destructor virtual ~openFoamTableReader() = default; // Constructors //- Construct from dictionary explicit openFoamTableReader(const dictionary& dict); //- Construct and return a copy virtual autoPtr> clone() const { return autoPtr> ( new openFoamTableReader ( *this ) ); } // Member Functions //- Read 1D table virtual void operator() ( const fileName& fName, List>& data ); //- Read 2D table virtual void operator() ( const fileName& fName, List>>>& data ); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "openFoamTableReader.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //