/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- 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::CSV Description Templated CSV container data entry. Reference column is always a scalar, e.g. time \verbatim csvFile; csvFileCoeffs { nHeaderLine 4; refColumn 0; // reference column index componentColumns (1 2 3); // component column indices separator ","; // optional (defaults to ",") mergeSeparators no; // merge multiple separators fileName "fileXYZ"; // name of csv data file outOfBounds clamp; // optional out-of-bounds handling interpolationScheme linear; // optional interpolation scheme } \endverbatim SourceFiles CSV.C \*---------------------------------------------------------------------------*/ #ifndef CSV_H #define CSV_H #include "DataEntry.H" #include "TableBase.H" #include "Tuple2.H" #include "labelList.H" #include "ISstream.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { template class CSV; template Ostream& operator<< ( Ostream&, const CSV& ); /*---------------------------------------------------------------------------*\ Class CSV Declaration \*---------------------------------------------------------------------------*/ template class CSV : public DataEntry, public TableBase { // Private data //- Coefficients dictionary (for convenience on reading) dictionary coeffs_; //- Number header lines label nHeaderLine_; //- Column of the time label refColumn_; //- Labels of the components labelList componentColumns_; //- Separator character char separator_; //- Merge separators flag, e.g. ',,,' becomes ',' bool mergeSeparators_; //- File name for csv table fileName fName_; // Private Member Functions //- Read csv data table void read(); //- Read the next value from the splitted string Type readValue(const List&); //- Disallow default bitwise assignment void operator=(const CSV&); public: //- Runtime type information TypeName("csvFile"); // Constructors //- Construct from entry name and dictionary CSV ( const word& entryName, const dictionary& dict, const word& ext = "Coeffs" ); //- Copy constructor CSV(const CSV& tbl); //- Construct and return a clone virtual tmp > clone() const { return tmp >(new CSV(*this)); } //- Destructor virtual ~CSV(); // Member Functions // Manipulation //- Convert time virtual void convertTimeBase(const Time& t) { TableBase::convertTimeBase(t); } // Access //- Return const access to the file name virtual const fileName& fName() const; // Evaluation //- Return Table value virtual Type value(const scalar x) const { return TableBase::value(x); } //- Integrate between two (scalar) values virtual Type integrate(const scalar x1, const scalar x2) const { return TableBase::integrate(x1, x2); } //- Return dimensioned constant value virtual dimensioned dimValue(const scalar x) const { return TableBase::dimValue(x); } //- Integrate between two values and return dimensioned type virtual dimensioned dimIntegrate ( const scalar x1, const scalar x2 ) const { return TableBase::dimIntegrate(x1, x2); } // I/O //- Ostream Operator friend Ostream& operator<< ( Ostream& os, const CSV& cnst ); //- Write in dictionary format virtual void writeData(Ostream& os) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "CSV.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //