DataEntry: Base the name of the coefficients sub-dicts on the entry name rather than the type name
This allows for more than one of these data types to be specified in a dictionary Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1652 e.g. <entryName> csvFile; <entryName>Coeffs { 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 }
This commit is contained in:
parent
ff2f3205af
commit
d79abdaa17
@ -204,8 +204,8 @@ Foam::CSV<Type>::CSV
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
DataEntry<Type>(entryName),
|
DataEntry<Type>(entryName),
|
||||||
TableBase<Type>(entryName, dict.subDict(type() + ext)),
|
TableBase<Type>(entryName, dict.subDict(entryName + ext)),
|
||||||
coeffs_(dict.subDict(type() + ext)),
|
coeffs_(dict.subDict(entryName + ext)),
|
||||||
nHeaderLine_(readLabel(coeffs_.lookup("nHeaderLine"))),
|
nHeaderLine_(readLabel(coeffs_.lookup("nHeaderLine"))),
|
||||||
refColumn_(readLabel(coeffs_.lookup("refColumn"))),
|
refColumn_(readLabel(coeffs_.lookup("refColumn"))),
|
||||||
componentColumns_(coeffs_.lookup("componentColumns")),
|
componentColumns_(coeffs_.lookup("componentColumns")),
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -29,8 +29,8 @@ Description
|
|||||||
e.g. time
|
e.g. time
|
||||||
|
|
||||||
\verbatim
|
\verbatim
|
||||||
<entryName> csvFile;
|
<entryName> csvFile;
|
||||||
csvFileCoeffs
|
<entryName>Coeffs
|
||||||
{
|
{
|
||||||
nHeaderLine 4;
|
nHeaderLine 4;
|
||||||
refColumn 0; // reference column index
|
refColumn 0; // reference column index
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -61,7 +61,7 @@ void Foam::CSV<Type>::writeData(Ostream& os) const
|
|||||||
{
|
{
|
||||||
DataEntry<Type>::writeData(os);
|
DataEntry<Type>::writeData(os);
|
||||||
os << token::END_STATEMENT << nl;
|
os << token::END_STATEMENT << nl;
|
||||||
os << indent << word(type() + "Coeffs") << nl;
|
os << indent << word(this->name() + "Coeffs") << nl;
|
||||||
os << indent << token::BEGIN_BLOCK << incrIndent << nl;
|
os << indent << token::BEGIN_BLOCK << incrIndent << nl;
|
||||||
|
|
||||||
// Note: for TableBase write the dictionary entries it needs but not
|
// Note: for TableBase write the dictionary entries it needs but not
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -215,5 +215,4 @@ Foam::DataEntry<Type>::dimIntegrate
|
|||||||
|
|
||||||
#include "DataEntryIO.C"
|
#include "DataEntryIO.C"
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -31,10 +31,10 @@ template<class Type>
|
|||||||
Foam::TableFile<Type>::TableFile(const word& entryName, const dictionary& dict)
|
Foam::TableFile<Type>::TableFile(const word& entryName, const dictionary& dict)
|
||||||
:
|
:
|
||||||
DataEntry<Type>(entryName),
|
DataEntry<Type>(entryName),
|
||||||
TableBase<Type>(entryName, dict.subDict(type() + "Coeffs")),
|
TableBase<Type>(entryName, dict.subDict(entryName + "Coeffs")),
|
||||||
fName_("none")
|
fName_("none")
|
||||||
{
|
{
|
||||||
const dictionary coeffs(dict.subDict(type() + "Coeffs"));
|
const dictionary coeffs(dict.subDict(entryName + "Coeffs"));
|
||||||
coeffs.lookup("fileName") >> fName_;
|
coeffs.lookup("fileName") >> fName_;
|
||||||
|
|
||||||
if (coeffs.found("dimensions"))
|
if (coeffs.found("dimensions"))
|
||||||
|
@ -28,8 +28,8 @@ Description
|
|||||||
Templated table container data entry where data is read from file.
|
Templated table container data entry where data is read from file.
|
||||||
|
|
||||||
\verbatim
|
\verbatim
|
||||||
<entryName> tableFile;
|
<entryName> tableFile;
|
||||||
tableFileCoeffs
|
<entryName>Coeffs
|
||||||
{
|
{
|
||||||
dimensions [0 0 1 0 0]; // optional dimensions
|
dimensions [0 0 1 0 0]; // optional dimensions
|
||||||
fileName dataFile; // name of data file
|
fileName dataFile; // name of data file
|
||||||
|
@ -53,7 +53,7 @@ void Foam::TableFile<Type>::writeData(Ostream& os) const
|
|||||||
DataEntry<Type>::writeData(os);
|
DataEntry<Type>::writeData(os);
|
||||||
|
|
||||||
os << token::END_STATEMENT << nl
|
os << token::END_STATEMENT << nl
|
||||||
<< indent << word(type() + "Coeffs") << nl
|
<< indent << word(this->name() + "Coeffs") << nl
|
||||||
<< indent << token::BEGIN_BLOCK << nl << incrIndent;
|
<< indent << token::BEGIN_BLOCK << nl << incrIndent;
|
||||||
|
|
||||||
// Note: for TableBase write the dictionary entries it needs but not
|
// Note: for TableBase write the dictionary entries it needs but not
|
||||||
|
Loading…
Reference in New Issue
Block a user