Function2::UniformTable2: Corrected and updated documentation

Resolves bug-report https://bugs.openfoam.org/view.php?id=3750
This commit is contained in:
Henry Weller
2021-11-02 11:27:54 +00:00
parent f376c1b087
commit 2d1c97f4fa

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2020 OpenFOAM Foundation \\ / A nd | Copyright (C) 2020-2021 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -36,23 +36,21 @@ Usage
values | Property values, assumed uniformly distributed values | Property values, assumed uniformly distributed
\endtable \endtable
Example for the density of water between 280 and 350K Example for the density of water from 1 to 3bar and 280 to 350K
\verbatim \verbatim
rho rho
{ {
type uniformTable; type uniformTable;
pLow 1000; low (1e5 280);
pHigh 1e6; high (3e5 350);
Tlow 280;
Thigh 350;
values values
3 2
( (
999.87 (991 992)
991.53 (993 994)
973.7 (995 996)
); );
} }
\endverbatim \endverbatim