applications/test: Tested and updated

This commit is contained in:
Henry Weller
2021-02-03 12:37:44 +00:00
parent ed0686ea0c
commit 1e728ad7e3
2 changed files with 6 additions and 6 deletions

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) 2011-2019 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -63,7 +63,7 @@ int main(int argc, char *argv[])
Info<< "Calculating values\n" << endl; Info<< "Calculating values\n" << endl;
const scalarField ys(function.value(xs)); const scalarField ys(function.value(xs));
const scalarField integralYs(function.integrate(scalarField(nX, x0), xs)); const scalarField integralYs(function.integral(scalarField(nX, x0), xs));
scalarField trapezoidIntegralYs(nX, 0); scalarField trapezoidIntegralYs(nX, 0);
for (label i = 1; i < nX; ++ i) for (label i = 1; i < nX; ++ i)
{ {

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
@ -30,7 +30,7 @@ Description
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "nonUniformTable1DThermophysicalFunction.H" #include "NonUniformTable1.H"
#include "IFstream.H" #include "IFstream.H"
using namespace Foam; using namespace Foam;
@ -42,7 +42,7 @@ int main(int argc, char *argv[])
{ {
dictionary dict(IFstream("thermoDict")()); dictionary dict(IFstream("thermoDict")());
thermophysicalFunctions::nonUniformTable1D table(dict); Function1s::NonUniformTable<scalar> table("table", dict);
const label n = 1000; const label n = 1000;
const scalar T0 = table.values().first().first(); const scalar T0 = table.values().first().first();
@ -52,7 +52,7 @@ int main(int argc, char *argv[])
for (int i = 0; i<n + 1; i++) for (int i = 0; i<n + 1; i++)
{ {
const scalar T = T0 + i*deltaT; const scalar T = T0 + i*deltaT;
const scalar f = table.f(0, T); const scalar f = table.value(T);
if (mag(T - f) > small) if (mag(T - f) > small)
{ {