Commit Graph

73 Commits

Author SHA1 Message Date
d79abdaa17 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
        }
2015-04-08 21:22:23 +01:00
baa260afd8 TableFile: Correct example in documentation
Roselves bug-report http://www.openfoam.org/mantisbt/view.php?id=1581
2015-03-29 19:53:46 +01:00
bf7f5e627f PolynomialEntry: Templated polynomial DataEntry to support all basic field types from scalar to tensor
This allows polynomial functions for e.g. velocity to be specified in the uniformFixedValue BC

Consider a linear function for Ux(t) with Uy and Uz = 0:

    inlet
    {
        type            uniformFixedValue;
        uniformValue    polynomial
        (
            ((10 0 0)   (0 0 0))
            ((100 0 0)  (1 0 0))
        );
    }

Resolves bug report http://www.openfoam.org/mantisbt/view.php?id=1508
2015-02-06 09:57:20 +00:00
ec9fc5b099 DataEntry/Table: provide dictionary to base-class to allow the specification of outOfBounds
Resolves bug-reports:
    http://www.openfoam.org/mantisbt/view.php?id=888
    http://www.openfoam.org/mantisbt/view.php?id=788
2015-01-22 13:32:30 +00:00
981ebc1c0a BUG: TableBase: binary writing 2014-01-08 21:11:23 +00:00
5f3ea76c83 STYLE: Updated header documentation 2013-11-27 14:32:24 +00:00
19a046ed8c ENH: DataEntry: disallow recursive lookup 2013-11-20 10:35:32 +00:00
00e73a488b BUG: CSV data entry - corrected writing - mantis #971 2013-08-20 09:50:05 +01:00
43d09748f7 BUG: CSV - corrected typo - mantis #959 2013-08-14 13:50:16 +01:00
c08917f196 STYLE: Code formatting 2013-05-13 09:38:54 +01:00
6693171921 BUG: TableBase: repeat not handled 2013-04-30 10:13:35 +01:00
0368962ed4 BUG: CSV: binary writing 2013-04-18 14:58:53 +01:00
e4fc9807c3 STYLE: Updates to erroneous copyright dates 2013-03-13 09:32:03 +00:00
a001b1cc34 BUG: Corrected TimeDataEntry copy constructor - mantis #762 2013-03-04 18:10:06 +00:00
8febc0415b BUG: Corrected TimeDataEntry copy constructor - mantis #753 2013-03-04 14:35:06 +00:00
3753faf147 ENH: Updated CSV DataEntry 2013-01-28 16:46:59 +00:00
6c6a91c425 ENH: Added helper function to return CSV data as fields 2013-01-28 16:45:11 +00:00
8f90eb6037 STYLE: TableBase: added comment 2012-10-25 17:29:04 +01:00
69a958fbea BUG: TableBase: preserve address of tableSamples since referenced in interpolationWeights 2012-10-24 11:36:53 +01:00
046dcbd46f STYLE: CompatibilityConstant: indenting 2012-09-20 12:54:25 +01:00
30a7437682 STYLE: Table.H: comment out of date 2012-09-20 12:49:27 +01:00
dd3ab88f47 Thermodynamics: renamed isobaricPerfectGas -> incompressiblePerfectGas and incompressible -> rhoConst
Added isochoric and incompressible identifiers to equations of state to indicate the supported processes
2012-09-11 14:07:22 +01:00
3b62098b11 ENH: Updated polynomial DataEntry - related to mantis bug #607 2012-08-01 15:14:11 +01:00
6b5fa6cd33 STYLE: TableBase: keep includes out of header file 2012-06-22 16:42:04 +01:00
664fb30912 interpolationWeights: Info messages now switched by debug 2012-05-02 10:54:19 +01:00
af91ab5b91 BUG: TableBaseIO: write interpolationscheme; update comment 2012-04-19 16:47:09 +01:00
28d462b8ef STYLE: TableFile: added to comment 2012-04-17 18:05:43 +01:00
78bd261ce9 ENH: interpolationWeights: run-time selectable interpolation 2012-04-17 18:02:25 +01:00
336f84fd0e ENH: TableFile: improved error message 2012-04-17 17:59:29 +01:00
48c70a91df ENH: Adding dimensioSet to DataEntry and modify MRFZone entry types 2012-04-13 16:31:07 +01:00
e730fbec12 ENH: polynomial: added constructor from components 2012-02-08 13:46:31 +00:00
99a7669440 Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
Conflicts:
	src/OpenFOAM/primitives/functions/DataEntry/CSV/CSV.H
	src/OpenFOAM/primitives/functions/DataEntry/DataEntry/DataEntry.C
	src/OpenFOAM/primitives/functions/DataEntry/DataEntry/DataEntry.H
	src/OpenFOAM/primitives/functions/DataEntry/Table/TableBase.H
2012-02-03 12:44:17 +00:00
100ba9c0c4 BUG: DataEntry: corrected external, file based tables 2012-02-03 12:39:48 +00:00
1da5da2a0f BUG/ENH: Added use of engine time to cloud injection models - mantis #407 2012-02-02 18:58:17 +00:00
e2cc8830d4 ENH: tetrahedron: move slicing with plane. Removed tetPointRef.H 2012-01-16 15:48:15 +00:00
cfcc9f490e BUG: Corrected behaviour of DataEntry for backward compatibility 2012-01-03 18:23:06 +00:00
4d23d3f574 STYLE: TableFile.H: fixed header comment 2012-01-03 11:08:11 +00:00
d46303b9cb STYLE: Removed trailing spaces 2011-12-16 14:39:45 +00:00
7801d7f50f ENH: Added CompatibilityConstant DataEntry for backwards comapatibility 2011-12-16 12:10:06 +00:00
810de38afb STYLE: minor code formatting update 2011-11-23 10:19:02 +00:00
4cbd9ebc13 ENH: Added I/O to tableFile data entry 2011-11-22 15:15:57 +00:00
f69a2c7776 ENH: Changed default bounds handling to clamp 2011-11-22 15:03:31 +00:00
bdeff26fc7 BUG: corrected tableBase max-bounds check 2011-11-22 15:02:27 +00:00
e31a9da793 ENH: Added new table from file data entry 2011-11-22 14:59:09 +00:00
e9e9dcbd08 ENH: Refactored DataEntry table-types to make use of new table base class 2011-11-22 13:14:48 +00:00
1df679963e ENH: Added base class for DataEntry table-types 2011-11-22 13:14:19 +00:00
031dff6233 ENH: Removed unised #include file 2011-11-22 11:54:41 +00:00
5763b7e404 ENH: Added CSV table DataEntry 2011-11-21 17:12:59 +00:00
8b4fa16d8b ENH: Added dictionary write functionality to DataEntry 2011-11-17 18:10:42 +00:00
c2dd153a14 Copyright transfered to the OpenFOAM Foundation 2011-08-14 12:17:30 +01:00