mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Adding compartmentFire and thermo pyrolysis model
This commit is contained in:
@ -3,6 +3,7 @@ pyrolysisModel/pyrolysisModel.C
|
||||
pyrolysisModel/pyrolysisModelNew.C
|
||||
reactingOneDim/reactingOneDim.C
|
||||
noPyrolysis/noPyrolysis.C
|
||||
thermo/thermo.C
|
||||
pyrolysisModel/pyrolysisModelCollection.C
|
||||
|
||||
LIB = $(FOAM_LIBBIN)/libpyrolysisModels
|
||||
|
||||
218
src/regionModels/pyrolysisModels/thermo/thermo.C
Normal file
218
src/regionModels/pyrolysisModels/thermo/thermo.C
Normal file
@ -0,0 +1,218 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd
|
||||
\\/ 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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "thermo.H"
|
||||
#include "addToRunTimeSelectionTable.H"
|
||||
#include "volFields.H"
|
||||
#include "absorptionEmissionModel.H"
|
||||
#include "fvm.H"
|
||||
#include "fvcLaplacian.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
namespace regionModels
|
||||
{
|
||||
namespace pyrolysisModels
|
||||
{
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
defineTypeNameAndDebug(thermo, 0);
|
||||
addToRunTimeSelectionTable(pyrolysisModel, thermo, mesh);
|
||||
addToRunTimeSelectionTable(pyrolysisModel, thermo, dictionary);
|
||||
|
||||
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
||||
|
||||
void thermo::readControls()
|
||||
{
|
||||
const dictionary& solution = this->solution().subDict("SIMPLE");
|
||||
solution.lookup("nNonOrthCorr") >> nNonOrthCorr_;
|
||||
time().controlDict().lookup("maxDi") >> maxDiff_;
|
||||
}
|
||||
|
||||
|
||||
bool thermo::read()
|
||||
{
|
||||
if (pyrolysisModel::read())
|
||||
{
|
||||
readControls();
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool thermo::read(const dictionary& dict)
|
||||
{
|
||||
if (pyrolysisModel::read(dict))
|
||||
{
|
||||
readControls();
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
thermo::thermo
|
||||
(
|
||||
const word& modelType,
|
||||
const fvMesh& mesh,
|
||||
const word& regionType
|
||||
)
|
||||
:
|
||||
pyrolysisModel(modelType, mesh, regionType),
|
||||
solidThermo_(solidThermo::New(regionMesh())),
|
||||
radiation_(radiation::radiationModel::New(solidThermo_->T())),
|
||||
nNonOrthCorr_(-1),
|
||||
maxDiff_(10)
|
||||
{
|
||||
if (active())
|
||||
{
|
||||
readControls();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
thermo::thermo
|
||||
(
|
||||
const word& modelType,
|
||||
const fvMesh& mesh,
|
||||
const dictionary& dict,
|
||||
const word& regionType
|
||||
)
|
||||
:
|
||||
pyrolysisModel(modelType, mesh, dict, regionType),
|
||||
solidThermo_(solidThermo::New(regionMesh())),
|
||||
radiation_(radiation::radiationModel::New(solidThermo_->T())),
|
||||
nNonOrthCorr_(-1),
|
||||
maxDiff_(10)
|
||||
{
|
||||
if (active())
|
||||
{
|
||||
readControls();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
||||
|
||||
thermo::~thermo()
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
|
||||
|
||||
void thermo::preEvolveRegion()
|
||||
{
|
||||
if (active())
|
||||
{
|
||||
pyrolysisModel::preEvolveRegion();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void thermo::evolveRegion()
|
||||
{
|
||||
if (active())
|
||||
{
|
||||
Info<< "\nEvolving energy in region: " << regionMesh().name() << endl;
|
||||
|
||||
volScalarField& h = solidThermo_->he();
|
||||
|
||||
for (int nonOrth=0; nonOrth<=nNonOrthCorr_; nonOrth++)
|
||||
{
|
||||
tmp<volScalarField> alpha(solidThermo_->alpha());
|
||||
fvScalarMatrix hEqn
|
||||
(
|
||||
fvm::ddt(rho(), h)
|
||||
- fvm::laplacian(alpha, h)
|
||||
+ fvc::laplacian(alpha, h)
|
||||
- fvc::laplacian(solidThermo_->kappa(), T())
|
||||
);
|
||||
|
||||
hEqn.relax();
|
||||
hEqn.solve();
|
||||
}
|
||||
|
||||
solidThermo_->correct();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const volScalarField& thermo::rho() const
|
||||
{
|
||||
return solidThermo_->rho();
|
||||
}
|
||||
|
||||
|
||||
const volScalarField& thermo::T() const
|
||||
{
|
||||
return solidThermo_->T();
|
||||
}
|
||||
|
||||
|
||||
const tmp<volScalarField> thermo::Cp() const
|
||||
{
|
||||
return solidThermo_->Cp();
|
||||
}
|
||||
|
||||
|
||||
tmp<volScalarField> thermo::kappaRad() const
|
||||
{
|
||||
return radiation_->absorptionEmission().a();
|
||||
}
|
||||
|
||||
|
||||
tmp<volScalarField> thermo::kappa() const
|
||||
{
|
||||
return solidThermo_->kappa();
|
||||
}
|
||||
|
||||
|
||||
const surfaceScalarField& thermo::phiGas() const
|
||||
{
|
||||
FatalErrorInFunction
|
||||
<< "phiGas field not available for " << type() << abort(FatalError);
|
||||
return surfaceScalarField::null();
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace surfaceFilmModels
|
||||
} // End namespace regionModels
|
||||
} // End namespace Foam
|
||||
|
||||
// ************************************************************************* //
|
||||
178
src/regionModels/pyrolysisModels/thermo/thermo.H
Normal file
178
src/regionModels/pyrolysisModels/thermo/thermo.H
Normal file
@ -0,0 +1,178 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd
|
||||
\\/ 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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
Class
|
||||
Foam::thermo
|
||||
|
||||
Description
|
||||
Pyrolysis model which solves only the energy equation in the region.
|
||||
|
||||
SourceFiles
|
||||
thermo.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef thermo_H
|
||||
#define thermo_H
|
||||
|
||||
#include "pyrolysisModel.H"
|
||||
#include "volFieldsFwd.H"
|
||||
#include "basicSolidChemistryModel.H"
|
||||
#include "radiationModel.H"
|
||||
#include "solidThermo.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
namespace regionModels
|
||||
{
|
||||
namespace pyrolysisModels
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class thermo Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class thermo
|
||||
:
|
||||
public pyrolysisModel
|
||||
{
|
||||
private:
|
||||
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
thermo(const thermo&);
|
||||
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const thermo&);
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// Protected member functions
|
||||
|
||||
//- Read control parameters from dictionary
|
||||
virtual bool read();
|
||||
|
||||
//- Read control parameters from dictionary
|
||||
virtual bool read(const dictionary& dict);
|
||||
|
||||
//- Read control options
|
||||
void readControls();
|
||||
|
||||
|
||||
// Protected data
|
||||
|
||||
//- Pointer to the solid chemistry model
|
||||
autoPtr<solidThermo> solidThermo_;
|
||||
|
||||
//- Pointer to radiation model
|
||||
autoPtr<radiation::radiationModel> radiation_;
|
||||
|
||||
|
||||
// Solution parameters
|
||||
|
||||
//- Number of non-orthogonal correctors
|
||||
label nNonOrthCorr_;
|
||||
|
||||
//- Maximum diffussivity
|
||||
scalar maxDiff_;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("thermo");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from type name and mesh
|
||||
thermo
|
||||
(
|
||||
const word& modelType,
|
||||
const fvMesh& mesh,
|
||||
const word& regionType
|
||||
);
|
||||
|
||||
//- Construct from type name and mesh and dict
|
||||
thermo
|
||||
(
|
||||
const word& modelType,
|
||||
const fvMesh& mesh,
|
||||
const dictionary& dict,
|
||||
const word& regionType
|
||||
);
|
||||
|
||||
|
||||
//- Destructor
|
||||
virtual ~thermo();
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
// Fields
|
||||
|
||||
//- Return density [kg/m3]
|
||||
virtual const volScalarField& rho() const;
|
||||
|
||||
//- Return const temperature [K]
|
||||
virtual const volScalarField& T() const;
|
||||
|
||||
//- Return specific heat capacity [J/kg/K]
|
||||
virtual const tmp<volScalarField> Cp() const;
|
||||
|
||||
//- Return the region absorptivity [1/m]
|
||||
virtual tmp<volScalarField> kappaRad() const;
|
||||
|
||||
//- Return the region thermal conductivity [W/m/k]
|
||||
virtual tmp<volScalarField> kappa() const;
|
||||
|
||||
//- Return the total gas mass flux to primary region [kg/m2/s]
|
||||
virtual const surfaceScalarField& phiGas() const;
|
||||
|
||||
|
||||
// Evolution
|
||||
|
||||
//- Pre-evolve region
|
||||
virtual void preEvolveRegion();
|
||||
|
||||
//- Evolve the pyrolysis equations
|
||||
virtual void evolveRegion();
|
||||
|
||||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace pyrolysisModels
|
||||
} // End namespace regionModels
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#endif
|
||||
|
||||
// ************************************************************************* //
|
||||
BIN
tutorials/combustion/fireFoam/les/compartmentFire/0/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/0/.DS_Store
vendored
Normal file
Binary file not shown.
59
tutorials/combustion/fireFoam/les/compartmentFire/0/C7H16
Executable file
59
tutorials/combustion/fireFoam/les/compartmentFire/0/C7H16
Executable file
@ -0,0 +1,59 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object C7H16;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 0 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type totalFlowRateAdvectiveDiffusive;
|
||||
phi phi;
|
||||
rho rho;
|
||||
massFluxFraction 1;
|
||||
value uniform 1;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0;
|
||||
value uniform 0;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
57
tutorials/combustion/fireFoam/les/compartmentFire/0/IDefault
Executable file
57
tutorials/combustion/fireFoam/les/compartmentFire/0/IDefault
Executable file
@ -0,0 +1,57 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object IDefault;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [1 0 -3 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type greyDiffusiveRadiation;
|
||||
value uniform 0;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type greyDiffusiveRadiation;
|
||||
value uniform 0;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type greyDiffusiveRadiation;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type greyDiffusiveRadiation;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type greyDiffusiveRadiation;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type greyDiffusiveRadiation;
|
||||
value uniform 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
56
tutorials/combustion/fireFoam/les/compartmentFire/0/N2
Executable file
56
tutorials/combustion/fireFoam/les/compartmentFire/0/N2
Executable file
@ -0,0 +1,56 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object N2;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 0 0 0 0 0];
|
||||
|
||||
internalField uniform 0.76699;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type calculated;
|
||||
value uniform 0.76699;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0.76699;
|
||||
value uniform 0.76699;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0.76699;
|
||||
value uniform 0.76699;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
56
tutorials/combustion/fireFoam/les/compartmentFire/0/O2
Executable file
56
tutorials/combustion/fireFoam/les/compartmentFire/0/O2
Executable file
@ -0,0 +1,56 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object O2;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 0 0 0 0 0];
|
||||
|
||||
internalField uniform 0.23301;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 0;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0.23301;
|
||||
value uniform 0.23301;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0.23301;
|
||||
value uniform 0.23301;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
71
tutorials/combustion/fireFoam/les/compartmentFire/0/T
Executable file
71
tutorials/combustion/fireFoam/les/compartmentFire/0/T
Executable file
@ -0,0 +1,71 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object T;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 0 1 0 0 0];
|
||||
|
||||
internalField uniform 294.75;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 371.15;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 294.75;
|
||||
value uniform 294.75;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 294.75;
|
||||
value uniform 294.75;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type compressible::turbulentTemperatureRadCoupledMixed;
|
||||
value uniform 294.75;
|
||||
Tnbr T;
|
||||
QrNbr none;
|
||||
Qr Qr;
|
||||
kappaMethod fluidThermo;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type compressible::turbulentTemperatureRadCoupledMixed;
|
||||
value uniform 294.75;
|
||||
Tnbr T;
|
||||
QrNbr none;
|
||||
Qr Qr;
|
||||
kappaMethod fluidThermo;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type compressible::turbulentTemperatureRadCoupledMixed;
|
||||
value uniform 294.75;
|
||||
Tnbr T;
|
||||
QrNbr none;
|
||||
Qr Qr;
|
||||
kappaMethod fluidThermo;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
59
tutorials/combustion/fireFoam/les/compartmentFire/0/U
Executable file
59
tutorials/combustion/fireFoam/les/compartmentFire/0/U
Executable file
@ -0,0 +1,59 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volVectorField;
|
||||
location "0";
|
||||
object U;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 1 -1 0 0 0 0];
|
||||
|
||||
internalField uniform (0 0 0);
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type flowRateInletVelocity;
|
||||
massFlowRate tableFile;
|
||||
massFlowRateCoeffs
|
||||
{
|
||||
fileName "$FOAM_CASE/constant/massLossRate";
|
||||
}
|
||||
value uniform (0 0 0);
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type pressureInletOutletVelocity;
|
||||
value uniform (0 0 0);
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type pressureInletOutletVelocity;
|
||||
value uniform (0 0 0);
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type slip;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type slip;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type slip;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
56
tutorials/combustion/fireFoam/les/compartmentFire/0/Ydefault
Executable file
56
tutorials/combustion/fireFoam/les/compartmentFire/0/Ydefault
Executable file
@ -0,0 +1,56 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object Ydefault;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 0 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 0;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0;
|
||||
value uniform 0;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform 0;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
57
tutorials/combustion/fireFoam/les/compartmentFire/0/alphat
Executable file
57
tutorials/combustion/fireFoam/les/compartmentFire/0/alphat
Executable file
@ -0,0 +1,57 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object alphat;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [1 -1 -1 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type compressible::alphatWallFunction;
|
||||
Prt 0.85;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type compressible::alphatWallFunction;
|
||||
Prt 0.85;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type compressible::alphatWallFunction;
|
||||
Prt 0.85;
|
||||
value uniform 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
56
tutorials/combustion/fireFoam/les/compartmentFire/0/k
Executable file
56
tutorials/combustion/fireFoam/les/compartmentFire/0/k
Executable file
@ -0,0 +1,56 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object k;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 2 -2 0 0 0 0];
|
||||
|
||||
internalField uniform 1e-4;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type fixedValue;
|
||||
value $internalField;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
64
tutorials/combustion/fireFoam/les/compartmentFire/0/nut
Executable file
64
tutorials/combustion/fireFoam/les/compartmentFire/0/nut
Executable file
@ -0,0 +1,64 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object nut;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 2 -1 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 0;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type nutUSpaldingWallFunction;
|
||||
Cmu 0.09;
|
||||
kappa 0.41;
|
||||
E 9.8;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type nutUSpaldingWallFunction;
|
||||
Cmu 0.09;
|
||||
kappa 0.41;
|
||||
E 9.8;
|
||||
value uniform 0;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type nutUSpaldingWallFunction;
|
||||
Cmu 0.09;
|
||||
kappa 0.41;
|
||||
E 9.8;
|
||||
value uniform 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
57
tutorials/combustion/fireFoam/les/compartmentFire/0/p
Executable file
57
tutorials/combustion/fireFoam/les/compartmentFire/0/p
Executable file
@ -0,0 +1,57 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object p;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [1 -1 -2 0 0 0 0];
|
||||
|
||||
internalField uniform 101325;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type calculated;
|
||||
value uniform 101325;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type calculated;
|
||||
value uniform 101325;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type calculated;
|
||||
value uniform 101325;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type calculated;
|
||||
value uniform 101325;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type calculated;
|
||||
value uniform 101325;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type calculated;
|
||||
value uniform 101325;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
69
tutorials/combustion/fireFoam/les/compartmentFire/0/p_rgh
Executable file
69
tutorials/combustion/fireFoam/les/compartmentFire/0/p_rgh
Executable file
@ -0,0 +1,69 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object p_rgh;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [1 -1 -2 0 0 0 0];
|
||||
|
||||
internalField uniform 101325;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type fixedFluxPressure;
|
||||
gradient uniform 0;
|
||||
value uniform 101325;
|
||||
}
|
||||
entrainment
|
||||
{
|
||||
type totalPressure;
|
||||
rho rho;
|
||||
psi none;
|
||||
gamma 1.4;
|
||||
p0 uniform 101325;
|
||||
value uniform 101325;
|
||||
}
|
||||
outlet
|
||||
{
|
||||
type totalPressure;
|
||||
rho rho;
|
||||
psi none;
|
||||
gamma 1.4;
|
||||
p0 uniform 101325;
|
||||
value uniform 101325;
|
||||
}
|
||||
region0_to_panelRegion_wallPanel
|
||||
{
|
||||
type fixedFluxPressure;
|
||||
gradient uniform 0;
|
||||
value uniform 101325;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_top
|
||||
{
|
||||
type fixedFluxPressure;
|
||||
gradient uniform 0;
|
||||
value uniform 101325;
|
||||
}
|
||||
region0_to_panelRegion_internalWallPanel_bottom
|
||||
{
|
||||
type fixedFluxPressure;
|
||||
gradient uniform 0;
|
||||
value uniform 101325;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
56
tutorials/combustion/fireFoam/les/compartmentFire/0/panelRegion/T
Executable file
56
tutorials/combustion/fireFoam/les/compartmentFire/0/panelRegion/T
Executable file
@ -0,0 +1,56 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object T;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 0 1 0 0 0];
|
||||
|
||||
internalField uniform 294.75;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
|
||||
wallPanel_top
|
||||
{
|
||||
type externalWallHeatFluxTemperature;
|
||||
Ta uniform 294.75;
|
||||
h uniform 10;
|
||||
kappaMethod solidThermo;
|
||||
value uniform 294.75;
|
||||
}
|
||||
|
||||
wallPanel_side
|
||||
{
|
||||
type empty;
|
||||
}
|
||||
|
||||
internalWallPanel_side
|
||||
{
|
||||
type empty;
|
||||
}
|
||||
|
||||
"region0_to_.*"
|
||||
{
|
||||
type compressible::turbulentTemperatureRadCoupledMixed;
|
||||
neighbourFieldName T;
|
||||
kappaMethod solidThermo;
|
||||
QrNbr Qr;
|
||||
Qr none;
|
||||
value $internalField;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
25024
tutorials/combustion/fireFoam/les/compartmentFire/0/panelRegion/cellToRegion
Executable file
25024
tutorials/combustion/fireFoam/les/compartmentFire/0/panelRegion/cellToRegion
Executable file
File diff suppressed because it is too large
Load Diff
32
tutorials/combustion/fireFoam/les/compartmentFire/0/panelRegion/p
Executable file
32
tutorials/combustion/fireFoam/les/compartmentFire/0/panelRegion/p
Executable file
@ -0,0 +1,32 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: lpus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object p;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [1 -1 -2 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
|
||||
".*"
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
10
tutorials/combustion/fireFoam/les/compartmentFire/Allclean
Executable file
10
tutorials/combustion/fireFoam/les/compartmentFire/Allclean
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
||||
|
||||
cleanCase
|
||||
rm -rf constant/panelRegion/polyMesh
|
||||
rm -f constant/polyMesh/boundary
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
28
tutorials/combustion/fireFoam/les/compartmentFire/Allrun
Executable file
28
tutorials/combustion/fireFoam/les/compartmentFire/Allrun
Executable file
@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
cd ${0%/*} || exit 1 # run from this directory
|
||||
|
||||
# Source tutorial run functions
|
||||
. $WM_PROJECT_DIR/bin/tools/RunFunctions
|
||||
|
||||
# create the blockMesh file with the parametric one
|
||||
m4 system/blockMeshDict.m4 > system/blockMeshDict
|
||||
|
||||
runApplication blockMesh
|
||||
runApplication topoSet
|
||||
|
||||
runApplication snappyHexMesh -overwrite
|
||||
|
||||
runApplication extrudeToRegionMesh -overwrite
|
||||
|
||||
runApplication decomposePar
|
||||
|
||||
runApplication decomposePar -region panelRegion
|
||||
|
||||
runParallel $(getApplication)
|
||||
|
||||
paraFoam -touch
|
||||
paraFoam -touch -region panelRegion
|
||||
|
||||
(cd validation && ./crateGraphs)
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
BIN
tutorials/combustion/fireFoam/les/compartmentFire/constant/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/constant/.DS_Store
vendored
Normal file
Binary file not shown.
@ -0,0 +1,20 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object additionalControls;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
solvePrimaryRegion true;
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,33 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object boundaryRadiationProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
".*"
|
||||
{
|
||||
mode lookup;
|
||||
emissivity 1.0;
|
||||
absorptivity 0.0;
|
||||
}
|
||||
|
||||
inlet
|
||||
{
|
||||
mode lookup;
|
||||
emissivity 0.9;
|
||||
absorptivity 0.0;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,35 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object combustionProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
combustionModel eddyDissipationDiffusionModel<psiThermoCombustion,gasHThermoPhysics>;
|
||||
|
||||
active on;
|
||||
|
||||
eddyDissipationDiffusionModelCoeffs
|
||||
{
|
||||
semiImplicit false;
|
||||
CEDC 4;
|
||||
Cd 6;
|
||||
}
|
||||
|
||||
infinitelyFastChemistryCoeffs
|
||||
{
|
||||
semiImplicit no;
|
||||
C 5.0;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
21
tutorials/combustion/fireFoam/les/compartmentFire/constant/g
Executable file
21
tutorials/combustion/fireFoam/les/compartmentFire/constant/g
Executable file
@ -0,0 +1,21 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class uniformDimensionedVectorField;
|
||||
location "constant";
|
||||
object g;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 1 -2 0 0 0 0];
|
||||
value (0 -9.81 0);
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,21 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class uniformDimensionedScalarField;
|
||||
location "constant";
|
||||
object hRef;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 1 0 0 0 0 0];
|
||||
value 1;
|
||||
|
||||
// ************************************************************************* //
|
||||
353
tutorials/combustion/fireFoam/les/compartmentFire/constant/massLossRate
Executable file
353
tutorials/combustion/fireFoam/les/compartmentFire/constant/massLossRate
Executable file
@ -0,0 +1,353 @@
|
||||
(
|
||||
(0 0)
|
||||
(1 1.22081358369363E-005)
|
||||
(2 1.81087346587379E-005)
|
||||
(3 0.000023894)
|
||||
(4 2.74217095093292E-005)
|
||||
(5 3.35021605287847E-005)
|
||||
(6 4.10917042982832E-005)
|
||||
(7 5.22173626266854E-005)
|
||||
(8 6.45748953363358E-005)
|
||||
(9 7.5434380901063E-005)
|
||||
(10 8.27076839735716E-005)
|
||||
(11 8.47658940650491E-005)
|
||||
(12 0.000084779)
|
||||
(13 8.21632602169756E-005)
|
||||
(14 8.15272941542217E-005)
|
||||
(15 8.17209379660099E-005)
|
||||
(16 8.06000516583038E-005)
|
||||
(17 8.06476419466627E-005)
|
||||
(18 8.04685483069812E-005)
|
||||
(19 7.68125961110954E-005)
|
||||
(20 7.39923640031797E-005)
|
||||
(21 7.64345221572076E-005)
|
||||
(22 7.37104918459642E-005)
|
||||
(23 7.32753522289656E-005)
|
||||
(24 7.64151702969847E-005)
|
||||
(25 7.81183534680467E-005)
|
||||
(26 0.000077578)
|
||||
(27 8.33137901772272E-005)
|
||||
(28 8.71897357749239E-005)
|
||||
(29 8.88066704356831E-005)
|
||||
(30 8.98465366322255E-005)
|
||||
(31 9.08008882330547E-005)
|
||||
(32 8.80661309244355E-005)
|
||||
(33 8.53352621872619E-005)
|
||||
(34 8.2433938869378E-005)
|
||||
(35 8.11804710877204E-005)
|
||||
(36 8.05717222331529E-005)
|
||||
(37 8.33085219816699E-005)
|
||||
(38 8.57815498105705E-005)
|
||||
(39 8.87900636275596E-005)
|
||||
(40 9.20249285687246E-005)
|
||||
(41 9.47023386109631E-005)
|
||||
(42 9.3760207436984E-005)
|
||||
(43 9.5419299184584E-005)
|
||||
(44 9.6569521941269E-005)
|
||||
(45 9.9084917361478E-005)
|
||||
(46 0.0001003587)
|
||||
(47 0.0001022422)
|
||||
(48 0.0001033314)
|
||||
(49 0.0001063639)
|
||||
(50 0.000103786)
|
||||
(51 0.0001056524)
|
||||
(52 0.0001100237)
|
||||
(53 0.0001098987)
|
||||
(54 0.0001112299)
|
||||
(55 0.0001160916)
|
||||
(56 0.0001158455)
|
||||
(57 0.0001131978)
|
||||
(58 0.0001148024)
|
||||
(59 0.0001135154)
|
||||
(60 0.0001138544)
|
||||
(61 0.0001159742)
|
||||
(62 0.0001189569)
|
||||
(63 0.0001199423)
|
||||
(64 0.0001254507)
|
||||
(65 0.0001257405)
|
||||
(66 0.0001313668)
|
||||
(67 0.0001353601)
|
||||
(68 0.0001449776)
|
||||
(69 0.0001424989)
|
||||
(70 0.0001480724)
|
||||
(71 0.0001444297)
|
||||
(72 0.0001443278)
|
||||
(73 0.0001372439)
|
||||
(74 0.0001404368)
|
||||
(75 0.0001387494)
|
||||
(76 0.0001424821)
|
||||
(77 0.0001453524)
|
||||
(78 0.0001490528)
|
||||
(79 0.0001494618)
|
||||
(80 0.0001486867)
|
||||
(81 0.0001456778)
|
||||
(82 0.0001390928)
|
||||
(83 0.0001333864)
|
||||
(84 0.0001303595)
|
||||
(85 0.0001302776)
|
||||
(86 0.0001323398)
|
||||
(87 0.0001358657)
|
||||
(88 0.0001418514)
|
||||
(89 0.0001448155)
|
||||
(90 0.0001434286)
|
||||
(91 0.0001419949)
|
||||
(92 0.000140693)
|
||||
(93 0.0001413433)
|
||||
(94 0.0001414759)
|
||||
(95 0.000144927)
|
||||
(96 0.0001441114)
|
||||
(97 0.000148419)
|
||||
(98 0.0001428085)
|
||||
(99 0.0001416096)
|
||||
(100 0.0001384349)
|
||||
(101 0.0001407804)
|
||||
(102 0.000136965)
|
||||
(103 0.0001412806)
|
||||
(104 0.0001415858)
|
||||
(105 0.0001447637)
|
||||
(106 0.0001426971)
|
||||
(107 0.0001431685)
|
||||
(108 0.0001407705)
|
||||
(109 0.0001412396)
|
||||
(110 0.000142675)
|
||||
(111 0.0001454283)
|
||||
(112 0.0001468299)
|
||||
(113 0.000149071)
|
||||
(114 0.0001502059)
|
||||
(115 0.000146138)
|
||||
(116 0.0001455244)
|
||||
(117 0.0001440899)
|
||||
(118 0.0001446215)
|
||||
(119 0.0001429687)
|
||||
(120 0.0001438286)
|
||||
(121 0.0001423807)
|
||||
(122 0.0001422089)
|
||||
(123 0.0001386987)
|
||||
(124 0.0001393492)
|
||||
(125 0.0001386575)
|
||||
(126 0.000140166)
|
||||
(127 0.0001410642)
|
||||
(128 0.0001426712)
|
||||
(129 0.0001389937)
|
||||
(130 0.0001405808)
|
||||
(131 0.0001372597)
|
||||
(132 0.0001365893)
|
||||
(133 0.0001386257)
|
||||
(134 0.0001421038)
|
||||
(135 0.0001419865)
|
||||
(136 0.0001447978)
|
||||
(137 0.0001454544)
|
||||
(138 0.0001424408)
|
||||
(139 0.0001419493)
|
||||
(140 0.0001403295)
|
||||
(141 0.0001393306)
|
||||
(142 0.0001364828)
|
||||
(143 0.000139013)
|
||||
(144 0.0001369687)
|
||||
(145 0.0001366527)
|
||||
(146 0.0001358744)
|
||||
(147 0.0001393946)
|
||||
(148 0.000136857)
|
||||
(149 0.0001435508)
|
||||
(150 0.0001461356)
|
||||
(151 0.0001491015)
|
||||
(152 0.0001483008)
|
||||
(153 0.0001493014)
|
||||
(154 0.0001429834)
|
||||
(155 0.0001403653)
|
||||
(156 0.0001368169)
|
||||
(157 0.0001344864)
|
||||
(158 0.0001305909)
|
||||
(159 0.000131101)
|
||||
(160 0.0001312887)
|
||||
(161 0.0001322378)
|
||||
(162 0.0001320417)
|
||||
(163 0.0001371968)
|
||||
(164 0.0001395303)
|
||||
(165 0.0001409838)
|
||||
(166 0.0001456885)
|
||||
(167 0.0001538315)
|
||||
(168 0.0001580727)
|
||||
(169 0.0001604529)
|
||||
(170 0.0001652172)
|
||||
(171 0.0001652686)
|
||||
(172 0.0001613114)
|
||||
(173 0.0001618552)
|
||||
(174 0.0001608894)
|
||||
(175 0.0001605361)
|
||||
(176 0.0001576069)
|
||||
(177 0.0001613909)
|
||||
(178 0.0001578075)
|
||||
(179 0.0001591451)
|
||||
(180 0.0001581907)
|
||||
(181 0.0001624319)
|
||||
(182 0.0001599787)
|
||||
(183 0.0001631903)
|
||||
(184 0.000163583)
|
||||
(185 0.0001632707)
|
||||
(186 0.0001642377)
|
||||
(187 0.000166109)
|
||||
(188 0.0001646625)
|
||||
(189 0.000163824)
|
||||
(190 0.0001622714)
|
||||
(191 0.0001574911)
|
||||
(192 0.0001547676)
|
||||
(193 0.0001523144)
|
||||
(194 0.0001510729)
|
||||
(195 0.0001519272)
|
||||
(196 0.0001499995)
|
||||
(197 0.0001511243)
|
||||
(198 0.0001505697)
|
||||
(199 0.0001532795)
|
||||
(200 0.0001542885)
|
||||
(201 0.0001609797)
|
||||
(202 0.0001585952)
|
||||
(203 0.0001626543)
|
||||
(204 0.0001588644)
|
||||
(205 0.000160119)
|
||||
(206 0.0001587148)
|
||||
(207 0.0001604918)
|
||||
(208 0.0001590424)
|
||||
(209 0.0001606765)
|
||||
(210 0.0001565987)
|
||||
(211 0.000153613)
|
||||
(212 0.0001541347)
|
||||
(213 0.0001516414)
|
||||
(214 0.0001515937)
|
||||
(215 0.0001534052)
|
||||
(216 0.0001533875)
|
||||
(217 0.0001510145)
|
||||
(218 0.000150096)
|
||||
(219 0.0001472756)
|
||||
(220 0.0001443829)
|
||||
(221 0.000141524)
|
||||
(222 0.0001384546)
|
||||
(223 0.0001370212)
|
||||
(224 0.0001372648)
|
||||
(225 0.0001373614)
|
||||
(226 0.0001396501)
|
||||
(227 0.0001433212)
|
||||
(228 0.0001444394)
|
||||
(229 0.0001452396)
|
||||
(230 0.0001466616)
|
||||
(231 0.0001445941)
|
||||
(232 0.0001407169)
|
||||
(233 0.0001397625)
|
||||
(234 0.0001381647)
|
||||
(235 0.0001345628)
|
||||
(236 0.0001339515)
|
||||
(237 0.000136483)
|
||||
(238 0.0001371428)
|
||||
(239 0.0001347223)
|
||||
(240 0.0001369733)
|
||||
(241 0.0001369796)
|
||||
(242 0.0001358366)
|
||||
(243 0.0001341664)
|
||||
(244 0.0001363715)
|
||||
(245 0.0001338644)
|
||||
(246 0.0001304401)
|
||||
(247 0.0001257294)
|
||||
(248 0.0001223132)
|
||||
(249 0.0001156313)
|
||||
(250 0.0001114844)
|
||||
(251 0.0001110701)
|
||||
(252 0.0001124839)
|
||||
(253 0.0001131058)
|
||||
(254 0.0001171536)
|
||||
(255 0.0001187721)
|
||||
(256 0.0001201849)
|
||||
(257 0.000119824)
|
||||
(258 0.0001263694)
|
||||
(259 0.0001288714)
|
||||
(260 0.0001308902)
|
||||
(261 0.0001321827)
|
||||
(262 0.0001343352)
|
||||
(263 0.0001259644)
|
||||
(264 0.0001213016)
|
||||
(265 0.0001216517)
|
||||
(266 0.0001199555)
|
||||
(267 0.0001178225)
|
||||
(268 0.0001200632)
|
||||
(269 0.0001202003)
|
||||
(270 0.00011756)
|
||||
(271 0.0001159884)
|
||||
(272 0.0001158732)
|
||||
(273 0.0001144299)
|
||||
(274 0.0001140817)
|
||||
(275 0.0001137104)
|
||||
(276 0.0001132118)
|
||||
(277 0.0001094641)
|
||||
(278 0.0001082305)
|
||||
(279 0.0001068421)
|
||||
(280 0.0001029715)
|
||||
(281 0.0001011887)
|
||||
(282 0.0001004336)
|
||||
(283 9.98142576658212E-005)
|
||||
(284 0.0001007685)
|
||||
(285 0.000103974)
|
||||
(286 0.0001075815)
|
||||
(287 0.0001117209)
|
||||
(288 0.0001133842)
|
||||
(289 0.0001121342)
|
||||
(290 0.0001106249)
|
||||
(291 0.0001077931)
|
||||
(292 0.0001058191)
|
||||
(293 0.000105845)
|
||||
(294 0.0001076172)
|
||||
(295 0.0001098351)
|
||||
(296 0.0001083875)
|
||||
(297 0.0001065225)
|
||||
(298 0.0001053488)
|
||||
(299 0.0001048516)
|
||||
(300 0.0001038894)
|
||||
(301 0.0001076312)
|
||||
(302 0.0001117406)
|
||||
(303 0.0001130137)
|
||||
(304 0.000110742)
|
||||
(305 0.0001110614)
|
||||
(306 0.0001092754)
|
||||
(307 0.0001045023)
|
||||
(308 9.93400502221245E-005)
|
||||
(309 9.75070562295082E-005)
|
||||
(310 8.95684762455634E-005)
|
||||
(311 8.15324855488868E-005)
|
||||
(312 7.37578090250846E-005)
|
||||
(313 6.4790707159251E-005)
|
||||
(314 5.35003915579075E-005)
|
||||
(315 4.6363934041226E-005)
|
||||
(316 0.00003847)
|
||||
(317 3.64965138802159E-005)
|
||||
(318 3.86658599449312E-005)
|
||||
(319 4.270855075397E-005)
|
||||
(320 4.52797090140704E-005)
|
||||
(321 4.97293835149542E-005)
|
||||
(322 4.84177776496405E-005)
|
||||
(323 4.40433003518546E-005)
|
||||
(324 4.01548669201593E-005)
|
||||
(325 3.74493265530626E-005)
|
||||
(326 3.24059198771579E-005)
|
||||
(327 0.000028799)
|
||||
(328 2.7488301747784E-005)
|
||||
(329 2.53423554186118E-005)
|
||||
(330 2.16794822938196E-005)
|
||||
(331 2.02588283936729E-005)
|
||||
(332 0.000019701)
|
||||
(333 1.93092528806658E-005)
|
||||
(334 1.89734185166011E-005)
|
||||
(335 0.000019701)
|
||||
(336 2.10268269199625E-005)
|
||||
(337 2.15464343124295E-005)
|
||||
(338 2.11175898130252E-005)
|
||||
(339 2.044633639174E-005)
|
||||
(340 2.17946661423775E-005)
|
||||
(341 2.09458580093933E-005)
|
||||
(342 2.06726818138309E-005)
|
||||
(343 2.0205338396356E-005)
|
||||
(344 1.84589058197004E-005)
|
||||
(345 1.46782374978264E-005)
|
||||
(346 1.19115778902099E-005)
|
||||
(347 9.49214245981871E-006)
|
||||
(348 0.000008078)
|
||||
(349 8.38739645279505E-006)
|
||||
(350 1.07260990773814E-005)
|
||||
)
|
||||
@ -0,0 +1,37 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object radiationProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
radiation on;
|
||||
|
||||
radiationModel opaqueSolid;
|
||||
|
||||
absorptionEmissionModel multiBandSolidAbsorptionEmission;
|
||||
|
||||
multiBandSolidAbsorptionEmissionCoeffs
|
||||
{
|
||||
absorptivity (0 0);
|
||||
emissivity (1 1);
|
||||
}
|
||||
|
||||
transmissivityModel none;
|
||||
|
||||
scatterModel none;
|
||||
|
||||
sootModel none;
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,55 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object thermophysicalProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
thermoType
|
||||
{
|
||||
type heSolidThermo;
|
||||
mixture pureMixture;
|
||||
transport constIso;
|
||||
thermo hConst;
|
||||
energy sensibleEnthalpy;
|
||||
equationOfState rhoConst;
|
||||
specie specie;
|
||||
|
||||
}
|
||||
|
||||
mixture
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 100;
|
||||
}
|
||||
|
||||
transport
|
||||
{
|
||||
kappa 0.08;
|
||||
}
|
||||
|
||||
thermodynamics
|
||||
{
|
||||
Hf 0;
|
||||
Cp 900;
|
||||
}
|
||||
|
||||
equationOfState
|
||||
{
|
||||
rho 272;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
BIN
tutorials/combustion/fireFoam/les/compartmentFire/constant/polyMesh/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/constant/polyMesh/.DS_Store
vendored
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
31
tutorials/combustion/fireFoam/les/compartmentFire/constant/pyrolysisZones
Executable file
31
tutorials/combustion/fireFoam/les/compartmentFire/constant/pyrolysisZones
Executable file
@ -0,0 +1,31 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format binary;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object pyrolysisZones;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
pyrolysis
|
||||
{
|
||||
active true;
|
||||
|
||||
pyrolysisModel thermo;
|
||||
|
||||
regionName panelRegion;
|
||||
|
||||
noPyrolysisCoeffs
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
192
tutorials/combustion/fireFoam/les/compartmentFire/constant/radiationProperties
Executable file
192
tutorials/combustion/fireFoam/les/compartmentFire/constant/radiationProperties
Executable file
@ -0,0 +1,192 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object radiationProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
radiation on;
|
||||
|
||||
radiationModel fvDOM;
|
||||
|
||||
|
||||
fvDOMCoeffs
|
||||
{
|
||||
nPhi 4;
|
||||
nTheta 4;
|
||||
convergence 1e-3;
|
||||
maxIter 3;
|
||||
}
|
||||
|
||||
// Number of flow iterations per radiation iteration
|
||||
solverFreq 20;
|
||||
|
||||
absorptionEmissionModel greyMeanAbsorptionEmission;
|
||||
|
||||
constantAbsorptionEmissionCoeffs
|
||||
{
|
||||
absorptivity absorptivity [ m^-1 ] 0.1;
|
||||
emissivity emissivity [ m^-1 ] 0.1;
|
||||
E E [ kg m^-1 s^-3 ] 0;
|
||||
}
|
||||
|
||||
greyMeanAbsorptionEmissionCoeffs
|
||||
{
|
||||
//lookUpTableFileName "SpeciesTable";
|
||||
EhrrCoeff 0.2;
|
||||
CO2
|
||||
{
|
||||
Tcommon 200; //Common Temp
|
||||
invTemp true; //Is the polynomio using inverse temperature.
|
||||
Tlow 200; //Low Temp
|
||||
Thigh 2500; //High Temp
|
||||
|
||||
loTcoeffs //coefss for T < Tcommon
|
||||
(
|
||||
0 // a0 +
|
||||
0 // a1*T +
|
||||
0 // a2*T^(+/-)2 +
|
||||
0 // a3*T^(+/-)3 +
|
||||
0 // a4*T^(+/-)4 +
|
||||
0 // a5*T^(+/-)5 +
|
||||
);
|
||||
hiTcoeffs //coefss for T > Tcommon
|
||||
(
|
||||
18.741
|
||||
-121.31e3
|
||||
273.5e6
|
||||
-194.05e9
|
||||
56.31e12
|
||||
-5.8169e15
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
H2O
|
||||
{
|
||||
Tcommon 200;
|
||||
invTemp true;
|
||||
Tlow 200;
|
||||
Thigh 2500;
|
||||
|
||||
loTcoeffs
|
||||
(
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
);
|
||||
hiTcoeffs
|
||||
(
|
||||
-0.23093
|
||||
-1.12390e3
|
||||
9.4153e6
|
||||
-2.99885e9
|
||||
0.51382e12
|
||||
-1.868e10
|
||||
);
|
||||
}
|
||||
|
||||
C7H16
|
||||
{
|
||||
Tcommon 200;
|
||||
Tlow 200;
|
||||
Thigh 2500;
|
||||
invTemp false;
|
||||
|
||||
loTcoeffs
|
||||
(
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
);
|
||||
hiTcoeffs
|
||||
(
|
||||
6.6334
|
||||
-0.0035686
|
||||
1.6682e-8
|
||||
2.5611e-10
|
||||
-2.6558e-14
|
||||
0
|
||||
);
|
||||
}
|
||||
|
||||
O2
|
||||
{
|
||||
Tcommon 200;
|
||||
invTemp true;
|
||||
Tlow 200;
|
||||
Thigh 2500;
|
||||
|
||||
loTcoeffs
|
||||
(
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
);
|
||||
hiTcoeffs
|
||||
(
|
||||
0.1
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
N2
|
||||
{
|
||||
Tcommon 200;
|
||||
invTemp true;
|
||||
Tlow 200;
|
||||
Thigh 2500;
|
||||
|
||||
loTcoeffs
|
||||
(
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
);
|
||||
hiTcoeffs
|
||||
(
|
||||
0.1
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
scatterModel none;
|
||||
|
||||
sootModel none;
|
||||
|
||||
transmissivityModel none;
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,23 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object reactingCloud1Properties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
solution
|
||||
{
|
||||
active false;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
18
tutorials/combustion/fireFoam/les/compartmentFire/constant/reactions
Executable file
18
tutorials/combustion/fireFoam/les/compartmentFire/constant/reactions
Executable file
@ -0,0 +1,18 @@
|
||||
species
|
||||
(
|
||||
O2
|
||||
H2O
|
||||
C7H16
|
||||
CO2
|
||||
N2
|
||||
);
|
||||
|
||||
reactions
|
||||
{
|
||||
HepthaneReaction
|
||||
{
|
||||
type irreversibleinfiniteReaction;
|
||||
//reaction "C3H8 + 5O2 + 18.8N2 = 3CO2 + 4H2O + 18.8N2";
|
||||
reaction "C7H16 + 11O2 + 41.36N2 = 7CO2 + 8H2O + 41.36N2";
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,22 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object SurfaceFilmProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
surfaceFilmModel none;
|
||||
|
||||
regionName none;
|
||||
|
||||
active false;
|
||||
@ -0,0 +1,148 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object thermo.compressibleGas;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
O2
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 31.9988;
|
||||
}
|
||||
thermodynamics
|
||||
{
|
||||
Tlow 200;
|
||||
Thigh 5000;
|
||||
Tcommon 1000;
|
||||
highCpCoeffs ( 3.69758 0.00061352 -1.25884e-07 1.77528e-11 -1.13644e-15 -1233.93 3.18917 );
|
||||
lowCpCoeffs ( 3.21294 0.00112749 -5.75615e-07 1.31388e-09 -8.76855e-13 -1005.25 6.03474 );
|
||||
}
|
||||
transport
|
||||
{
|
||||
As 1.67212e-06;
|
||||
Ts 170.672;
|
||||
}
|
||||
}
|
||||
|
||||
H2O
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 18.0153;
|
||||
}
|
||||
thermodynamics
|
||||
{
|
||||
Tlow 200;
|
||||
Thigh 5000;
|
||||
Tcommon 1000;
|
||||
highCpCoeffs ( 2.67215 0.00305629 -8.73026e-07 1.201e-10 -6.39162e-15 -29899.2 6.86282 );
|
||||
lowCpCoeffs ( 3.38684 0.00347498 -6.3547e-06 6.96858e-09 -2.50659e-12 -30208.1 2.59023 );
|
||||
}
|
||||
transport
|
||||
{
|
||||
As 1.67212e-06;
|
||||
Ts 170.672;
|
||||
}
|
||||
}
|
||||
|
||||
C3H8
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 44.01;
|
||||
}
|
||||
thermodynamics
|
||||
{
|
||||
Tlow 200;
|
||||
Thigh 5000;
|
||||
Tcommon 1000;
|
||||
highCpCoeffs ( 7.5341368 0.018872239 -6.2718491e-06 9.1475649e-10 -4.7838069e-14 -16467.516 -17.892349 );
|
||||
lowCpCoeffs ( 0.93355381 0.026424579 6.1059727e-06 -2.1977499e-08 9.5149253e-12 -13958.52 19.201691 );
|
||||
}
|
||||
transport
|
||||
{
|
||||
As 1.67212e-06;
|
||||
Ts 170.672;
|
||||
}
|
||||
}
|
||||
|
||||
C7H16
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 100.204;
|
||||
}
|
||||
thermodynamics
|
||||
{
|
||||
Tlow 200;
|
||||
Thigh 5000;
|
||||
Tcommon 1000;
|
||||
highCpCoeffs ( 17.470044 0.042134196 -1.6429033e-05 2.9963565e-09 -2.0648765e-13 -31665.823 -64.762071);
|
||||
lowCpCoeffs (11.153248 -0.0094941543 0.00019557118 -2.4975252e-07 9.8487321e-11 -26753.133 -15.922774);
|
||||
}
|
||||
transport
|
||||
{
|
||||
As 1.67212e-06;
|
||||
Ts 170.672;
|
||||
}
|
||||
}
|
||||
|
||||
CO2
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 44.01;
|
||||
}
|
||||
thermodynamics
|
||||
{
|
||||
Tlow 200;
|
||||
Thigh 5000;
|
||||
Tcommon 1000;
|
||||
highCpCoeffs ( 4.45362 0.00314017 -1.27841e-06 2.394e-10 -1.66903e-14 -48967 -0.955396 );
|
||||
lowCpCoeffs ( 2.27572 0.00992207 -1.04091e-05 6.86669e-09 -2.11728e-12 -48373.1 10.1885 );
|
||||
}
|
||||
transport
|
||||
{
|
||||
As 1.67212e-06;
|
||||
Ts 170.672;
|
||||
}
|
||||
}
|
||||
|
||||
N2
|
||||
{
|
||||
specie
|
||||
{
|
||||
nMoles 1;
|
||||
molWeight 28.0134;
|
||||
}
|
||||
thermodynamics
|
||||
{
|
||||
Tlow 200;
|
||||
Thigh 5000;
|
||||
Tcommon 1000;
|
||||
highCpCoeffs ( 2.92664 0.00148798 -5.68476e-07 1.0097e-10 -6.75335e-15 -922.798 5.98053 );
|
||||
lowCpCoeffs ( 3.29868 0.00140824 -3.96322e-06 5.64152e-09 -2.44486e-12 -1020.9 3.95037 );
|
||||
}
|
||||
transport
|
||||
{
|
||||
As 1.67212e-06;
|
||||
Ts 170.672;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,42 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.2;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object thermophysicalProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
thermoType
|
||||
{
|
||||
type hePsiThermo;
|
||||
mixture singleStepReactingMixture;
|
||||
transport sutherland;
|
||||
thermo janaf;
|
||||
energy sensibleEnthalpy;
|
||||
equationOfState perfectGas;
|
||||
specie specie;
|
||||
}
|
||||
|
||||
inertSpecie N2;
|
||||
|
||||
fuel C7H16;
|
||||
|
||||
chemistryReader foamChemistryReader;
|
||||
|
||||
foamChemistryFile "$FOAM_CASE/constant/reactions";
|
||||
|
||||
foamChemistryThermoFile "$FOAM_CASE/constant/thermo.compressibleGas";
|
||||
|
||||
dpdt no;
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,97 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format binary;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object LESProperties;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
simulationType LES;
|
||||
|
||||
LES
|
||||
{
|
||||
LESModel kEqn;
|
||||
|
||||
delta cubeRootVol;
|
||||
|
||||
turbulence on;
|
||||
|
||||
printCoeffs on;
|
||||
|
||||
|
||||
kEqnCoeffs
|
||||
{
|
||||
Ck 0.074;
|
||||
Ce 1.048;
|
||||
}
|
||||
|
||||
cubeRootVolCoeffs
|
||||
{
|
||||
deltaCoeff 1;
|
||||
}
|
||||
|
||||
PrandtlCoeffs
|
||||
{
|
||||
delta cubeRootVol;
|
||||
cubeRootVolCoeffs
|
||||
{
|
||||
deltaCoeff 1;
|
||||
}
|
||||
|
||||
smoothCoeffs
|
||||
{
|
||||
delta cubeRootVol;
|
||||
|
||||
cubeRootVolCoeffs
|
||||
{
|
||||
deltaCoeff 1;
|
||||
}
|
||||
maxDeltaRatio 1.1;
|
||||
}
|
||||
|
||||
Cdelta 0.158;
|
||||
}
|
||||
|
||||
vanDriestCoeffs
|
||||
{
|
||||
delta cubeRootVol;
|
||||
cubeRootVolCoeffs
|
||||
{
|
||||
deltaCoeff 1;
|
||||
}
|
||||
smoothCoeffs
|
||||
{
|
||||
delta cubeRootVol;
|
||||
cubeRootVolCoeffs
|
||||
{
|
||||
deltaCoeff 1;
|
||||
}
|
||||
maxDeltaRatio 1.1;
|
||||
}
|
||||
Aplus 26;
|
||||
Cdelta 0.158;
|
||||
}
|
||||
|
||||
smoothCoeffs
|
||||
{
|
||||
delta cubeRootVol;
|
||||
cubeRootVolCoeffs
|
||||
{
|
||||
deltaCoeff 1;
|
||||
}
|
||||
maxDeltaRatio 1.1;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
231
tutorials/combustion/fireFoam/les/compartmentFire/system/blockMeshDict.m4
Executable file
231
tutorials/combustion/fireFoam/les/compartmentFire/system/blockMeshDict.m4
Executable file
@ -0,0 +1,231 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: dev |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
`format' ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
// General macros to create 2D/extruded-2D meshes
|
||||
|
||||
|
||||
changecom(//)changequote([,])
|
||||
define(calc, [esyscmd(perl -e 'printf ($1)')])
|
||||
define(VCOUNT, 0)
|
||||
define(vlabel, [[// ]Vertex $1 = VCOUNT define($1, VCOUNT)define([VCOUNT], incr(VCOUNT))])
|
||||
define(pi, 3.14159265)
|
||||
define(angle, 45)
|
||||
|
||||
convertToMeters 1;
|
||||
|
||||
/* User parameter for geometry */
|
||||
define(L_square, 0.06)
|
||||
define(R_burner, 0.0475)
|
||||
define(H_box, 0.4)
|
||||
define(L_airBox, 0.4)
|
||||
define(H_airBox, 0.6)
|
||||
|
||||
/* User parameter for mesh resolution */
|
||||
define(dx, 6)
|
||||
define(dz, 6)
|
||||
define(dy, 40)
|
||||
define(d_inlet, 2)//nb of pts between L_square and R_burner
|
||||
define(d_wall, 17)//nb of pts between R_burner and H_box
|
||||
define(dx_airBox, 25)
|
||||
define(dy_airBox, 15)
|
||||
/********************/
|
||||
|
||||
define(X_s, calc(L_square/2))
|
||||
define(Z_s, calc(L_square/2))
|
||||
|
||||
define(angleRad, calc(angle*pi/180))
|
||||
define(X_b, calc(cos(angleRad)*R_burner))
|
||||
define(Z_b, calc(sin(angleRad)*R_burner))
|
||||
|
||||
define(X_h, calc(H_box/2))
|
||||
define(Z_h, calc(H_box/2))
|
||||
|
||||
vertices
|
||||
(
|
||||
// (X Y Z)
|
||||
|
||||
( -X_s 0 -Z_s) //vertex 0
|
||||
( X_s 0 -Z_s) //vertex 1
|
||||
( X_s 0 Z_s) //vertex 2
|
||||
( -X_s 0 Z_s) //vertex 3
|
||||
|
||||
( -X_b 0 -Z_b) //vertex 4
|
||||
( X_b 0 -Z_b) //vertex 5
|
||||
( X_b 0 Z_b) //vertex 6
|
||||
( -X_b 0 Z_b) //vertex 7
|
||||
|
||||
( -X_h 0 -Z_h) //vertex 8
|
||||
( -X_b 0 -Z_h) //vertex 9
|
||||
( X_b 0 -Z_h) //vertex 10
|
||||
( X_h 0 -Z_h) //vertex 11
|
||||
( X_h 0 -Z_b) //vertex 12
|
||||
( X_h 0 Z_b) //vertex 13
|
||||
( X_h 0 Z_h) //vertex 14
|
||||
( X_b 0 Z_h) //vertex 15
|
||||
( -X_b 0 Z_h) //vertex 16
|
||||
( -X_h 0 Z_h) //vertex 17
|
||||
( -X_h 0 Z_b) //vertex 18
|
||||
( -X_h 0 -Z_b) //vertex 19
|
||||
|
||||
|
||||
|
||||
( -X_s H_box -Z_s) //vertex 20
|
||||
( X_s H_box -Z_s) //vertex 21
|
||||
( X_s H_box Z_s) //vertex 22
|
||||
( -X_s H_box Z_s) //vertex 23
|
||||
|
||||
( -X_b H_box -Z_b) //vertex 24
|
||||
( X_b H_box -Z_b) //vertex 25
|
||||
( X_b H_box Z_b) //vertex 26
|
||||
( -X_b H_box Z_b) //vertex 27
|
||||
|
||||
( -X_h H_box -Z_h) //vertex 28
|
||||
( -X_b H_box -Z_h) //vertex 29
|
||||
( X_b H_box -Z_h) //vertex 30
|
||||
( X_h H_box -Z_h) //vertex 31
|
||||
( X_h H_box -Z_b) //vertex 32
|
||||
( X_h H_box Z_b) //vertex 33
|
||||
( X_h H_box Z_h) //vertex 34
|
||||
( X_b H_box Z_h) //vertex 35
|
||||
( -X_b H_box Z_h) //vertex 36
|
||||
( -X_h H_box Z_h) //vertex 37
|
||||
( -X_h H_box Z_b) //vertex 38
|
||||
( -X_h H_box -Z_b) //vertex 39
|
||||
|
||||
( calc(-X_h-L_airBox) 0 -Z_h) //vertex 40
|
||||
( calc(-X_h-L_airBox) 0 -Z_b) //vertex 41
|
||||
( calc(-X_h-L_airBox) 0 Z_b) //vertex 42
|
||||
( calc(-X_h-L_airBox) 0 Z_h) //vertex 43
|
||||
|
||||
( calc(-X_h-L_airBox) H_box -Z_h) //vertex 44
|
||||
( calc(-X_h-L_airBox) H_box -Z_b) //vertex 45
|
||||
( calc(-X_h-L_airBox) H_box Z_b) //vertex 46
|
||||
( calc(-X_h-L_airBox) H_box Z_h) //vertex 47
|
||||
|
||||
( -X_h H_airBox -Z_h) //vertex 48
|
||||
( -X_h H_airBox -Z_b) //vertex 49
|
||||
( -X_h H_airBox Z_b) //vertex 50
|
||||
( -X_h H_airBox Z_h) //vertex 51
|
||||
|
||||
( calc(-X_h-L_airBox) H_airBox -Z_h) //vertex 52
|
||||
( calc(-X_h-L_airBox) H_airBox -Z_b) //vertex 53
|
||||
( calc(-X_h-L_airBox) H_airBox Z_b) //vertex 54
|
||||
( calc(-X_h-L_airBox) H_airBox Z_h) //vertex 55
|
||||
|
||||
);
|
||||
|
||||
blocks
|
||||
(
|
||||
hex (0 1 21 20 3 2 22 23) (dx dy dz) simpleGrading (1 1 1) //Block 0
|
||||
hex (4 5 25 24 0 1 21 20) (dx dy d_inlet) simpleGrading (1 1 1) //Block 1
|
||||
hex (1 5 25 21 2 6 26 22) (d_inlet dy dz) simpleGrading (1 1 1) //Block 2
|
||||
hex (3 2 22 23 7 6 26 27) (dx dy d_inlet) simpleGrading (1 1 1) //Block 3
|
||||
hex (4 0 20 24 7 3 23 27) (d_inlet dy dz) simpleGrading (1 1 1) //Block 4
|
||||
hex (8 9 29 28 19 4 24 39) (d_wall dy d_wall) simpleGrading (1 1 1) //Block 5
|
||||
hex (9 10 30 29 4 5 25 24) (dx dy d_wall) simpleGrading (1 1 1) //Block 6
|
||||
hex (10 11 31 30 5 12 32 25) (d_wall dy d_wall) simpleGrading (1 1 1) //Block 7
|
||||
hex (5 12 32 25 6 13 33 26) (d_wall dy dz) simpleGrading (1 1 1) //Block 8
|
||||
hex (6 13 33 26 15 14 34 35) (d_wall dy d_wall) simpleGrading (1 1 1) //Block 9
|
||||
hex (7 6 26 27 16 15 35 36) (dx dy d_wall) simpleGrading (1 1 1) //Block 10
|
||||
hex (18 7 27 38 17 16 36 37) (d_wall dy d_wall) simpleGrading (1 1 1) //Block 11
|
||||
hex (19 4 24 39 18 7 27 38) (d_wall dy dz) simpleGrading (1 1 1) //Block 12
|
||||
|
||||
hex (40 8 28 44 41 19 39 45) (dx_airBox dy d_wall) simpleGrading (0.416667 1 1) //Block 13
|
||||
hex (41 19 39 45 42 18 38 46) (dx_airBox dy dz) simpleGrading (0.416667 1 1) //Block 14
|
||||
hex (42 18 38 46 43 17 37 47) (dx_airBox dy d_wall) simpleGrading (0.416667 1 1) //Block 15
|
||||
|
||||
hex (44 28 48 52 45 39 49 53) (dx_airBox dy_airBox d_wall) simpleGrading (0.416667 1.72 1) //Block 16
|
||||
hex (45 39 49 53 46 38 50 54) (dx_airBox dy_airBox dz) simpleGrading (0.416667 1.72 1) //Block 17
|
||||
hex (46 38 50 54 47 37 51 55) (dx_airBox dy_airBox d_wall) simpleGrading (0.416667 1.72 1) //Block 18
|
||||
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
arc 4 5 (0 0 -R_burner)
|
||||
arc 5 6 (R_burner 0 0)
|
||||
arc 6 7 (0 0 R_burner)
|
||||
arc 7 4 (-R_burner 0 0)
|
||||
|
||||
arc 24 25 (0 H_box -R_burner)
|
||||
arc 25 26 (R_burner H_box 0)
|
||||
arc 26 27 (0 H_box R_burner)
|
||||
arc 27 24 (-R_burner H_box 0)
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(0 1 2 3)
|
||||
(1 5 6 2)
|
||||
(3 2 6 7)
|
||||
(4 0 3 7)
|
||||
(4 5 1 0)
|
||||
);
|
||||
}
|
||||
|
||||
entrainment
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(40 8 19 41)
|
||||
(41 19 18 42)
|
||||
(42 18 17 43)
|
||||
|
||||
(40 8 28 44)
|
||||
(44 28 48 52)
|
||||
|
||||
(41 40 44 45)
|
||||
(42 41 45 46)
|
||||
(43 42 46 47)
|
||||
|
||||
(45 44 52 53)
|
||||
(46 45 53 54)
|
||||
(47 46 54 55)
|
||||
|
||||
(17 43 47 37)
|
||||
(37 47 55 51)
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(52 48 49 53)
|
||||
(53 49 50 54)
|
||||
(54 50 51 55)
|
||||
|
||||
(28 39 49 48)
|
||||
(39 38 50 49)
|
||||
(38 37 51 50)
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
mergePatchPairs
|
||||
(
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
173
tutorials/combustion/fireFoam/les/compartmentFire/system/controlDict
Executable file
173
tutorials/combustion/fireFoam/les/compartmentFire/system/controlDict
Executable file
@ -0,0 +1,173 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object controlDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
application fireFoam;
|
||||
|
||||
startFrom latestTime;
|
||||
|
||||
startTime 0;
|
||||
|
||||
stopAt endTime;
|
||||
|
||||
endTime 350;
|
||||
|
||||
deltaT 0.001;
|
||||
|
||||
writeControl adjustableRunTime;
|
||||
|
||||
writeInterval 10;
|
||||
|
||||
purgeWrite 0;
|
||||
|
||||
writeFormat ascii;
|
||||
|
||||
writePrecision 6;
|
||||
|
||||
writeCompression uncompressed;
|
||||
|
||||
timeFormat general;
|
||||
|
||||
timePrecision 6;
|
||||
|
||||
graphFormat raw;
|
||||
|
||||
runTimeModifiable yes;
|
||||
|
||||
adjustTimeStep yes;
|
||||
|
||||
maxCo 1.2;
|
||||
|
||||
maxDi 0.25;
|
||||
|
||||
maxDeltaT 0.01;
|
||||
|
||||
functions
|
||||
{
|
||||
patchInlet_phi
|
||||
{
|
||||
type surfaceFieldValue;
|
||||
functionObjectLibs ("libfieldFunctionObjects.so");
|
||||
enabled true;
|
||||
writeControl timeStep;
|
||||
writeInterval 20;
|
||||
log true;
|
||||
writeFields no;
|
||||
regionType patch;
|
||||
name inlet;
|
||||
operation sum;
|
||||
fields (phi);
|
||||
}
|
||||
|
||||
wallPanel_Qin
|
||||
{
|
||||
type patchProbes;
|
||||
functionObjectLibs ("libsampling.so");
|
||||
enabled true;
|
||||
writeControl outputTime;
|
||||
writeInterval 20;
|
||||
log true;
|
||||
patchName region0_to_panelRegion_wallPanel;
|
||||
probeLocations
|
||||
(
|
||||
( 0.15 0.0 0.01 ) //HF2
|
||||
( 0.2 0.2 0.01 ) //HF3
|
||||
( 0.0 0.4 0.01 ) //HF4
|
||||
);
|
||||
fields (Qin);
|
||||
}
|
||||
|
||||
inletQr_Qin
|
||||
{
|
||||
type patchProbes;
|
||||
functionObjectLibs ("libsampling.so");
|
||||
enabled true;
|
||||
writeControl outputTime;
|
||||
writeInterval 20;
|
||||
log true;
|
||||
patchName inlet;
|
||||
probeLocations
|
||||
(
|
||||
( 0.0 0.0 0.0 ) //HF1
|
||||
( 0.02 0.0 0.02 ) //HF2
|
||||
( 0.02 0.0 -0.02 ) //HF3
|
||||
( -0.02 0.0 0.02 ) //HF4
|
||||
( -0.02 0.0 -0.02 ) //HF5
|
||||
);
|
||||
fields (Qr Qin);
|
||||
}
|
||||
|
||||
thermoCouple
|
||||
{
|
||||
type thermoCoupleProbes;
|
||||
|
||||
functionObjectLibs ("libutilityFunctionObjects.so");
|
||||
writeControl timeStep;
|
||||
writeInterval 100;
|
||||
|
||||
solver Euler;
|
||||
absTol 1e-4;
|
||||
relTol 1e-1;
|
||||
|
||||
interpolationScheme cell;
|
||||
|
||||
// thermocouple properties
|
||||
rho 8908;
|
||||
Cp 440;
|
||||
d 1e-3;
|
||||
epsilon 0.9;
|
||||
|
||||
radName G;
|
||||
|
||||
probeLocations
|
||||
(
|
||||
(-0.18 0.02 0.0) // 0.02m [TC11]
|
||||
(-0.18 0.1 0.0) // 0.1m [TC9]
|
||||
(-0.18 0.3 0.0) // 0.3m [TC?]
|
||||
(-0.18 0.38 0.0) // 0.39m [TC2]
|
||||
|
||||
(0 0.38 0.0) // 0.38m [TC17]
|
||||
(0 0.26 0.0) // 0.26m [TC18]
|
||||
(0.01 0.14 0.0) // 0.14m [TC19]
|
||||
|
||||
|
||||
(-0.2 0.015 0.0) // 0.015m [TC12]
|
||||
(-0.2 0.0385 0.0) // 0.0385m [TC1]
|
||||
|
||||
(0.18 0.02 0.0) // 0.02m [TC16]
|
||||
(0.18 0.14 0.0) // 0.14m [TC15]
|
||||
(0.18 0.26 0.0) // 0.26m [TC14]
|
||||
(0.18 0.38 0.0) // 0.38m [TC13]
|
||||
);
|
||||
fields (T);
|
||||
}
|
||||
|
||||
probes_O2
|
||||
{
|
||||
type probes;
|
||||
functionObjectLibs ("libsampling.so");
|
||||
writeControl outputTime;
|
||||
writeInterval 30;
|
||||
probeLocations
|
||||
(
|
||||
(-0.1 0.02 0.0) //lower Gas
|
||||
(-0.1 0.38 0.0) //Upper Gas
|
||||
);
|
||||
fields (O2);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
79
tutorials/combustion/fireFoam/les/compartmentFire/system/createPatchDict
Executable file
79
tutorials/combustion/fireFoam/les/compartmentFire/system/createPatchDict
Executable file
@ -0,0 +1,79 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object createPatchDict;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// This application/dictionary controls:
|
||||
// - optional: create new patches from boundary faces (either given as
|
||||
// a set of patches or as a faceSet)
|
||||
// - always: order faces on coupled patches such that they are opposite. This
|
||||
// is done for all coupled faces, not just for any patches created.
|
||||
// - optional: synchronise points on coupled patches.
|
||||
|
||||
// 1. Create cyclic:
|
||||
// - specify where the faces should come from
|
||||
// - specify the type of cyclic. If a rotational specify the rotationAxis
|
||||
// and centre to make matching easier
|
||||
// - pointSync true to guarantee points to line up.
|
||||
|
||||
// 2. Correct incorrect cyclic:
|
||||
// This will usually fail upon loading:
|
||||
// "face 0 area does not match neighbour 2 by 0.0100005%"
|
||||
// " -- possible face ordering problem."
|
||||
// - change patch type from 'cyclic' to 'patch' in the polyMesh/boundary file.
|
||||
// - loosen match tolerance to get case to load
|
||||
// - regenerate cyclic as above
|
||||
|
||||
|
||||
// Tolerance used in matching faces. Absolute tolerance is span of
|
||||
// face times this factor. To load incorrectly matches meshes set this
|
||||
// to a higher value.
|
||||
matchTolerance 1E-3;
|
||||
|
||||
// Do a synchronisation of coupled points after creation of any patches.
|
||||
pointSync true;
|
||||
|
||||
// Patches to create.
|
||||
patches
|
||||
(
|
||||
{
|
||||
// Name of new patch
|
||||
name inlet;
|
||||
|
||||
// Type of new patch
|
||||
patchInfo
|
||||
{
|
||||
type patch;
|
||||
|
||||
// Optional: explicitly set transformation tensor.
|
||||
// Used when matching and synchronising points.
|
||||
//transform translational;
|
||||
//separationVector (-2289 0 0);
|
||||
transform rotational;
|
||||
rotationAxis (1 0 0);
|
||||
rotationCentre (0 0 0);
|
||||
}
|
||||
|
||||
// How to construct: either from 'patches' or 'set'
|
||||
constructFrom set;
|
||||
|
||||
// If constructFrom = patches : names of patches. Wildcards allowed.
|
||||
patches ("periodic.*");
|
||||
|
||||
// If constructFrom = set : name of faceSet
|
||||
set inletFace;
|
||||
}
|
||||
);
|
||||
// ************************************************************************* //
|
||||
45
tutorials/combustion/fireFoam/les/compartmentFire/system/decomposeParDict
Executable file
45
tutorials/combustion/fireFoam/les/compartmentFire/system/decomposeParDict
Executable file
@ -0,0 +1,45 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object decomposeParDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
numberOfSubdomains 8;
|
||||
|
||||
method scotch;
|
||||
|
||||
simpleCoeffs
|
||||
{
|
||||
n ( 4 1 4 );
|
||||
delta 0.001;
|
||||
}
|
||||
|
||||
hierarchicalCoeffs
|
||||
{
|
||||
n ( 1 2 2 );
|
||||
delta 0.001;
|
||||
order xyz;
|
||||
}
|
||||
|
||||
manualCoeffs
|
||||
{
|
||||
dataFile "cellDecomposition";
|
||||
}
|
||||
|
||||
metisCoeffs
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,39 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object extrudeToRegionMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
region panelRegion;
|
||||
|
||||
faceZones (wallPanel internalWallPanel);
|
||||
|
||||
oneD true;
|
||||
|
||||
sampleMode nearestPatchFace;
|
||||
|
||||
extrudeModel linearNormal;
|
||||
|
||||
oneDPolyPatchType empty;
|
||||
|
||||
nLayers 15;
|
||||
|
||||
expansionRatio 1.2;
|
||||
|
||||
adaptMesh true; // directMapped for both
|
||||
|
||||
linearNormalCoeffs
|
||||
{
|
||||
thickness 0.0254;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
71
tutorials/combustion/fireFoam/les/compartmentFire/system/fvSchemes
Executable file
71
tutorials/combustion/fireFoam/les/compartmentFire/system/fvSchemes
Executable file
@ -0,0 +1,71 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object fvSchemes;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
ddtSchemes
|
||||
{
|
||||
default Euler;
|
||||
}
|
||||
|
||||
gradSchemes
|
||||
{
|
||||
default Gauss linear;
|
||||
}
|
||||
|
||||
divSchemes
|
||||
{
|
||||
default none;
|
||||
|
||||
div(phi,U) Gauss upwind;
|
||||
div(phi,K) Gauss linear;
|
||||
div(phi,k) Gauss limitedLinear 1;
|
||||
div(phi,Yi_h) Gauss multivariateSelection
|
||||
{
|
||||
O2 limitedLinear01 1;
|
||||
C7H16 limitedLinear01 1;
|
||||
C3H8 limitedLinear01 1;
|
||||
N2 limitedLinear01 1;
|
||||
H2O limitedLinear01 1;
|
||||
CO2 limitedLinear01 1;
|
||||
h limitedLinear 1;
|
||||
};
|
||||
div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
|
||||
div(Ji,Ii_h) Gauss upwind;
|
||||
}
|
||||
|
||||
laplacianSchemes
|
||||
{
|
||||
default Gauss linear uncorrected;
|
||||
}
|
||||
|
||||
interpolationSchemes
|
||||
{
|
||||
default linear;
|
||||
}
|
||||
|
||||
snGradSchemes
|
||||
{
|
||||
default uncorrected;
|
||||
}
|
||||
|
||||
fluxRequired
|
||||
{
|
||||
default no;
|
||||
p_rgh;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
94
tutorials/combustion/fireFoam/les/compartmentFire/system/fvSolution
Executable file
94
tutorials/combustion/fireFoam/les/compartmentFire/system/fvSolution
Executable file
@ -0,0 +1,94 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object fvSolution;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
solvers
|
||||
{
|
||||
"(rho|rhoFinal)"
|
||||
{
|
||||
solver PCG;
|
||||
preconditioner DIC;
|
||||
tolerance 1e-06;
|
||||
relTol 0;
|
||||
};
|
||||
|
||||
|
||||
p_rgh
|
||||
{
|
||||
solver GAMG;
|
||||
tolerance 1e-7;
|
||||
relTol 0.01;
|
||||
smoother GaussSeidel;
|
||||
cacheAgglomeration true;
|
||||
nCellsInCoarsestLevel 10;
|
||||
agglomerator faceAreaPair;
|
||||
mergeLevels 1;
|
||||
};
|
||||
|
||||
p_rghFinal
|
||||
{
|
||||
$p_rgh;
|
||||
tolerance 1e-7;
|
||||
relTol 0;
|
||||
};
|
||||
|
||||
"(U|Yi|h|k)"
|
||||
{
|
||||
solver smoothSolver;
|
||||
smoother GaussSeidel;
|
||||
tolerance 1e-07;
|
||||
relTol 0.1;
|
||||
}
|
||||
"(U|Yi|h|k)Final"
|
||||
{
|
||||
$U;
|
||||
tolerance 1e-7;
|
||||
relTol 0;
|
||||
};
|
||||
|
||||
Ii
|
||||
{
|
||||
solver GAMG;
|
||||
tolerance 1e-4;
|
||||
relTol 0;
|
||||
smoother symGaussSeidel;
|
||||
cacheAgglomeration true;
|
||||
nCellsInCoarsestLevel 10;
|
||||
agglomerator faceAreaPair;
|
||||
mergeLevels 1;
|
||||
maxIter 1;
|
||||
}
|
||||
}
|
||||
|
||||
PIMPLE
|
||||
{
|
||||
momentumPredictor yes;
|
||||
nOuterCorrectors 3;
|
||||
nCorrectors 2;
|
||||
nNonOrthogonalCorrectors 0;
|
||||
}
|
||||
|
||||
relaxationFactors
|
||||
{
|
||||
equations
|
||||
{
|
||||
"(U|k).*" 1;
|
||||
"(C7H16|O2|H2O|CO2|h).*" 1;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,52 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.7 |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object decomposeParDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
numberOfSubdomains 20;
|
||||
|
||||
method structured;
|
||||
|
||||
structuredCoeffs
|
||||
{
|
||||
method simple;
|
||||
patches (region0_to_panelRegion_wallPanel region0_to_panelRegion_internalWallPanel_top region0_to_panelRegion_internalWallPanel_bottom);
|
||||
|
||||
simpleCoeffs
|
||||
{
|
||||
n ( 5 1 4 );
|
||||
delta 0.001;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
hierarchicalCoeffs
|
||||
{
|
||||
n ( 1 2 2 );
|
||||
delta 0.001;
|
||||
order xyz;
|
||||
}
|
||||
|
||||
manualCoeffs
|
||||
{
|
||||
dataFile "cellDecomposition";
|
||||
}
|
||||
|
||||
metisCoeffs
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,56 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.6 |
|
||||
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object fvSchemes;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
ddtSchemes
|
||||
{
|
||||
default Euler;
|
||||
}
|
||||
|
||||
gradSchemes
|
||||
{
|
||||
default Gauss linear;
|
||||
}
|
||||
|
||||
divSchemes
|
||||
{
|
||||
default none;
|
||||
}
|
||||
|
||||
laplacianSchemes
|
||||
{
|
||||
default none;
|
||||
//laplacian(K,T) Gauss linear uncorrected;
|
||||
laplacian(kappa,T) Gauss harmonic uncorrected;
|
||||
laplacian(thermo:alpha,h) Gauss harmonic uncorrected;
|
||||
}
|
||||
|
||||
interpolationSchemes
|
||||
{
|
||||
default linear;
|
||||
//default none;
|
||||
}
|
||||
|
||||
snGradSchemes
|
||||
{
|
||||
default uncorrected;
|
||||
}
|
||||
|
||||
fluxRequired
|
||||
{
|
||||
default no;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,38 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.6 |
|
||||
| \\ / A nd | Web: http://www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object fvSolution;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
solvers
|
||||
{
|
||||
h
|
||||
{
|
||||
solver PCG;
|
||||
preconditioner DIC;
|
||||
tolerance 1e-6;
|
||||
relTol 0;
|
||||
}
|
||||
}
|
||||
|
||||
SIMPLE
|
||||
{
|
||||
nNonOrthCorr 1;
|
||||
}
|
||||
|
||||
relaxationFactors
|
||||
{
|
||||
h 1;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
332
tutorials/combustion/fireFoam/les/compartmentFire/system/snappyHexMeshDict
Executable file
332
tutorials/combustion/fireFoam/les/compartmentFire/system/snappyHexMeshDict
Executable file
@ -0,0 +1,332 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object snappyHexMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// Which of the steps to run
|
||||
castellatedMesh true;
|
||||
snap false;
|
||||
addLayers false;
|
||||
|
||||
|
||||
// Geometry. Definition of all surfaces. All surfaces are of class
|
||||
// searchableSurface.
|
||||
// Surfaces are used
|
||||
// - to specify refinement for any mesh cell intersecting it
|
||||
// - to specify refinement for any mesh cell inside/outside/near
|
||||
// - to 'snap' the mesh boundary to the surface
|
||||
geometry
|
||||
{
|
||||
box1 //0.6x1x0.02 [cm]
|
||||
{
|
||||
type searchableBox;
|
||||
min (-0.1 -0.01 -0.1);
|
||||
max (0.1 0.30 0.1);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
// Settings for the castellatedMesh generation.
|
||||
castellatedMeshControls
|
||||
{
|
||||
|
||||
// Refinement parameters
|
||||
// ~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
// If local number of cells is >= maxLocalCells on any processor
|
||||
// switches from from refinement followed by balancing
|
||||
// (current method) to (weighted) balancing before refinement.
|
||||
maxLocalCells 1000000;
|
||||
|
||||
// Overall cell limit (approximately). Refinement will stop immediately
|
||||
// upon reaching this number so a refinement level might not complete.
|
||||
// Note that this is the number of cells before removing the part which
|
||||
// is not 'visible' from the keepPoint. The final number of cells might
|
||||
// actually be a lot less.
|
||||
maxGlobalCells 2000000;
|
||||
|
||||
// The surface refinement loop might spend lots of iterations refining just a
|
||||
// few cells. This setting will cause refinement to stop if <= minimumRefine
|
||||
// are selected for refinement. Note: it will at least do one iteration
|
||||
// (unless the number of cells to refine is 0)
|
||||
minRefinementCells 100;
|
||||
|
||||
// Number of buffer layers between different levels.
|
||||
// 1 means normal 2:1 refinement restriction, larger means slower
|
||||
// refinement.
|
||||
nCellsBetweenLevels 1;
|
||||
|
||||
// Region-wise refinement
|
||||
// ~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
// Specifies refinement level for cells in relation to a surface. One of
|
||||
// three modes
|
||||
// - distance. 'levels' specifies per distance to the surface the
|
||||
// wanted refinement level. The distances need to be specified in
|
||||
// descending order.
|
||||
// - inside. 'levels' is only one entry and only the level is used. All
|
||||
// cells inside the surface get refined up to the level. The surface
|
||||
// needs to be closed for this to be possible.
|
||||
// - outside. Same but cells outside.
|
||||
|
||||
features
|
||||
(
|
||||
);
|
||||
resolveFeatureAngle 0;
|
||||
|
||||
refinementSurfaces
|
||||
{
|
||||
}
|
||||
|
||||
refinementRegions
|
||||
{
|
||||
box1
|
||||
{
|
||||
mode inside;
|
||||
levels ((1.0 1));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Mesh selection
|
||||
// ~~~~~~~~~~~~~~
|
||||
|
||||
// After refinement patches get added for all refinementSurfaces and
|
||||
// all cells intersecting the surfaces get put into these patches. The
|
||||
// section reachable from the locationInMesh is kept.
|
||||
// NOTE: This point should never be on a face, always inside a cell, even
|
||||
// after refinement.
|
||||
locationInMesh (0.01 0 0.001);
|
||||
|
||||
|
||||
// Whether any faceZones (as specified in the refinementSurfaces)
|
||||
// are only on the boundary of corresponding cellZones or also allow
|
||||
// free-standing zone faces. Not used if there are no faceZones.
|
||||
allowFreeStandingZoneFaces true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Settings for the snapping.
|
||||
snapControls
|
||||
{
|
||||
//- Number of patch smoothing iterations before finding correspondence
|
||||
// to surface
|
||||
nSmoothPatch 3;
|
||||
|
||||
//- Relative distance for points to be attracted by surface feature point
|
||||
// or edge. True distance is this factor times local
|
||||
// maximum edge length.
|
||||
tolerance 4.0;
|
||||
|
||||
//- Number of mesh displacement relaxation iterations.
|
||||
nSolveIter 30;
|
||||
|
||||
//- Maximum number of snapping relaxation iterations. Should stop
|
||||
// before upon reaching a correct mesh.
|
||||
nRelaxIter 5;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Settings for the layer addition.
|
||||
addLayersControls
|
||||
{
|
||||
// Are the thickness parameters below relative to the undistorted
|
||||
// size of the refined cell outside layer (true) or absolute sizes (false).
|
||||
relativeSizes false;
|
||||
|
||||
// Layer thickness specification. This can be specified in one of following
|
||||
// ways:
|
||||
// - expansionRatio and finalLayerThickness (cell nearest internal mesh)
|
||||
// - expansionRatio and firstLayerThickness (cell on surface)
|
||||
// - overall thickness and firstLayerThickness
|
||||
// - overall thickness and finalLayerThickness
|
||||
// - overall thickness and expansionRatio
|
||||
//
|
||||
// Note: the mode thus selected is global, i.e. one cannot override the
|
||||
// mode on a per-patch basis (only the values can be overridden)
|
||||
|
||||
// Expansion factor for layer mesh
|
||||
expansionRatio 1.0;
|
||||
|
||||
// Wanted thickness of the layer furthest away from the wall.
|
||||
// If relativeSizes this is relative to undistorted size of cell
|
||||
// outside layer.
|
||||
finalLayerThickness 0.3;
|
||||
|
||||
// Wanted thickness of the layer next to the wall.
|
||||
// If relativeSizes this is relative to undistorted size of cell
|
||||
// outside layer.
|
||||
//firstLayerThickness 0.3;
|
||||
|
||||
// Wanted overall thickness of layers.
|
||||
// If relativeSizes this is relative to undistorted size of cell
|
||||
// outside layer.
|
||||
//thickness 0.5
|
||||
|
||||
|
||||
// Minimum overall thickness of total layers. If for any reason layer
|
||||
// cannot be above minThickness do not add layer.
|
||||
// If relativeSizes this is relative to undistorted size of cell
|
||||
// outside layer..
|
||||
minThickness 0.25;
|
||||
|
||||
// Per final patch (so not geometry!) the layer information
|
||||
// Note: This behaviour changed after 21x. Any non-mentioned patches
|
||||
// now slide unless:
|
||||
// - nSurfaceLayers is explicitly mentioned to be 0.
|
||||
// - angle to nearest surface < slipFeatureAngle (see below)
|
||||
layers
|
||||
{
|
||||
}
|
||||
// If points get not extruded do nGrow layers of connected faces that are
|
||||
// also not grown. This helps convergence of the layer addition process
|
||||
// close to features.
|
||||
// Note: changed(corrected) w.r.t 17x! (didn't do anything in 17x)
|
||||
nGrow 0;
|
||||
// Advanced settings
|
||||
|
||||
|
||||
// Static analysis of starting mesh
|
||||
|
||||
// When not to extrude surface. 0 is flat surface, 90 is when two faces
|
||||
// are perpendicular
|
||||
featureAngle 130;
|
||||
|
||||
// Stop layer growth on highly warped cells
|
||||
maxFaceThicknessRatio 0.5;
|
||||
|
||||
|
||||
// Patch displacement
|
||||
|
||||
// Number of smoothing iterations of surface normals
|
||||
nSmoothSurfaceNormals 1;
|
||||
|
||||
// Smooth layer thickness over surface patches
|
||||
nSmoothThickness 10;
|
||||
|
||||
// Mesh shrinking
|
||||
|
||||
// Optional: at non-patched sides allow mesh to slip if extrusion
|
||||
// direction makes angle larger than slipFeatureAngle. Default is
|
||||
// 0.5*featureAngle.
|
||||
slipFeatureAngle 30;
|
||||
|
||||
// Maximum number of snapping relaxation iterations. Should stop
|
||||
// before upon reaching a correct mesh.
|
||||
nRelaxIter 5;
|
||||
|
||||
// Create buffer region for new layer terminations
|
||||
nBufferCellsNoExtrude 0;
|
||||
|
||||
// Overall max number of layer addition iterations. The mesher will
|
||||
// exit if it reaches this number of iterations; possibly with an
|
||||
// illegal mesh.
|
||||
nLayerIter 50;
|
||||
|
||||
// Max number of iterations after which relaxed meshQuality controls
|
||||
// get used. Up to nRelaxedIter it uses the settings in
|
||||
// meshQualityControls,
|
||||
// after nRelaxedIter it uses the values in
|
||||
// meshQualityControls::relaxed.
|
||||
nRelaxedIter 20;
|
||||
|
||||
// Additional reporting: if there are just a few faces where there
|
||||
// are mesh errors (after adding the layers) print their face centres.
|
||||
// This helps in tracking down problematic mesh areas.
|
||||
//additionalReporting true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Generic mesh quality settings. At any undoable phase these determine
|
||||
// where to undo.
|
||||
meshQualityControls
|
||||
{
|
||||
//- Maximum non-orthogonality allowed. Set to 180 to disable.
|
||||
maxNonOrtho 65;
|
||||
|
||||
//- Max skewness allowed. Set to <0 to disable.
|
||||
maxBoundarySkewness 20;
|
||||
maxInternalSkewness 4;
|
||||
|
||||
//- Max concaveness allowed. Is angle (in degrees) below which concavity
|
||||
// is allowed. 0 is straight face, <0 would be convex face.
|
||||
// Set to 180 to disable.
|
||||
maxConcave 80;
|
||||
|
||||
//- Minimum pyramid volume. Is absolute volume of cell pyramid.
|
||||
// Set to a sensible fraction of the smallest cell volume expected.
|
||||
// Set to very negative number (e.g. -1E30) to disable.
|
||||
minVol 1e-13;
|
||||
|
||||
//- Minimum tet volume. Is absolute volume of the tet formed by the
|
||||
// face-centre decomposition triangle and the cell centre.
|
||||
// Set to a sensible fraction of the smallest cell volume expected.
|
||||
// Set to very negative number (e.g. -1E30) to disable.
|
||||
minTetVol 1e-20;
|
||||
|
||||
minTetQuality -1;
|
||||
|
||||
//- Minimum face area. Set to <0 to disable.
|
||||
minArea -1;
|
||||
|
||||
//- Minimum face twist. Set to <-1 to disable. dot product of face normal
|
||||
//- and face centre triangles normal
|
||||
minTwist 0.05;
|
||||
|
||||
//- minimum normalised cell determinant
|
||||
//- 1 = hex, <= 0 = folded or flattened illegal cell
|
||||
// minDeterminant 0.001;
|
||||
minDeterminant 1;
|
||||
|
||||
//- minFaceWeight (0 -> 0.5)
|
||||
minFaceWeight 0.05;
|
||||
|
||||
//- minVolRatio (0 -> 1)
|
||||
minVolRatio 0.01;
|
||||
|
||||
//must be >0 for Fluent compatibility
|
||||
minTriangleTwist -1;
|
||||
|
||||
|
||||
// Advanced
|
||||
|
||||
//- Number of error distribution iterations
|
||||
nSmoothScale 4;
|
||||
//- amount to scale back displacement at error points
|
||||
errorReduction 0.75;
|
||||
}
|
||||
|
||||
|
||||
// Advanced
|
||||
|
||||
// Flags for optional output
|
||||
// 0 : only write final meshes
|
||||
// 1 : write intermediate meshes
|
||||
// 2 : write volScalarField with cellLevel for postprocessing
|
||||
// 4 : write current intersections as .obj files
|
||||
debug 0;
|
||||
|
||||
|
||||
// Merge tolerance. Is fraction of overall bounding box of initial mesh.
|
||||
// Note: the write tolerance needs to be higher than this.
|
||||
mergeTolerance 1E-6;
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
246
tutorials/combustion/fireFoam/les/compartmentFire/system/topoSetDict
Executable file
246
tutorials/combustion/fireFoam/les/compartmentFire/system/topoSetDict
Executable file
@ -0,0 +1,246 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: plus |
|
||||
| \\ / A nd | Web: www.OpenFOAM.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object topoSetDict;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
actions
|
||||
(
|
||||
{
|
||||
name slot_bottom;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.201 -0.001 -0.201)(-0.199 0.031 0.201);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name slot_bottom;
|
||||
type faceZoneSet;
|
||||
action new;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet slot_bottom;
|
||||
}
|
||||
}
|
||||
{
|
||||
name slot_top;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.201 0.369 -0.201)(-0.199 0.401 0.201);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name slot_top;
|
||||
type faceZoneSet;
|
||||
action new;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet slot_top;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name inletFace;
|
||||
type faceSet;
|
||||
action new;
|
||||
source patchToFace;
|
||||
sourceInfo
|
||||
{
|
||||
name inlet;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name compartment_fire;
|
||||
type cellSet;
|
||||
action new;
|
||||
source boxToCell;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.201 -0.001 -0.201)(0.201 0.401 0.201);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name compartment_fire;
|
||||
type cellZoneSet;
|
||||
action new;
|
||||
source setToCellZone;
|
||||
sourceInfo
|
||||
{
|
||||
set compartment_fire;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name internalWallPanel;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.2001 0.0301 -0.2001)(-0.1999 0.3701 0.2001);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name internalWallPanel;
|
||||
type faceZoneSet;
|
||||
action new;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet internalWallPanel;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallFaces_back;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.2001 -0.0001 -0.2001)(0.2001 0.4001 -0.1999);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallFaces_front;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.2001 -0.0001 0.1999)(0.2001 0.4001 0.2001);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallFaces_top;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.2001 0.3999 -0.2001)(0.2001 0.4001 0.2001);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallFaces_side;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (0.1999 -0.0001 -0.2001)(0.2001 0.4001 0.2001);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallPanel;
|
||||
type faceZoneSet;
|
||||
action new;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet wallFaces_back;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallPanel;
|
||||
type faceZoneSet;
|
||||
action add;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet wallFaces_front;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallPanel;
|
||||
type faceZoneSet;
|
||||
action add;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet wallFaces_top;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallPanel;
|
||||
type faceZoneSet;
|
||||
action add;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet wallFaces_side;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name baseFace;
|
||||
type faceSet;
|
||||
action new;
|
||||
source boxToFace;
|
||||
sourceInfo
|
||||
{
|
||||
box (-0.2001 -0.001 -0.2001)(0.2001 0.001 0.2001);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallPanel;
|
||||
type faceZoneSet;
|
||||
action add;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet baseFace;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
name wallPanel;
|
||||
type faceZoneSet;
|
||||
action delete;
|
||||
source setToFaceZone;
|
||||
sourceInfo
|
||||
{
|
||||
faceSet inletFace;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
);
|
||||
|
||||
// ************************************************************************* //
|
||||
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/Probes/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/Probes/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/Probes/Oxygen/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/Probes/Oxygen/.DS_Store
vendored
Normal file
Binary file not shown.
@ -0,0 +1,352 @@
|
||||
#Time Upper_O2 Lower_O2
|
||||
0 20.9443104 20.91435356
|
||||
1 20.8993248 20.90671472
|
||||
2 20.8718336 20.91944612
|
||||
3 20.8593376 20.91689984
|
||||
4 20.8093536 20.90254808
|
||||
5 20.7506224 20.8988444
|
||||
6 20.739376 20.88356672
|
||||
7 20.6344096 20.87615936
|
||||
8 20.6131664 20.86250204
|
||||
9 20.5119488 20.84606696
|
||||
10 20.4932048 20.83611332
|
||||
11 20.3982352 20.81990972
|
||||
12 20.3682448 20.7900488
|
||||
13 20.2545312 20.77361372
|
||||
14 20.2407856 20.7611138
|
||||
15 20.1345696 20.7333362
|
||||
16 20.0920832 20.72129924
|
||||
17 20.0158576 20.67940136
|
||||
18 19.9308848 20.65440152
|
||||
19 19.8784016 20.62315172
|
||||
20 19.8034256 20.5886612
|
||||
21 19.7634384 20.5643558
|
||||
22 19.6609712 20.53727264
|
||||
23 19.6422272 20.53241156
|
||||
24 19.5622528 20.5192172
|
||||
25 19.5135184 20.515745
|
||||
26 19.4472896 20.51782832
|
||||
27 19.4073024 20.50949504
|
||||
28 19.3673152 20.49768956
|
||||
29 19.2760944 20.50718024
|
||||
30 19.271096 20.50023584
|
||||
31 19.177376 20.47662488
|
||||
32 19.1536336 20.46898604
|
||||
33 19.121144 20.46505088
|
||||
34 19.052416 20.45579168
|
||||
35 19.0311728 20.45370836
|
||||
36 18.9861872 20.45718056
|
||||
37 18.9199584 20.44583804
|
||||
38 18.908712 20.45579168
|
||||
39 18.8874688 20.4555602
|
||||
40 18.8124928 20.44491212
|
||||
41 18.7850016 20.46065276
|
||||
42 18.7475136 20.45231948
|
||||
43 18.7050272 20.47037492
|
||||
44 18.671288 20.46759716
|
||||
45 18.6512944 20.47083788
|
||||
46 18.5888144 20.47477304
|
||||
47 18.5563248 20.47662488
|
||||
48 18.5475776 20.47361564
|
||||
49 18.5075904 20.481023
|
||||
50 18.458856 20.49421736
|
||||
51 18.4263664 20.47037492
|
||||
52 18.4176192 20.49907844
|
||||
53 18.3801312 20.51273576
|
||||
54 18.3251488 20.50903208
|
||||
55 18.2989072 20.51412464
|
||||
56 18.2976576 20.48935628
|
||||
57 18.2326784 20.49583772
|
||||
58 18.1951904 20.4891248
|
||||
59 18.1652 20.47454156
|
||||
60 18.1514544 20.47222676
|
||||
61 18.0877248 20.47338416
|
||||
62 18.0627328 20.47083788
|
||||
63 18.0514864 20.4567176
|
||||
64 18.021496 20.44329176
|
||||
65 17.9740112 20.44213436
|
||||
66 17.9415216 20.41898636
|
||||
67 17.9390224 20.41806044
|
||||
68 17.9077824 20.40093092
|
||||
69 17.8640464 20.39282912
|
||||
70 17.8303072 20.38866248
|
||||
71 17.8128128 20.36898668
|
||||
72 17.8078144 20.3560238
|
||||
73 17.7853216 20.34398684
|
||||
74 17.7228416 20.33819984
|
||||
75 17.6941008 20.3398202
|
||||
76 17.6953504 20.33958872
|
||||
77 17.684104 20.35671824
|
||||
78 17.6741072 20.37199592
|
||||
79 17.6303712 20.38681064
|
||||
80 17.590384 20.39745872
|
||||
81 17.5728896 20.40208832
|
||||
82 17.5678912 20.41366232
|
||||
83 17.565392 20.41204196
|
||||
84 17.559144 20.43750476
|
||||
85 17.5266544 20.4266252
|
||||
86 17.4891664 20.43380108
|
||||
87 17.4666736 20.4358844
|
||||
88 17.4541776 20.41435676
|
||||
89 17.4429312 20.4300974
|
||||
90 17.4366832 20.41991228
|
||||
91 17.427936 20.39468096
|
||||
92 17.3792016 20.4138938
|
||||
93 17.35296 20.40972716
|
||||
94 17.3317168 20.40324572
|
||||
95 17.3267184 20.39120876
|
||||
96 17.3229696 20.38634768
|
||||
97 17.3079744 20.39815316
|
||||
98 17.271736 20.39676428
|
||||
99 17.2492432 20.39028284
|
||||
100 17.2255008 20.40556052
|
||||
101 17.2167536 20.40949568
|
||||
102 17.2130048 20.42384744
|
||||
103 17.209256 20.43310664
|
||||
104 17.2042576 20.4381992
|
||||
105 17.2005088 20.44491212
|
||||
106 17.1917616 20.4393566
|
||||
107 17.1617712 20.44329176
|
||||
108 17.1455264 20.44768988
|
||||
109 17.1067888 20.45995832
|
||||
110 17.1067888 20.45579168
|
||||
111 17.0955424 20.44329176
|
||||
112 17.0830464 20.45139356
|
||||
113 17.084296 20.45231948
|
||||
114 17.078048 20.44005104
|
||||
115 17.0618032 20.44907876
|
||||
116 17.0618032 20.44838432
|
||||
117 17.0355616 20.45023616
|
||||
118 17.034312 20.44653248
|
||||
119 17.00932 20.440514
|
||||
120 16.9755808 20.457875
|
||||
121 16.984328 20.45764352
|
||||
122 16.9768304 20.44722692
|
||||
123 16.971832 20.46574532
|
||||
124 16.9680832 20.4532454
|
||||
125 16.9605856 20.45255096
|
||||
126 16.9605856 20.4428288
|
||||
127 16.9618352 20.44074548
|
||||
128 16.9668336 20.43495848
|
||||
129 16.9618352 20.4497732
|
||||
130 16.9505888 20.45185652
|
||||
131 16.9630848 20.45810648
|
||||
132 16.9543376 20.46968048
|
||||
133 16.9518384 20.4717638
|
||||
134 16.9418416 20.4706064
|
||||
135 16.9443408 20.46806012
|
||||
136 16.9430912 20.46736568
|
||||
137 16.9056032 20.46620828
|
||||
138 16.9081024 20.47801376
|
||||
139 16.8806112 20.48356928
|
||||
140 16.878112 20.46643976
|
||||
141 16.859368 20.45417132
|
||||
142 16.85312 20.4393566
|
||||
143 16.8393744 20.44931024
|
||||
144 16.8393744 20.43889364
|
||||
145 16.834376 20.44768988
|
||||
146 16.8368752 20.43773624
|
||||
147 16.8368752 20.43634736
|
||||
148 16.8431232 20.4416714
|
||||
149 16.8368752 20.42940296
|
||||
150 16.8243792 20.40949568
|
||||
151 16.8306272 20.4185234
|
||||
152 16.8318768 20.40486608
|
||||
153 16.8181312 20.417366
|
||||
154 16.8181312 20.41296788
|
||||
155 16.815632 20.42106968
|
||||
156 16.809384 20.42824556
|
||||
157 16.8168816 20.42731964
|
||||
158 16.8143824 20.41782896
|
||||
159 16.8106336 20.42847704
|
||||
160 16.8206304 20.44537508
|
||||
161 16.8068848 20.44722692
|
||||
162 16.8181312 20.45972684
|
||||
163 16.8243792 20.46574532
|
||||
164 16.8318768 20.46551384
|
||||
165 16.828128 20.46273608
|
||||
166 16.8268784 20.46458792
|
||||
167 16.8331264 20.46898604
|
||||
168 16.8318768 20.45625464
|
||||
169 16.828128 20.45694908
|
||||
170 16.8268784 20.4428288
|
||||
171 16.82188 20.46458792
|
||||
172 16.8231296 20.46759716
|
||||
173 16.8268784 20.4706064
|
||||
174 16.828128 20.47106936
|
||||
175 16.8243792 20.47593044
|
||||
176 16.8293776 20.47361564
|
||||
177 16.8381248 20.46343052
|
||||
178 16.8068848 20.4601898
|
||||
179 16.8143824 20.46643976
|
||||
180 16.7918896 20.47245824
|
||||
181 16.8168816 20.46852308
|
||||
182 16.8181312 20.4428288
|
||||
183 16.8106336 20.440514
|
||||
184 16.8243792 20.43681032
|
||||
185 16.8106336 20.42407892
|
||||
186 16.809384 20.4219956
|
||||
187 16.803136 20.4300974
|
||||
188 16.8081344 20.423153
|
||||
189 16.8018864 20.42940296
|
||||
190 16.79064 20.44306028
|
||||
191 16.7943888 20.4439862
|
||||
192 16.7631488 20.45347688
|
||||
193 16.7756448 20.4625046
|
||||
194 16.7606496 20.46782864
|
||||
195 16.765648 20.46898604
|
||||
196 16.7506528 20.47801376
|
||||
197 16.7618992 20.4682916
|
||||
198 16.753152 20.47662488
|
||||
199 16.771896 20.46528236
|
||||
200 16.7643984 20.4729212
|
||||
201 16.765648 20.48403224
|
||||
202 16.753152 20.49398588
|
||||
203 16.7856416 20.5018562
|
||||
204 16.7893904 20.49977288
|
||||
205 16.79064 20.48981924
|
||||
206 16.8106336 20.50949504
|
||||
207 16.8118832 20.50787468
|
||||
208 16.8056352 20.49977288
|
||||
209 16.8193808 20.50671728
|
||||
210 16.8368752 20.50787468
|
||||
211 16.8268784 20.51065244
|
||||
212 16.834376 20.49768956
|
||||
213 16.834376 20.50370804
|
||||
214 16.840624 20.51018948
|
||||
215 16.8443728 20.51713388
|
||||
216 16.8356256 20.51412464
|
||||
217 16.8393744 20.52546716
|
||||
218 16.8443728 20.54398556
|
||||
219 16.8368752 20.5469948
|
||||
220 16.8393744 20.54468
|
||||
221 16.8381248 20.55579104
|
||||
222 16.8431232 20.57847608
|
||||
223 16.8418736 20.58079088
|
||||
224 16.8581184 20.59375376
|
||||
225 16.859368 20.59143896
|
||||
226 16.878112 20.60440184
|
||||
227 16.9018544 20.58819824
|
||||
228 16.8993552 20.57893904
|
||||
229 16.9243472 20.57778164
|
||||
230 16.9193488 20.5701428
|
||||
231 16.9480896 20.53727264
|
||||
232 16.9430912 20.49907844
|
||||
233 16.9618352 20.48981924
|
||||
234 16.9518384 20.47731932
|
||||
235 16.9580864 20.46736568
|
||||
236 16.9643344 20.46065276
|
||||
237 16.9668336 20.43611588
|
||||
238 16.9868272 20.45255096
|
||||
239 17.0180672 20.44005104
|
||||
240 17.0118192 20.48032856
|
||||
241 17.0555552 20.47153232
|
||||
242 17.0543056 20.47384712
|
||||
243 17.0730496 20.48194892
|
||||
244 17.0755488 20.49444884
|
||||
245 17.0855456 20.50694876
|
||||
246 17.0980416 20.51667092
|
||||
247 17.1055392 20.53032824
|
||||
248 17.121784 20.52430976
|
||||
249 17.1367792 20.52870788
|
||||
250 17.1605216 20.55602252
|
||||
251 17.1892624 20.56366136
|
||||
252 17.2017584 20.55833732
|
||||
253 17.2005088 20.56180952
|
||||
254 17.2067568 20.54537444
|
||||
255 17.2080064 20.5689854
|
||||
256 17.2292496 20.57731868
|
||||
257 17.2479936 20.55926324
|
||||
258 17.2804832 20.57500388
|
||||
259 17.3017264 20.57546684
|
||||
260 17.2929792 20.55880028
|
||||
261 17.3179712 20.585189
|
||||
262 17.3192208 20.57847608
|
||||
263 17.3129728 20.58102236
|
||||
264 17.3242192 20.57963348
|
||||
265 17.3204704 20.562041
|
||||
266 17.340464 20.55903176
|
||||
267 17.3354656 20.56991132
|
||||
268 17.340464 20.58009644
|
||||
269 17.3579584 20.5770872
|
||||
270 17.3954464 20.56643912
|
||||
271 17.4129408 20.55880028
|
||||
272 17.427936 20.56528172
|
||||
273 17.4391824 20.57083724
|
||||
274 17.44668 20.5655132
|
||||
275 17.44668 20.5863464
|
||||
276 17.4566768 20.56273544
|
||||
277 17.4754208 20.60046668
|
||||
278 17.502912 20.57685572
|
||||
279 17.5266544 20.56134656
|
||||
280 17.559144 20.5412078
|
||||
281 17.5616432 20.57454092
|
||||
282 17.5666416 20.5631984
|
||||
283 17.5728896 20.6118092
|
||||
284 17.5816368 20.58264272
|
||||
285 17.596632 20.60278148
|
||||
286 17.6566128 20.58704084
|
||||
287 17.6691088 20.56759652
|
||||
288 17.6791056 20.56690208
|
||||
289 17.6741072 20.5747724
|
||||
290 17.6878528 20.54792072
|
||||
291 17.7040976 20.55694844
|
||||
292 17.7228416 20.57731868
|
||||
293 17.7365872 20.59120748
|
||||
294 17.75908 20.58472604
|
||||
295 17.8003168 20.59074452
|
||||
296 17.8128128 20.60648516
|
||||
297 17.809064 20.61967952
|
||||
298 17.8165616 20.61088328
|
||||
299 17.8253088 20.61620732
|
||||
300 17.8503008 20.62060544
|
||||
301 17.8927872 20.63912384
|
||||
302 17.921528 20.62176284
|
||||
303 17.9365232 20.6303276
|
||||
304 17.9315248 20.62754984
|
||||
305 17.940272 20.61435548
|
||||
306 17.9615152 20.60555924
|
||||
307 18.0102496 20.5932908
|
||||
308 18.0202464 20.59768892
|
||||
309 18.0539856 20.56829096
|
||||
310 18.0627328 20.6071796
|
||||
311 18.1102176 20.5979204
|
||||
312 18.1652 20.60301296
|
||||
313 18.1764464 20.59282784
|
||||
314 18.2364272 20.6129666
|
||||
315 18.2939088 20.58542048
|
||||
316 18.3413936 20.59375376
|
||||
317 18.4113712 20.6013926
|
||||
318 18.4626048 20.6222258
|
||||
319 18.5363312 20.63310536
|
||||
320 18.6113072 20.63704052
|
||||
321 18.6662896 20.66528108
|
||||
322 18.7675072 20.65509596
|
||||
323 18.8237392 20.66435516
|
||||
324 18.9049632 20.68102172
|
||||
325 18.9636944 20.71342892
|
||||
326 19.0361712 20.73611396
|
||||
327 19.1311408 20.7402806
|
||||
328 19.1736272 20.75463236
|
||||
329 19.2723456 20.76273416
|
||||
330 19.339824 20.78981732
|
||||
331 19.3998048 20.78102108
|
||||
332 19.483528 20.80347464
|
||||
333 19.5347616 20.80949312
|
||||
334 19.627232 20.83194668
|
||||
335 19.6547232 20.82338192
|
||||
336 19.7484432 20.8375022
|
||||
337 19.7671872 20.85185396
|
||||
338 19.8684048 20.85694652
|
||||
339 19.8908976 20.8699094
|
||||
340 19.9358832 20.86458536
|
||||
341 20.0071104 20.85301136
|
||||
342 20.0558448 20.87199272
|
||||
343 20.1095776 20.87777972
|
||||
344 20.1483152 20.85694652
|
||||
345 20.1745568 20.87870564
|
||||
346 20.2345376 20.874539
|
||||
347 20.2570304 20.89213148
|
||||
348 20.2820224 20.87500196
|
||||
349 20.3407536 20.87384456
|
||||
350 20.3782416 20.88680744
|
||||
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/Probes/Temperature/.DS_Store
vendored
Normal file
BIN
tutorials/combustion/fireFoam/les/compartmentFire/validation/Probes/Temperature/.DS_Store
vendored
Normal file
Binary file not shown.
@ -0,0 +1,352 @@
|
||||
#"Time" "TC1" "TC2" "TC3" "TC4" "TC5" "TC6" "TC7" "TC8" "TC9" "TC10" "TC11" "TC12" "TC13" "TC14" "TC15" "TC16" "TC17" "TC18" "TC19" "TC20" "TC21" "TC22" "TC24" "TC25" "TC26"
|
||||
0 21.1616 21.29204 20.60935 20.36651 20.31186 20.2815 20.3058 20.40901 21.19801 21.31327 21.4164 20.92494 20.28152 23.79778 20.70041 20.33008 19.86247 25.87807 34.03896 18.57411 18.85987 19.57699 20.05564 59.50289 21.43765
|
||||
1 24.39689 25.94454 23.74935 22.90156 23.24682 21.00384 20.82179 20.91889 21.59836 21.79242 21.90763 21.38607 24.61466 26.59678 21.02811 20.73682 29.09336 65.58298 83.26169 18.62276 19.21239 22.16228 20.01798 59.42756 21.40368
|
||||
2 31.05514 29.83699 26.66922 25.53366 25.82369 23.52537 22.0289 22.13195 22.99244 22.42288 22.58045 21.84092 33.30729 29.80388 22.37441 21.36788 42.23375 100.01513 149.7766 18.73828 19.73492 24.88986 19.97972 59.42403 21.38245
|
||||
3 39.21246 37.65401 30.02054 28.03877 28.52702 26.31901 24.68119 24.21538 24.48158 23.09541 23.10751 22.20468 42.29328 34.5724 23.36794 22.04102 49.42049 97.25973 139.5117 18.87203 20.55471 26.51227 19.93599 59.41696 21.33513
|
||||
4 48.14147 45.98341 36.30874 32.98927 33.07328 30.06867 27.92421 26.90465 26.10159 24.784 23.40426 22.60468 50.14832 40.06543 23.9491 23.0106 56.56009 103.12293 142.25305 19.09692 21.39212 27.87296 19.92202 59.40637 21.35818
|
||||
5 55.98835 51.57335 40.97136 38.18569 37.68986 34.71019 30.83867 28.88252 27.36327 25.90223 23.89464 22.92579 64.00874 51.2305 25.7814 24.46344 62.94511 98.36266 139.86775 19.33392 22.36835 29.33729 19.94874 59.32221 21.36061
|
||||
6 62.57481 55.94414 45.22368 41.95996 41.12627 38.54396 34.99776 32.28091 29.83399 27.5382 24.29404 23.36188 77.16544 57.54402 35.36907 26.1318 68.91159 102.57901 138.257 19.73492 23.84623 31.37374 19.95847 59.34693 21.38729
|
||||
7 69.60405 63.17433 51.84518 48.39618 47.79784 44.68328 40.6377 37.52255 34.87795 31.15131 24.72958 23.66461 84.74113 63.72083 39.02151 27.8639 74.43798 102.39576 136.52711 20.1115 25.55177 32.03466 19.88134 59.30808 21.35818
|
||||
8 78.21543 70.27003 59.26922 54.69688 53.69964 50.19564 45.64515 42.04925 37.98857 32.81521 25.46717 24.08829 99.35397 93.1357 60.43431 30.03258 84.84095 105.32968 140.95436 20.6397 28.70176 34.17085 19.85886 59.28395 21.37092
|
||||
9 86.47952 79.1951 66.49903 61.32837 59.29866 55.4872 51.08271 47.09251 41.65633 34.72218 25.88411 24.48158 108.0784 110.05955 63.47403 32.41901 93.16514 106.82202 139.45743 21.14945 30.2131 36.21004 19.82606 59.27453 21.34302
|
||||
10 94.87873 86.97592 73.68132 66.39922 64.27312 60.41666 56.20056 51.85701 45.21774 36.86496 26.66923 24.88077 121.88007 122.1609 63.46228 34.71022 101.30258 109.71535 138.07611 21.79242 32.45502 37.84521 19.8127 59.26629 21.36667
|
||||
11 103.10519 95.54741 81.75918 73.65199 70.88902 66.81022 62.1927 56.71331 49.47968 39.3139 27.34516 25.41277 133.46301 135.70192 72.32043 37.20576 110.55221 112.32809 142.45244 22.35623 36.34464 40.25026 19.78415 59.21214 21.36485
|
||||
12 111.30628 105.16689 89.34726 79.97539 77.13612 72.3263 67.22705 60.55197 52.14653 41.32281 28.40044 25.77535 145.10692 157.9317 107.30787 40.12505 117.20766 115.82571 140.35664 23.11359 39.40935 41.1918 19.73251 59.19036 21.3515
|
||||
13 119.61088 114.35561 96.42847 85.88627 82.76276 77.94559 72.61961 65.31284 55.66999 43.78608 29.00301 26.11365 153.83586 165.66978 102.20073 42.44204 124.98407 118.97845 139.68671 23.76754 41.4062 43.76827 19.79812 59.2145 21.34726
|
||||
14 127.63799 122.60321 103.54279 92.27639 89.74704 84.2949 77.81068 69.38107 59.43992 45.84098 29.53297 26.46996 159.84784 177.39072 98.56915 45.11087 130.71629 122.34019 141.35294 24.4332 41.84685 44.77833 19.77503 59.17271 21.31936
|
||||
15 135.7802 132.05907 109.97646 98.92906 95.3029 89.88815 82.96819 74.11538 62.68061 48.50278 30.14089 26.94086 163.56161 183.7859 119.07388 47.47189 138.81187 128.47752 142.57935 25.1347 45.48487 46.24743 19.79568 59.17329 21.29266
|
||||
16 142.44035 138.20273 116.50465 105.56648 101.38529 95.17919 87.90134 78.81966 66.12325 51.40192 31.03708 27.32103 167.40097 175.39398 120.42861 49.50927 145.34895 131.23886 142.63373 25.79953 46.64779 48.20961 19.75256 59.17329 21.24656
|
||||
17 148.11598 144.257 122.38205 110.67686 105.96912 101.33211 92.38819 82.63364 69.08178 52.95574 31.72227 27.73724 177.86089 198.35918 123.34462 52.03428 152.39706 132.74739 141.98116 26.60885 48.74559 49.94126 19.75985 59.13798 21.26961
|
||||
18 156.28413 150.54062 128.54951 116.01627 111.6686 108.49343 97.64303 85.945 71.99194 56.3597 32.24487 28.05083 185.31932 210.31715 126.76287 54.01834 160.20686 135.99702 148.55829 27.21242 51.86292 51.10046 19.73252 59.14857 21.27931
|
||||
19 161.17461 153.77817 133.18036 120.50027 116.57018 111.42507 100.33396 88.19517 73.9746 57.69716 32.82122 28.32812 188.86267 214.59013 127.23635 56.02962 164.31091 140.19969 150.78928 27.80359 53.55206 52.40648 19.70821 59.07088 21.23927
|
||||
20 164.85318 156.72784 136.56328 124.53516 121.00188 115.23039 104.43603 92.36465 76.24454 59.12207 33.23528 28.72587 192.32011 213.10551 121.09146 58.00932 168.93156 142.55516 150.84387 28.36429 53.8826 54.6261 19.67359 59.06558 21.21076
|
||||
21 167.46805 159.16336 140.2963 128.44153 124.65486 117.99446 107.1301 95.14383 78.09811 60.20487 34.29671 29.01505 195.74617 203.92995 117.02891 59.94599 171.23746 149.32193 153.30153 28.94277 54.13637 56.17994 19.69971 58.93255 21.18286
|
||||
22 170.24298 161.68901 142.67 131.74956 127.47014 120.69731 110.36817 98.53965 80.01646 61.42833 34.70422 29.32222 202.85036 204.93002 112.61334 62.06924 173.92883 155.68251 157.63373 29.4547 55.55207 57.77375 19.72583 58.9037 21.22775
|
||||
23 175.22302 165.81606 144.89517 134.14883 129.60556 123.50611 113.3148 100.68826 80.96111 62.61007 35.14748 29.66541 211.50455 204.03973 110.97374 64.03812 178.60596 156.53941 161.01633 30.13488 56.90186 59.69298 19.73251 58.77361 21.15616
|
||||
24 179.49765 171.18256 149.24312 137.78671 133.20439 126.50523 116.20088 103.05789 82.15237 63.73258 35.65045 29.97841 211.98549 202.0329 115.86146 66.2172 181.69055 159.58011 157.48779 30.87476 58.55693 60.66669 19.67115 58.73004 21.16465
|
||||
25 182.90619 174.4355 153.39259 140.85776 136.26205 130.32596 119.6228 105.49543 83.63737 64.68434 36.24292 30.3214 220.92928 202.66125 115.32561 67.90211 185.62477 162.95863 158.58243 31.31963 60.54609 62.72765 19.67177 58.63525 21.14766
|
||||
26 184.69006 177.81813 157.38443 144.03625 139.78929 133.45099 122.82439 109.59074 86.90248 66.31702 36.72744 30.61615 219.76326 199.69588 112.03693 69.56297 188.42892 165.20662 168.14487 31.75833 60.75198 64.0675 19.63046 58.58226 21.18102
|
||||
27 185.61867 178.30975 158.67368 145.31265 140.8819 134.55804 124.0804 109.90524 86.78499 67.12138 37.05034 30.97097 219.89082 206.66107 114.07007 71.02982 192.25293 166.32196 165.28584 32.57511 61.66354 65.74449 19.60798 58.54105 21.15677
|
||||
28 187.92188 181.93184 160.41986 147.71616 142.76065 137.43707 126.69096 112.54202 89.85288 68.401 37.25957 31.13329 219.34412 207.05757 113.75484 72.42603 194.92183 167.48633 165.54178 33.25929 62.45137 66.50198 19.57213 58.5069 21.10155
|
||||
29 189.25363 183.60568 162.47752 150.03123 144.64714 139.4393 127.78188 113.78456 90.75264 69.82703 37.86312 31.43982 222.3255 223.96367 122.66895 73.48189 196.43613 171.14594 170.0844 34.01496 64.22614 67.61448 19.6098 58.48512 21.12825
|
||||
30 190.6098 184.48846 163.3667 151.62642 145.96622 140.9604 129.74361 115.69473 93.22989 72.02713 38.29318 31.63815 223.71498 222.70781 119.50346 75.14184 198.71323 172.00633 171.03612 34.63233 65.51839 69.21089 19.56242 58.42506 21.14827
|
||||
31 191.88644 187.00243 165.18834 153.86015 147.62531 142.82713 132.11617 117.91695 94.83161 74.23269 38.86632 31.89648 224.23055 217.94658 118.87107 75.71665 200.44041 173.00719 173.97768 35.21936 66.76324 70.77168 19.60008 58.45921 21.11732
|
||||
32 194.74475 188.45032 166.5475 155.85872 149.35223 144.74998 133.9563 119.67055 96.2929 75.09491 39.20649 32.14278 226.92828 215.22887 117.99446 76.55541 202.71616 175.74811 175.27797 35.74624 67.59688 72.47589 19.56909 58.46745 21.10944
|
||||
33 196.88184 190.23717 168.39488 157.97426 151.32309 146.53526 136.00305 121.63506 98.20927 76.36772 39.55849 32.34694 233.38594 218.74873 115.77808 77.8928 205.18002 177.23187 174.13028 36.26685 69.01136 73.7429 19.57456 58.46627 21.1155
|
||||
34 197.38248 192.01778 170.2674 160.77286 152.45171 147.84943 137.41296 122.50158 98.40395 77.68749 40.28601 32.5811 235.11417 221.19641 121.3961 78.76685 207.63657 181.04913 172.89124 36.93675 70.41965 75.58174 19.56544 58.52162 21.12885
|
||||
35 198.92683 194.28061 171.88428 161.99039 154.38852 149.67958 139.81343 124.9242 100.6115 78.81966 40.53041 32.88122 237.13094 219.496 120.43459 78.91938 209.41568 184.4518 174.06924 37.57632 70.93595 76.72551 19.55269 58.5646 21.09062
|
||||
36 199.1893 194.65619 174.0265 163.79309 156.69139 151.92981 142.12012 127.60201 104.01598 79.62924 40.85221 33.09128 239.35713 221.55455 119.25883 80.89656 211.24883 189.0154 176.65787 38.19762 71.79835 77.56725 19.52474 58.51749 21.09002
|
||||
37 200.82484 197.26646 174.92389 164.24391 157.42699 152.86444 143.6432 129.28146 105.41846 80.56211 41.23944 33.31926 238.03012 226.07378 120.69135 82.27561 213.81139 203.66769 182.68626 38.54397 73.957 78.17143 19.50226 58.45686 21.09366
|
||||
38 203.51521 198.60031 174.99103 165.91966 158.67975 154.53429 145.71204 132.12216 108.21474 81.90588 41.46576 33.49924 242.74384 233.53705 126.85876 83.71956 217.95268 201.28246 183.21164 39.21247 75.79877 81.08726 19.47188 58.42742 21.04573
|
||||
39 204.07022 199.8271 177.90363 168.85838 160.8459 156.08966 147.32852 133.83598 110.06547 84.20097 42.00758 33.85307 250.8174 248.67996 122.96191 84.53562 221.42711 199.57382 190.62201 39.86269 78.89591 82.01738 19.47492 58.41505 21.05544
|
||||
40 206.54562 203.19501 180.76205 171.59137 164.71915 159.21507 148.76434 134.29927 110.85498 85.59262 42.71572 34.03296 245.9874 244.12244 122.42986 85.59849 221.93095 201.15434 195.23326 40.33371 79.15404 82.80384 19.48586 58.41741 21.06453
|
||||
41 208.85521 205.16783 183.82866 174.15469 167.32172 160.64505 149.69777 134.96133 110.84903 86.55002 43.19751 34.30869 245.80699 251.62138 136.10661 86.24456 225.72221 210.08572 197.22375 41.07861 80.61492 84.03658 19.47918 58.37502 21.0257
|
||||
42 211.46193 207.64265 185.76529 175.85799 169.19992 162.59322 151.1593 136.11749 111.95375 87.57816 43.60776 34.5544 254.2715 273.82022 161.27199 88.23043 228.29736 214.09735 196.11864 41.77541 82.8508 85.11106 19.49436 58.35617 21.07546
|
||||
43 212.55164 209.34868 187.99519 178.10516 170.51752 164.32919 153.33188 137.76257 114.07602 88.26569 44.16049 34.65027 254.36139 271.1861 173.98376 88.73002 229.27226 211.30971 196.10031 42.4956 85.68658 85.90388 19.46824 58.38267 21.00689
|
||||
44 216.94975 212.18945 190.59758 179.47322 171.56696 165.50522 154.18201 138.92648 115.02802 88.88872 44.44567 34.89591 256.93655 261.98868 167.13881 89.98224 233.21667 217.56978 200.04987 43.2094 86.88486 87.4195 19.47796 58.40033 21.00507
|
||||
45 217.52722 213.19983 192.53389 181.40344 173.91052 167.90096 156.27806 140.62831 115.84357 89.39429 44.51102 35.14748 257.51706 257.14603 171.54865 93.0474 233.29526 217.96483 199.09775 43.83364 87.97186 88.59483 19.47371 58.45862 20.98141
|
||||
46 217.35703 213.75055 193.85312 183.43156 175.4184 169.53539 157.91953 142.32555 117.45202 90.58796 44.68922 35.27924 259.1142 254.1277 169.9319 92.95322 233.96619 215.6546 200.38551 44.4635 88.25981 90.04398 19.46034 58.42152 20.95106
|
||||
47 215.92828 213.36412 194.33559 184.30518 177.12195 171.3351 160.90677 144.79231 120.10625 92.05278 44.93866 35.54269 264.79999 265.93903 170.51143 94.08361 235.62758 213.82355 199.29306 45.24743 90.69971 91.9851 19.50044 58.39386 20.95288
|
||||
48 216.6944 213.4402 195.46529 185.69197 177.67766 172.49454 162.98907 147.88577 122.31629 93.25344 45.50863 35.76417 267.83435 268.97195 177.48238 95.76248 238.57309 215.24103 200.72112 46.02495 93.67145 94.21611 19.51198 58.38267 20.9632
|
||||
49 220.18843 216.63664 197.76097 187.89133 180.1451 174.41719 165.29803 148.95825 122.08321 94.83162 45.88846 36.15915 270.04358 266.29083 180.93918 97.08283 240.57498 214.95514 208.87958 46.46987 94.04828 95.11732 19.47006 58.34616 21.00992
|
||||
50 221.27533 218.19576 199.44565 189.2964 181.92879 176.35258 167.1937 151.04404 121.89198 95.15562 46.47579 36.45231 273.8024 273.71921 176.60902 99.91476 243.46036 214.54756 204.84465 47.26443 96.08662 97.90254 19.45913 58.3285 20.9541
|
||||
51 225.11594 221.73369 202.82596 192.2285 185.76529 179.58928 170.0844 153.90872 123.34462 95.82732 46.82569 36.84704 274.95505 276.29126 169.60249 101.21987 247.24391 227.56444 214.4259 47.81562 96.82932 99.79373 19.40626 58.29022 20.9013
|
||||
52 227.30392 223.1993 205.11295 194.1646 186.85275 181.21408 171.52423 153.55653 122.11308 95.59161 47.55486 37.01445 270.75772 273.26154 178.60596 104.34727 249.62285 225.26752 219.95157 48.50279 98.68715 100.38414 19.45973 58.32202 20.94925
|
||||
53 229.45996 224.62779 207.34404 196.16136 189.40025 183.53542 173.56871 157.00748 126.67899 97.46023 47.98151 37.35519 273.84399 276.70087 172.37248 107.14195 252.00533 227.2433 228.1096 49.09492 100.55836 101.89635 19.38134 58.26725 20.96684
|
||||
54 231.48721 227.63713 210.35977 198.70711 191.09848 185.38042 175.91295 157.81007 127.81186 98.76974 48.12961 37.73166 274.69962 270.6268 168.13266 109.18733 258.49222 236.93777 232.30975 49.6158 100.69418 103.85034 19.39775 58.28315 20.95471
|
||||
55 231.58398 227.81281 212.13161 200.70891 192.52777 186.45564 177.20132 158.13844 127.56605 99.48974 48.89955 38.0244 275.99438 275.43015 177.61661 109.51361 259.44907 237.84911 234.28647 50.53279 102.32484 105.1373 19.41234 58.31554 20.87582
|
||||
56 235.17458 230.01381 214.21295 203.94215 195.54466 188.34952 179.68089 160.24338 130.20587 100.64104 48.98835 38.26331 279.1394 273.75485 174.09975 111.74583 262.25146 236.08652 231.03951 51.15366 104.08105 106.95531 19.38378 58.27668 20.86732
|
||||
57 239.65863 232.60002 216.57889 205.03368 196.32623 189.33305 180.71317 161.64943 130.77032 102.21255 50.47364 38.52008 283.52417 268.00113 176.23656 113.43967 264.50769 238.92894 240.99684 51.83928 105.61386 108.35407 19.3856 58.23605 20.84486
|
||||
58 241.05708 234.27136 217.52722 206.88695 198.04178 191.37947 183.00392 164.1769 133.67355 103.47774 50.86396 38.91408 285.67245 270.36496 180.74982 116.29022 268.53723 242.94254 241.52107 52.41238 107.74052 109.69161 19.35704 58.2384 20.82604
|
||||
59 241.86447 235.64571 220.72888 208.81256 200.4221 193.99359 185.69197 167.74242 137.43707 105.12843 51.10636 39.29002 287.61804 270.60895 175.54662 118.08389 272.39944 244.59785 248.76407 52.95575 108.09026 110.4305 19.37953 58.19424 20.8746
|
||||
60 242.17168 235.51886 221.60316 209.01971 201.65465 195.83775 186.90773 168.07169 136.53314 106.15862 51.00584 39.54657 289.82813 287.03262 178.0502 117.94081 273.57062 243.76131 244.45343 53.61701 109.94085 111.70423 19.3698 58.22191 20.81756
|
||||
61 242.65347 238.12665 222.61678 211.97942 203.74699 198.59724 189.68736 170.49922 139.16177 107.539 51.80382 40.02965 300.40662 315.71426 186.95049 119.05003 275.13919 243.3821 249.60484 54.56119 115.24229 114.1117 19.3613 58.21544 20.81756
|
||||
62 244.69412 241.60542 226.34045 215.3201 207.1734 201.87428 192.33844 173.14146 139.8074 108.4697 51.98701 40.39927 305.0127 321.5083 197.66939 121.12134 280.22443 252.86888 251.65141 55.13337 116.93359 116.93952 19.36494 58.23251 20.79691
|
||||
63 245.69269 245.14836 228.98164 217.21115 208.84303 203.44812 194.36613 174.81398 142.1745 110.45723 52.68408 40.77473 305.33014 306.63486 192.06969 123.18913 283.48276 262.83066 254.01982 55.6582 117.97659 118.61161 19.36008 58.17833 20.8133
|
||||
64 247.1718 246.23396 229.78078 218.00128 209.53143 204.63123 195.65459 176.65178 144.5564 112.99971 53.65831 40.89986 302.37216 301.27771 198.40799 122.45376 282.07919 273.01779 250.51714 56.17109 118.04217 119.56313 19.35157 58.18834 20.80663
|
||||
65 248.08524 246.05356 229.16934 217.87366 209.8299 205.55194 197.22375 177.42729 144.90726 113.80836 54.26028 41.25731 305.45944 307.45154 217.41174 125.59475 282.71887 274.97882 263.46341 56.93133 119.71234 120.45846 19.37163 58.10355 20.79388
|
||||
66 251.39943 249.48474 231.37227 220.04875 213.05682 208.86128 200.20242 180.37721 149.50378 115.86144 54.72637 41.71587 308.4325 315.56772 208.7029 128.33957 284.30557 270.87671 273.75485 57.88564 122.48963 122.12205 19.34064 58.11238 20.75018
|
||||
67 253.09674 251.36343 234.05684 223.05367 214.77873 210.32324 201.3801 180.43829 150.40718 117.6189 55.31029 42.15042 316.36493 321.2388 210.13443 130.41002 285.13409 272.56595 273.5528 58.45096 124.43942 123.73639 19.36069 58.09825 20.75868
|
||||
68 255.8709 252.54512 235.23499 224.12137 216.51201 211.91853 203.50302 182.86343 153.99982 118.87705 56.06499 42.5313 327.40036 329.65121 216.55457 131.34099 287.14508 272.25674 282.97354 59.09265 125.71453 125.26842 19.35279 58.05762 20.77021
|
||||
69 259.38925 255.55351 237.20335 225.86768 217.42998 213.81746 204.25926 183.49266 154.53427 120.18385 57.13754 42.81091 326.37109 326.2424 220.24916 133.52917 288.17371 271.52521 275.85779 59.8695 128.38757 126.36143 19.34246 58.05526 20.76414
|
||||
70 260.6445 257.28067 238.15076 227.11005 219.42918 215.38701 205.5885 184.76338 155.48805 122.27448 57.34963 43.06072 324.32941 334.75742 243.80945 135.37674 287.97864 269.78165 278.60559 60.74609 129.96573 126.02298 19.35522 58.04348 20.78296
|
||||
71 261.3197 257.43628 238.19904 227.54625 221.38461 217.38136 206.2774 186.37012 156.23552 124.31973 58.95726 43.12019 319.24197 339.5907 244.63992 136.15363 288.42783 267.07162 271.0433 61.55183 130.41002 127.76688 19.3455 57.96751 20.75747
|
||||
72 261.40335 257.39142 238.62132 228.37006 222.52576 218.51173 206.38713 187.15822 156.84943 125.44507 59.53997 43.4175 325.86221 337.65906 242.33429 138.4319 291.03882 269.59119 272.09619 62.32204 133.74576 128.72346 19.34185 57.9999 20.78842
|
||||
73 262.70526 258.10342 239.04353 229.87762 224.92189 220.02446 209.15373 188.63664 157.21419 126.02599 59.55172 43.80392 317.83591 337.91003 237.80685 139.95827 295.0217 272.02481 273.87964 62.99213 134.8289 129.40149 19.31451 57.96751 20.77264
|
||||
74 263.93488 260.82379 242.47281 232.00737 225.80707 220.54066 210.07964 189.64461 156.87982 126.36143 60.02837 43.98816 320.62415 333.53098 264.34659 141.9147 297.34998 270.32925 267.8403 63.91473 136.85852 131.07365 19.31207 57.94926 20.73076
|
||||
75 263.27237 262.10214 244.1465 233.07764 227.12822 221.05678 211.24274 190.99464 159.38542 127.82386 60.44608 43.94654 317.71872 321.02234 251.28543 143.39532 297.39709 271.75717 266.88092 64.43175 136.75609 131.92383 19.30236 58.03995 20.75686
|
||||
76 262.22757 260.60565 243.6349 233.2348 226.82526 221.1539 211.40714 191.91087 159.03864 128.93945 62.03985 43.91089 319.35913 325.49368 245.24161 144.28421 297.57385 278.32089 267.54239 65.06028 137.81084 132.41069 19.32483 57.98164 20.72955
|
||||
77 264.89542 261.4332 244.18863 233.66399 227.18275 221.77921 212.97769 193.34621 159.60445 129.6776 62.8158 43.95843 324.08951 338.6337 244.42935 145.53653 298.7049 274.24808 264.72839 65.90012 141.83012 134.09468 19.30296 58.03406 20.72833
|
||||
78 266.65442 262.52911 245.96333 235.01149 228.11566 222.67746 212.99596 193.68213 159.61053 130.28993 63.38588 44.13673 326.02014 339.26981 256.11639 147.056 299.28204 273.27335 268.69205 66.42271 144.29027 135.65974 19.31208 58.04054 20.72348
|
||||
79 265.92715 263.01871 247.50237 237.28183 230.44048 224.60657 215.23494 195.42256 160.32857 131.341 63.43877 44.61794 334.05661 338.75043 243.49644 148.16446 304.57764 277.59708 269.07318 66.89241 144.31445 136.92177 19.31815 57.98459 20.71377
|
||||
80 265.91522 263.03961 248.98029 238.33177 231.08188 225.49184 215.08896 196.10643 159.65921 131.5032 63.54454 44.92085 328.29495 335.84351 246.43231 149.93423 304.24249 280.66898 271.15042 67.57926 144.84677 138.00677 19.30479 57.96398 20.68706
|
||||
81 264.48383 263.17688 250.56534 240.23743 233.47661 227.84308 213.58015 194.63483 158.32089 131.36504 63.50929 45.14055 335.63333 343.84293 265.39047 152.00868 305.06561 279.42999 269.90073 68.54186 147.39514 139.23717 19.35522 57.96633 20.6992
|
||||
82 265.61115 264.06915 251.65138 241.28607 234.93898 229.97447 215.65463 196.10031 160.51724 132.6452 63.69146 45.53237 336.57913 346.88602 255.76311 151.63855 305.73572 276.80771 274.01038 69.02309 149.00069 139.98541 19.33395 58.02817 20.7077
|
||||
83 266.72595 266.38025 252.59308 242.29213 235.25914 230.14392 216.16544 196.717 161.52768 133.4931 63.70908 45.78757 331.83096 344.65341 243.79742 151.24422 305.26547 276.06561 282.30988 69.5043 149.81903 141.5764 19.3455 57.9469 20.68767
|
||||
84 267.11932 266.72299 252.52713 242.16565 236.30389 231.46906 217.44215 197.97462 163.23271 134.12477 63.90885 46.0546 334.64063 349.89856 246.58868 152.47597 307.05206 285.7612 287.83679 70.03827 153.92088 142.34669 19.33638 57.95809 20.73925
|
||||
85 267.88794 267.86115 254.40932 243.45432 238.37401 233.45848 219.11328 200.37939 164.82881 135.08775 63.72083 46.39869 329.8616 338.552 237.3965 152.46991 307.51614 286.35861 297.92148 70.48419 152.98586 143.25931 19.38986 57.96045 20.73622
|
||||
86 271.2218 272.10214 255.51158 244.9769 240.09877 234.0266 219.99408 201.20314 165.13348 135.68988 64.07925 46.68931 330.32919 336.42734 242.81548 152.90085 309.68915 291.97159 297.52084 71.22343 153.31975 144.6804 19.34124 57.85679 20.68766
|
||||
87 276.1666 274.82733 257.91794 247.0636 242.59927 235.62154 221.03249 202.17932 168.6937 136.94287 64.51399 46.95614 334.50629 363.83124 261.98273 155.96811 314.57684 290.18842 293.06335 74.64914 156.41785 146.73506 19.3212 57.88683 20.69617
|
||||
88 276.96204 275.61432 259.84958 248.92625 244.34512 237.25166 221.36034 202.88695 170.13321 138.82999 65.45379 47.1755 331.71414 347.81851 251.75937 156.6306 314.78793 291.18054 298.99927 74.79578 155.33617 148.18867 19.30296 57.79024 20.68585
|
||||
89 278.36832 275.88156 258.33072 247.45428 242.77997 236.54539 221.47568 202.65515 170.49312 140.40495 65.6241 47.51337 335.32968 341.41095 261.48099 155.99849 317.13858 289.7218 295.31653 75.34713 156.38139 150.02214 19.31087 57.82617 20.68585
|
||||
90 279.26395 275.29065 258.77332 247.73073 243.97197 237.95772 223.47232 204.13121 173.20859 141.80595 66.10564 47.73265 331.28757 336.97025 260.65646 157.27499 319.4411 289.67453 302.35449 75.62867 155.75542 150.44965 19.29385 57.79024 20.64214
|
||||
91 283.30511 275.78952 259.36533 248.01913 244.40529 238.09045 224.83093 204.89954 174.05092 141.84219 66.63408 48.09407 334.97934 361.67392 300.8363 159.34892 320.42505 294.84476 305.3125 76.57888 158.85007 151.3989 19.28899 57.80732 20.68463
|
||||
92 283.45908 277.81659 262.0723 249.875 245.19949 239.28476 226.96463 206.72238 176.85329 143.78229 67.43838 48.30732 333.01697 362.99982 307.50439 162.08781 318.97253 300.87741 307.85684 77.13025 161.23547 151.9935 19.29749 57.78258 20.72591
|
||||
93 281.56973 279.46555 263.55292 252.1133 246.53459 239.90584 227.86732 207.95343 175.60768 144.45963 67.59687 48.6923 340.7926 353.85309 294.8212 164.57901 320.53046 306.50558 312.15427 77.59951 162.52014 153.80548 19.24158 57.80909 20.62515
|
||||
94 283.0209 283.12155 265.35468 254.29549 248.11528 241.41261 230.0592 210.4633 176.76167 145.54865 67.56752 49.09492 345.18976 359.51007 290.64908 164.93849 322.01178 303.86615 306.3822 78.13917 163.29971 154.85318 19.26163 57.83854 20.60754
|
||||
95 284.91513 283.36136 267.04779 255.6673 248.98029 241.32222 229.91394 209.26947 175.42451 145.58496 67.68492 49.26067 343.39978 345.60367 292.0011 165.9989 322.67325 299.38806 300.01807 78.91938 163.21443 156.02888 19.27804 57.8933 20.664
|
||||
96 289.08966 286.48874 267.39938 256.20621 249.96506 242.62338 231.36017 211.49237 176.25488 146.35365 67.53817 49.53294 340.9968 376.76715 295.52875 167.04128 323.8613 296.05933 305.84738 79.55883 168.23633 156.92542 19.2434 57.88271 20.65611
|
||||
97 291.00931 290.15298 269.14465 258.64774 252.50912 244.06828 232.21298 213.43413 178.59375 147.44966 68.38927 49.58621 341.79593 373.40625 304.30719 168.24852 323.75595 295.29294 303.00751 79.89912 170.9751 158.36955 19.26407 57.84384 20.66582
|
||||
98 291.0329 291.45209 271.0076 259.25174 253.31256 245.69873 233.50078 214.23729 178.48993 147.46176 68.32471 49.5862 340.22668 372.29141 323.60965 171.70731 326.3009 301.18353 303.70148 80.69707 172.3969 159.80524 19.22457 57.80968 20.70527
|
||||
99 290.4483 292.03357 274.15302 261.89911 254.37938 247.35211 236.8895 217.07741 180.38332 148.60678 67.96667 49.79923 341.96509 366.29016 305.98843 172.49454 330.88437 304.47766 306.93454 81.38947 172.1711 161.34808 19.20938 57.84266 20.65428
|
||||
100 290.31836 292.29916 274.39069 262.62766 256.16431 248.28349 236.85329 216.25056 179.61371 148.94008 68.84704 50.03591 349.00137 365.81937 294.12527 173.77623 331.00711 299.67657 301.02463 81.82959 174.58202 162.30701 19.26285 57.79613 20.67916
|
||||
101 294.8035 295.37549 275.67371 263.98859 258.07349 250.2112 238.41623 217.85542 180.91475 149.74022 69.63339 50.50912 354.99997 360.34775 283.03271 174.83842 333.823 304.47769 306.4762 82.3167 174.27069 164.44191 19.227 57.81498 20.67249
|
||||
102 293.42325 294.78284 276.32092 264.27499 258.56995 250.89542 239.06165 218.01952 179.11288 149.28557 69.29304 50.78708 358.99228 378.71094 310.37015 175.62598 333.22141 301.28946 297.93323 83.15603 175.83357 164.84709 19.2349 57.81321 20.66279
|
||||
103 294.97452 294.73865 276.48718 264.50171 259.67624 252.60507 240.53279 219.83008 178.32501 149.47348 68.86465 50.94081 363.06375 378.38025 300.57141 176.52965 336.32227 299.10538 296.58389 83.54345 176.34035 167.30646 19.29324 57.76962 20.67128
|
||||
104 292.83914 292.57654 276.22 264.24518 259.07236 251.60342 240.38211 217.26585 177.12807 149.58867 69.82116 51.25417 373.20886 372.47144 303.7897 177.11584 335.66837 303.60147 294.07217 84.01897 178.70369 168.39183 19.26649 57.76963 20.6646
|
||||
105 292.79193 292.10733 276.70679 264.99683 259.27563 252.09529 241.14748 219.10721 177.95248 149.65533 69.82703 51.58515 372.02429 384.68954 289.34964 177.56165 335.55157 304.1543 290.46011 84.57085 178.95409 169.64824 19.32666 57.80202 20.66885
|
||||
106 292.2254 292.37589 277.49619 265.5813 260.2919 252.75497 241.46082 218.20792 177.20744 150.68619 69.96785 51.95154 367.02829 383.68091 308.15643 177.5372 336.0712 304.58353 295.77637 85.24612 179.7664 169.70313 19.29445 57.76315 20.71741
|
||||
107 291.67642 292.08078 278.50476 266.26697 260.97318 253.56433 242.62338 220.54674 179.80916 152.11185 71.02982 52.41237 357.87512 374.88083 295.66437 178.53879 334.60559 303.58975 297.77396 85.68658 180.0657 169.75497 19.36434 57.75902 20.68706
|
||||
108 291.12149 293.47046 279.513 267.31003 261.49292 254.58308 244.17059 221.49995 180.93309 153.55048 71.32316 52.76676 365.80194 371.65845 287.22192 179.0457 336.14709 305.70044 307.55728 85.82166 181.24461 172.29617 19.32726 57.78082 20.68888
|
||||
109 292.72702 293.31116 279.93396 267.84027 261.76172 255.4577 245.69272 223.44804 182.60074 154.58896 72.29697 53.26869 376.50601 366.95273 277.97086 178.79529 337.22125 306.9404 317.13858 86.20345 182.0937 173.68469 19.37163 57.82853 20.71862
|
||||
110 294.52634 295.05118 281.1431 269.35898 263.02765 256.70313 247.13573 224.72177 182.33807 155.71896 72.98917 53.6111 383.76785 366.22626 273.07132 179.27779 339.52069 306.00018 312.79965 86.84961 182.71681 174.83231 19.35704 57.80143 20.68585
|
||||
111 298.53409 297.95093 283.38208 271.37051 265.09225 258.00769 248.3676 226.51016 184.08524 156.29022 73.56987 54.03603 378.5195 355.93134 263.71405 179.0396 343.58054 310.15295 312.25403 87.21386 181.87381 175.90988 19.36859 57.80968 20.7435
|
||||
112 299.20547 297.38535 283.0209 271.00763 264.49573 257.5769 248.16335 224.95221 183.42545 155.7068 74.2151 54.33699 373.08694 355.59958 279.69681 179.65646 345.08484 308.32089 307.59253 87.76618 183.15054 177.65018 19.36312 57.78258 20.77993
|
||||
113 303.71915 298.64307 283.63666 271.00763 265.31293 259.01254 249.44873 227.14034 185.66754 156.49078 74.64914 54.74996 372.8663 361.99957 275.39438 181.09801 346.05832 316.32977 315.97223 88.67712 187.34151 178.22731 19.36251 57.81321 20.77143
|
||||
114 302.90161 299.10245 284.70209 271.94156 266.51733 260.1604 251.65741 228.58804 185.63699 157.17165 74.78405 54.85615 367.80695 368.85269 288.84714 180.61543 344.09952 319.35913 313.72644 89.08858 188.01962 178.50824 19.32059 57.85385 20.73198
|
||||
115 307.09903 301.94266 285.8736 273.96878 268.90051 262.47839 253.58832 228.42455 185.69197 158.08371 74.66674 55.13337 373.47015 389.33633 314.04315 181.35457 343.38812 315.30386 314.51233 90.42328 189.97447 179.02432 19.33578 57.8509 20.75383
|
||||
116 307.34579 303.58975 287.82495 276.57028 272.48865 265.39047 255.1642 229.50235 186.40067 158.96565 74.70193 55.20413 372.83145 388.92508 317.83591 181.36069 342.55417 313.36865 310.95712 90.89969 191.14125 179.67479 19.38924 57.8138 20.7599
|
||||
117 306.50558 302.02209 287.8013 277.27661 272.4946 265.02069 254.18762 228.29738 186.89551 159.06297 74.77232 55.35747 374.608 390.93469 306.43506 185.08717 343.81964 311.72006 305.38303 91.535 196.88184 181.547 19.36554 57.88094 20.77264
|
||||
118 305.08911 301.12762 289.73361 278.91403 273.25562 265.68866 254.64301 229.61734 188.17235 159.67747 75.99233 55.41054 376.48859 398.67145 318.4277 187.90355 344.05872 309.47189 314.43607 91.93509 197.89528 182.14258 19.33942 57.9045 20.769
|
||||
119 301.49542 302.09268 291.27499 279.86874 274.06979 266.85706 255.01445 229.61128 188.06238 160.66331 76.42637 55.60513 372.75015 391.3689 335.62747 189.44301 345.59198 307.4809 318.97253 92.77075 199.28696 182.76569 19.37041 57.87152 20.7696
|
||||
120 305.00095 306.5849 294.14297 282.52939 275.18671 267.54837 254.91261 229.82919 189.20477 161.41809 77.06572 55.57565 374.39325 389.88074 318.76749 189.79121 347.6087 312.87592 317.74216 93.15925 197.49237 183.77367 19.37041 57.9416 20.71012
|
||||
121 305.48886 310.7605 295.52878 283.05051 276.44562 268.22156 253.08475 228.03693 189.18033 162.02692 76.97188 55.69357 377.1908 389.64328 312.25986 189.87674 348.35461 312.45349 310.12946 94.16016 197.37637 184.32961 19.39228 57.95338 20.73926
|
||||
122 305.77686 310.02673 295.08066 282.26282 276.10718 268.17984 254.34941 229.93814 191.37335 162.47752 77.30035 55.77021 369.06778 374.56155 303.66034 189.38191 344.41437 316.11874 331.56805 94.76092 195.64236 183.40714 19.39958 57.97635 20.73441
|
||||
123 303.56622 308.0184 294.04269 282.23322 276.16061 268.65039 253.06676 230.19839 190.72586 162.78203 78.673 55.82328 364.98233 381.29782 293.93063 189.68736 344.52512 313.52115 323.78522 95.39717 196.47278 184.52817 19.34671 57.92511 20.76779
|
||||
124 306.4762 307.25769 293.40558 281.93112 275.95279 268.56702 253.54634 231.58398 194.40887 165.59663 78.37968 55.83506 369.0213 384.29535 297.37943 188.39229 349.89273 311.63788 321.0282 95.89213 197.16879 187.146 19.34306 57.95396 20.75929
|
||||
125 304.53061 307.78345 294.20786 283.54196 277.91153 269.03748 253.87 231.77754 194.76306 165.79778 78.37381 55.99425 363.59866 379.47086 300.06516 189.61406 347.99332 309.11371 315.68497 96.4933 197.57784 187.32317 19.34185 57.98871 20.74714
|
||||
126 304.50708 308.4736 295.58771 285.56006 279.42407 271.06711 255.05637 233.28319 193.80426 165.95013 79.34177 55.88813 371.06024 407.83038 320.41919 191.58714 349.20526 308.84949 309.14896 97.54868 200.61739 187.85771 19.34246 57.98223 20.75686
|
||||
127 307.11081 308.79956 295.14554 286.09836 280.85272 273.32098 257.25974 235.05377 196.0759 168.35219 79.47083 56.1475 377.12112 398.93167 320.60657 193.02251 351.5878 309.97684 313.9024 98.24467 201.78886 188.96347 19.29263 57.96987 20.75019
|
||||
128 306.44095 310.10306 295.82941 287.09778 281.04236 273.72513 257.17593 232.81767 195.64236 167.70584 78.63779 56.38327 378.47308 408.91583 324.63953 192.25902 352.42645 308.8671 306.31165 99.26546 201.26416 189.55299 19.31572 58.00343 20.73562
|
||||
129 306.33517 309.82712 296.72534 287.50574 281.71191 273.67163 256.94254 232.87813 197.11385 169.04135 78.61433 56.56009 376.26227 402.24426 318.07614 193.97528 352.29831 308.00372 302.40155 99.66682 202.42943 189.91035 19.30114 57.96869 20.72105
|
||||
130 308.30914 311.78458 297.88611 286.43552 280.87643 273.69543 255.40979 231.37833 196.20412 168.45586 78.82552 56.71331 371.10089 399.66605 319.57584 194.14018 353.1893 308.66742 299.72958 100.28673 204.05191 191.55965 19.34306 58.0105 20.71437
|
||||
131 310.08838 313.42438 296.189 286.83759 281.76523 274.31345 256.54147 233.10182 196.717 168.44366 80.42717 57.03149 375.18848 410.73978 328.97897 196.74751 352.55457 310.87494 298.31027 100.97768 206.39932 192.09717 19.31329 58.07705 20.70345
|
||||
132 310.50516 313.61795 296.19489 286.35269 281.75931 274.961 258.58792 236.37634 199.03671 169.82819 81.01979 57.11986 377.12695 400.70099 327.51147 197.00395 352.77585 309.99442 297.55029 101.23169 205.32635 192.8576 19.31025 58.08117 20.72165
|
||||
133 309.59518 313.04895 296.71945 286.50647 282.16214 275.61432 259.67627 235.10812 198.06619 169.7977 80.99045 57.56169 371.74554 419.45959 341.52176 197.13217 349.8811 318.66791 296.28329 101.86387 208.35561 192.90341 19.31268 58.06409 20.72955
|
||||
134 310.48169 311.40021 297.47958 289.7395 284.11023 277.69794 262.24548 236.67821 198.39581 170.45653 80.84376 57.78552 380.39316 418.44528 322.99515 197.98683 351.16263 318.21677 300.34183 102.54945 208.49574 194.11572 19.29931 58.06998 20.73076
|
||||
135 309.84769 312.65295 298.26315 290.30066 284.98615 278.77167 260.82974 234.35901 197.74875 170.29791 80.8907 57.89741 382.504 418.01297 316.35907 197.01616 356.13504 321.05161 295.90015 103.11109 209.47661 195.42865 19.27379 58.05467 20.73076
|
||||
136 311.00992 314.95795 297.68579 291.18643 286.81985 279.80945 259.53278 232.42465 198.02345 170.87138 80.86723 57.98576 384.48087 418.35883 305.29486 196.37508 356.18741 317.65427 291.91846 103.50729 208.05704 196.1217 19.29081 58.05173 20.7514
|
||||
137 312.31854 316.16858 297.93915 290.66681 285.73163 278.86658 258.49222 231.69891 197.68159 171.31677 81.11367 58.45684 396.74542 409.74707 309.00803 198.76814 354.8486 324.58102 296.24207 104.19936 208.74553 197.63275 19.30904 58.03582 20.74047
|
||||
138 314.37158 316.40598 298.19833 291.52295 287.19235 279.82129 258.63577 232.3279 197.67551 171.86595 81.14301 58.8513 395.58255 400.76453 296.90805 198.11502 357.56671 331.3168 294.11343 104.43603 208.87958 199.31139 19.2981 58.06998 20.77082
|
||||
139 318.22263 318.06149 298.56943 292.49689 287.52939 278.56409 258.43243 230.96692 197.29701 172.4274 81.24277 59.16917 392.4689 406.58887 296.34808 198.10893 357.99152 334.05661 295.88248 104.80882 209.53752 199.644 19.3066 57.99932 20.71195
|
||||
140 320.54218 320.41043 300.40659 291.66464 286.12204 278.52255 259.89145 232.44885 198.48126 173.08652 81.47749 59.38105 395.84872 404.92532 310.65768 202.32573 358.10788 329.77396 296.39529 105.72635 211.82114 199.702 19.32666 57.96398 20.76535
|
||||
141 320.16153 322.14935 301.18353 292.43787 287.74811 280.1355 263.0336 237.10077 203.26515 174.77736 81.40121 59.61058 393.32562 402.12866 300.53021 202.03291 357.33395 340.82761 315.23938 106.19415 210.34758 200.97128 19.34672 57.9045 20.73865
|
||||
142 316.89243 318.57709 300.22998 291.90076 287.11551 279.5723 263.67825 236.99211 202.64294 174.84451 81.70635 59.94599 390.80148 416.3468 301.34833 202.34402 358.61993 337.47226 310.93948 106.71538 212.77077 202.03902 19.3139 57.8456 20.73744
|
||||
143 315.69669 317.39645 301.03052 292.7211 288.42191 279.77386 265.19962 238.6877 204.66782 175.65041 81.69462 60.20488 389.79385 411.9747 293.77719 205.50926 359.77771 343.53973 311.43835 107.14788 214.19469 202.94795 19.28351 57.88035 20.72833
|
||||
144 318.59174 320.28159 300.88925 292.92175 288.15005 280.27185 266.79153 241.81628 206.28349 176.89601 82.03499 60.66962 393.31985 424.41968 292.13095 205.5824 363.97659 348.4653 313.42145 107.77013 216.37216 204.58246 19.3218 57.82028 20.69131
|
||||
145 318.24606 320.22595 302.12503 293.37607 289.37326 281.00089 267.89987 243.62889 207.21608 177.84256 82.55147 60.9402 391.44421 430.3429 315.50909 206.85039 365.13348 347.50378 319.5524 108.42819 217.37527 205.21965 19.35704 57.80379 20.71377
|
||||
146 317.121 320.96085 303.64267 294.01321 290.17661 282.42276 269.6745 244.84453 206.88695 178.77086 82.9095 61.22838 397.45691 432.35077 315.29214 207.15512 365.34854 342.63 322.32788 109.05091 218.03775 205.09467 19.25312 57.82793 20.69555
|
||||
147 317.42575 321.84201 304.11902 294.70914 290.42468 283.98001 270.28165 246.51656 208.73946 180.32225 83.08559 61.59298 397.0173 425.11646 303.05457 208.6176 364.63354 338.48196 320.28448 109.51954 217.94051 205.83847 19.33335 57.81674 20.72894
|
||||
148 315.31561 320.02682 303.99554 294.30811 289.45007 283.56561 269.94833 246.71494 207.60609 180.28558 83.73717 61.6459 398.44589 411.57657 310.81622 209.84816 364.20331 335.00851 315.60291 110.65905 217.70956 206.69189 19.2981 57.8456 20.68281
|
||||
149 315.19247 320.97256 306.18237 295.40497 291.31042 285.32343 270.603 247.83289 210.70081 181.25072 84.7059 62.00457 397.86179 415.54532 301.49542 211.05397 363.47073 336.16464 319.14825 111.16375 217.43605 206.64619 19.29506 57.84796 20.70223
|
||||
150 314.67651 319.49091 307.60425 295.8707 292.36115 286.69568 271.26941 248.03116 210.48766 182.05707 85.08758 62.081 397.76926 428.61075 331.39273 211.88202 363.33121 333.70621 314.7117 111.68642 220.4435 207.91385 19.28838 57.84325 20.6901
|
||||
151 315.7084 320.47192 308.29153 296.00037 293.90704 288.30963 271.45978 248.22342 209.12935 181.84938 85.65134 62.1927 396.2132 413.20938 330.67398 213.45845 365.18582 332.81833 323.75009 112.06664 218.80949 208.85217 19.30235 57.83205 20.69617
|
||||
152 315.25696 319.59048 307.28116 296.46603 293.39377 287.44067 271.2337 247.05157 209.35477 181.63556 87.06111 62.46312 399.69495 446.18094 353.30576 216.13504 365.78455 333.54852 323.39899 112.92243 225.66158 208.7943 19.27866 57.87328 20.65064
|
||||
153 315.91946 320.82617 308.42664 298.4104 294.0368 288.90649 274.48575 251.79536 213.70795 183.96916 87.22561 62.67474 397.48007 429.80777 338.14932 219.21049 366.69702 334.71655 324.93204 113.51696 224.46707 209.15982 19.30964 57.87682 20.70406
|
||||
154 314.60028 320.56268 309.54236 300.07693 295.88837 289.39688 275.47177 253.44446 212.52728 183.81033 86.80262 62.68061 394.41367 424.75366 358.19516 219.56889 364.61609 337.69406 323.27023 114.33775 224.89156 209.29689 19.23125 57.80909 20.67856
|
||||
155 314.74103 321.07208 310.32318 301.65433 297.29105 290.38333 276.84924 255.84096 217.07133 184.84279 86.57938 62.85695 394.61621 434.62845 369.80554 218.42668 365.81937 335.34137 329.1427 114.87328 227.99454 211.3493 19.27805 57.8032 20.72348
|
||||
156 312.70578 320.01218 310.41122 301.29535 297.12018 290.38333 276.50497 255.46967 215.83705 185.02608 86.24456 62.97449 389.52164 440.36603 372.7966 220.42529 367.06317 332.39188 325.3299 115.33753 228.63043 211.54109 19.26406 57.80673 20.70891
|
||||
157 315.49738 323.8262 310.54623 302.19565 298.53409 291.51703 278.04797 257.83417 217.48468 186.00356 86.05072 62.90396 396.03964 444.34827 408.65601 220.09125 368.56812 333.18637 324.61612 116.23065 231.97713 211.7968 19.23611 57.82381 20.66278
|
||||
158 315.7084 323.01273 311.32684 303.18396 299.11716 290.90891 277.49619 257.05026 218.91278 187.4026 86.99648 63.03915 404.3938 434.30637 406.88321 221.45746 366.83069 331.03629 333.42587 116.68334 230.72488 212.789 19.25373 57.83794 20.70527
|
||||
159 312.74686 321.9913 310.81622 303.28394 299.32327 291.0152 278.01831 256.14035 218.45705 187.90967 87.05524 63.23309 402.46387 424.12601 386.17316 219.70859 368.42868 331.55637 328.38852 117.30301 230.01683 214.26772 19.22882 57.8509 20.65549
|
||||
160 313.57394 321.16284 310.98059 304.36011 299.58826 291.32813 278.72424 255.33791 218.74266 188.57555 87.07285 63.05677 398.48059 436.54898 379.76089 220.83212 367.66751 336.10043 318.16403 117.93484 232.04968 214.06696 19.20755 57.85208 20.69738
|
||||
161 311.73181 319.78085 310.55212 304.14844 299.19962 291.79449 278.20816 253.81607 219.18619 188.96652 87.51352 63.04501 394.87665 431.64316 364.06961 221.62137 366.9411 334.03323 321.84201 118.13159 231.91664 215.16803 19.20816 57.81557 20.64578
|
||||
162 309.84769 320.10883 310.39362 303.88968 299.27615 291.55246 278.33273 253.43246 218.79732 188.64885 87.44888 63.24484 395.8371 428.72012 359.00974 221.22676 364.87189 336.95859 321.29166 120.09431 230.9185 215.69717 19.24159 57.81792 20.67431
|
||||
163 310.40536 322.284 311.74939 305.30661 300.59497 291.7886 277.87 253.70221 218.5482 188.45947 87.0141 63.45052 398.39966 431.39005 354.31882 222.21625 364.54056 336.04785 327.90903 120.18983 230.9306 216.38736 19.21362 57.8615 20.68584
|
||||
164 309.61282 320.54218 311.84329 304.93039 299.58826 290.63138 277.09262 253.28258 219.19833 188.77715 87.29024 63.50341 396.75699 417.39612 347.50378 222.88985 362.63348 336.39233 321.70737 120.24354 229.49022 215.66678 19.2039 57.97576 20.63061
|
||||
165 309.46014 320.00925 311.49118 303.3251 297.59744 289.4855 276.04782 253.70819 219.47169 189.18645 87.60165 63.39176 394.25165 411.73233 342.62997 223.7453 360.98181 333.77042 317.53122 120.58984 228.73338 215.26535 19.21849 57.96221 20.62454
|
||||
166 312.06039 320.79398 310.83386 302.4957 297.71527 289.58002 276.45157 254.84073 220.36456 189.72403 88.05413 63.47403 401.40613 430.36017 362.09262 225.82526 362.77884 334.18512 315.7084 121.09744 230.47678 215.91914 19.22335 58.08235 20.63243
|
||||
167 314.79965 321.66931 311.47357 302.95456 297.90378 289.29648 276.96204 255.2301 219.99408 190.29214 88.24219 63.82659 404.90222 448.35223 379.69128 224.66113 361.418 337.06366 320.75882 121.47973 232.50929 216.67313 19.25069 58.06881 20.65914
|
||||
168 314.06662 321.67224 311.61441 303.51917 298.65781 290.51917 278.36832 257.55295 221.5546 191.19012 87.96599 63.97349 406.81406 443.15891 373.20886 225.97072 364.33707 340.87427 321.8537 121.6769 234.12935 217.3996 19.25252 58.08117 20.69131
|
||||
169 315.30975 322.75519 312.4183 304.46005 300.2771 291.80038 279.82132 259.45505 220.6864 191.32449 87.89546 64.185 406.13257 444.62979 379.37225 227.92183 365.66248 338.38858 317.1503 122.29836 234.99939 218.19272 19.27014 58.08824 20.68706
|
||||
170 316.98621 323.09174 313.62085 305.84738 301.67786 293.59436 281.44528 261.13449 220.45564 191.58714 87.87196 64.36125 401.75296 423.71136 360.31866 226.80708 365.72641 336.28723 322.79031 122.56136 234.69128 218.69708 19.28352 58.1171 20.68099
|
||||
171 317.79489 323.43704 314.81726 306.78177 303.02515 295.42853 281.36234 259.742 218.96138 191.06795 87.8367 64.80183 405.78024 457.22446 388.87872 228.21863 366.54007 337.12784 320.49533 123.93681 238.02406 219.95157 19.23004 58.16244 20.67552
|
||||
172 319.15997 326.19562 317.55466 307.16367 303.94263 295.81763 282.77219 261.52878 219.73289 191.28174 87.80731 65.06615 406.35785 441.45798 389.97339 227.77646 366.29016 342.2334 317.05066 123.92484 236.75064 219.15582 19.29081 58.20248 20.71377
|
||||
173 319.49969 327.29218 318.082 308.6322 305.05383 295.92374 283.03867 261.10461 219.00391 191.89865 87.7133 65.04266 413.74008 452.83762 368.82953 225.45544 367.09222 339.2348 316.40012 124.14024 237.96373 220.78355 19.25253 58.20189 20.68888
|
||||
174 320.30206 327.18106 317.80075 309.31335 305.69458 295.92374 283.44724 260.42935 218.58467 191.44055 87.96599 65.24236 408.67911 449.6962 367.85342 227.61288 370.45615 355.59375 327.59918 124.85237 237.62582 222.09789 19.27925 58.21544 20.67431
|
||||
175 319.36499 326.31259 318.03513 309.73026 306.08246 296.39529 283.39395 260.51901 219.04645 190.87247 88.1129 65.47728 414.05157 456.1106 372.76175 229.03613 368.41125 348.5993 325.48782 125.21754 240.47252 221.56978 19.34671 58.20719 20.69798
|
||||
176 319.85114 327.24539 317.64255 309.742 305.87677 297.00821 284.74353 260.40546 219.96371 191.27562 87.53702 65.63584 422.42114 460.89313 390.74939 228.78789 369.43958 350.24808 323.9198 125.85227 241.71385 222.42259 19.35886 58.23251 20.72651
|
||||
177 318.2402 327.50269 318.63275 310.32904 306.01193 298.2337 286.19299 262.59183 220.60747 191.01909 87.23737 65.48903 418.87177 465.1355 370.83948 229.83525 368.14978 345.72025 322.12885 125.85826 243.3941 222.12823 19.35947 58.25607 20.67978
|
||||
178 317.87106 327.24539 318.40427 310.19403 305.30075 297.79187 285.82034 261.7916 220.18236 189.82787 88.88284 65.42442 410.82056 481.6821 436.37653 232.55164 367.63843 341.30594 317.62497 126.36143 247.70668 222.04024 19.3777 58.24193 20.68524
|
||||
179 321.60196 329.35019 318.54486 310.59906 305.50647 298.41632 286.25806 263.00378 221.36641 191.65434 89.06508 65.47728 412.89786 484.61325 415.02628 232.79953 369.06195 347.57956 312.72925 126.94266 249.22652 223.00209 19.33577 58.2278 20.68463
|
||||
180 321.32092 327.60501 318.21677 310.4758 304.70697 298.47519 285.05124 261.40335 220.4921 191.09238 90.04105 65.56537 406.9007 467.6441 400.82813 229.73842 369.48605 343.07901 311.79047 127.61401 247.88094 223.23268 19.40626 58.2172 20.71194
|
||||
181 318.5683 326.09909 316.51147 309.54822 304.17194 297.65634 285.22284 262.12607 223.47232 193.16296 90.27038 65.89424 402.00153 466.4501 386.5614 230.14998 371.159 344.59509 319.99753 127.98574 247.82686 223.93639 19.39715 58.22015 20.69798
|
||||
182 317.96481 323.92273 315.76703 309.3251 303.54858 298.05698 286.31131 262.85452 225.83736 194.97069 92.52357 65.72394 397.69983 439.16476 367.40021 228.90292 370.76981 349.77625 339.67825 128.02773 244.70615 224.33669 19.39593 58.26254 20.73076
|
||||
183 317.95309 324.83554 315.69083 308.39725 303.37802 298.10999 285.4595 263.83939 225.13412 194.57986 92.27639 65.97057 395.83133 428.70285 363.20911 230.19234 370.17734 344.87497 341.34094 128.31558 244.83852 224.54895 19.41112 58.2596 20.73743
|
||||
184 317.13858 324.70975 316.42941 309.94162 304.0014 296.85501 284.81454 263.61261 225.12199 195.10503 91.68797 66.11151 389.78806 422.2771 382.67792 227.90367 370.55487 361.96469 349.89856 128.59747 243.08104 224.94009 19.42753 58.22191 20.73866
|
||||
185 315.08694 323.99295 316.38837 309.83005 304.57175 298.36328 285.52457 264.41223 225.32208 193.75542 91.5703 66.24656 389.5564 444.66425 387.25668 227.98846 371.01376 355.09894 342.49585 129.14946 246.45041 225.17657 19.43117 58.22427 20.7514
|
||||
186 315.81393 325.31232 317.09171 310.07663 304.96567 298.62247 286.08063 266.21332 227.68559 195.02565 91.51147 66.55775 387.78391 438.98083 373.4411 229.06641 369.41632 358.17188 348.02246 129.20346 246.79309 225.56459 19.44332 58.2119 20.77871
|
||||
187 315.11624 325.34448 317.61325 311.02167 305.48886 298.29849 285.83807 265.29504 226.97069 195.00121 92.24108 66.6282 384.55621 423.74594 353.95206 228.50934 369.59644 361.99957 341.09595 129.42551 245.30775 225.84041 19.42267 58.23134 20.76233
|
||||
188 313.66193 323.31415 316.40598 310.09427 305.27136 297.57977 285.70203 265.66479 227.63713 195.26379 92.00571 66.84544 395.0329 446.72098 381.46027 230.91852 369.19559 355.57047 335.04941 129.98373 245.84908 226.55258 19.41477 58.22956 20.77871
|
||||
189 317.50192 325.4176 316.85727 310.54623 304.94214 297.45602 285.77893 267.14316 228.23074 196.00262 91.64091 67.02744 398.21457 455.45032 373.46432 231.81987 371.11832 352.04788 331.68494 130.59016 249.53278 227.6765 19.3777 58.22956 20.79084
|
||||
190 320.1908 328.44113 319.80426 311.69659 306.29404 299.78845 286.86716 266.29678 226.31621 195.69733 91.85271 67.45012 395.8082 440.76837 385.31546 232.96277 369.41052 356.91495 343.4639 130.98654 251.16544 228.17928 19.3856 58.20719 20.8042
|
||||
191 320.39578 328.30664 321.57855 312.88766 306.76413 300.93048 287.30472 267.02396 226.04346 195.25768 91.78211 67.66144 407.51855 443.13019 385.2981 233.09578 369.80554 354.74384 339.59073 131.40106 249.97707 228.68192 19.3613 58.20013 20.78053
|
||||
192 319.79257 330.73828 321.46732 312.85245 306.32343 301.8779 287.23965 266.62463 226.64348 195.72784 92.2352 68.16037 402.82217 451.155 396.98837 234.25627 370.20059 359.17261 342.87491 131.72551 250.91339 229.30254 19.37041 58.27668 20.75139
|
||||
193 321.97079 331.54175 321.93567 313.36865 307.32816 302.12503 288.61102 268.40024 228.10356 196.99174 93.23578 68.71206 403.76984 449.19656 371.63519 234.66107 370.22382 362.60437 358.87012 132.23636 250.60735 229.19658 19.40748 58.24547 20.81755
|
||||
194 323.42239 333.45505 321.84198 313.58569 308.17407 302.40744 289.29056 269.97812 229.38126 197.9502 93.47715 68.8353 404.15692 447.11728 366.99341 235.35577 371.75134 359.27734 352.46722 132.43475 251.48341 229.97145 19.34307 58.26313 20.76657
|
||||
195 325.48196 334.4187 323.09464 315.21594 308.96103 303.10748 290.47192 270.23404 230.19839 199.14658 93.53014 68.98202 410.08762 451.89581 369.12585 237.19733 373.08115 359.5799 360.22559 132.6091 254.28349 231.52652 19.36859 58.29199 20.78114
|
||||
196 324.30603 334.75452 325.18948 316.96863 310.75754 304.14255 291.10968 270.2995 229.70815 199.3663 93.84808 69.24023 411.57077 464.96906 368.42285 238.59721 372.60501 357.03134 353.80652 133.09013 256.0625 231.52652 19.37163 58.31848 20.81088
|
||||
197 326.18393 336.03909 325.75107 317.2558 311.69659 303.7897 291.54065 271.08496 230.02289 200.45872 94.18373 69.36346 414.29379 472.87906 391.55399 239.04958 376.43054 353.09613 351.44806 133.67354 259.85556 232.49117 19.41051 58.27668 20.82726
|
||||
198 324.63367 335.61288 326.02014 317.49606 312.14841 304.53061 291.91846 269.92453 229.1209 199.79962 95.17918 69.42214 411.87085 455.99573 383.3157 237.83099 379.6449 354.66229 349.71216 134.10069 258.76135 233.34061 19.3613 58.31495 20.84304
|
||||
199 321.97665 334.54431 325.84467 317.61325 312.30096 305.57703 292.47327 270.60895 230.24681 200.83096 95.26166 69.51016 421.13071 456.14505 412.86884 236.07445 378.86758 355.43076 352.10614 134.78677 261.02097 233.76372 19.40322 58.29199 20.87824
|
||||
200 321.29752 335.49319 326.81555 317.87692 312.69992 305.53586 291.71774 269.78763 229.41153 200.73332 96.01589 69.66273 414.39188 448.49582 424.51184 235.89934 379.34906 356.99063 351.04614 135.23222 261.1524 233.96922 19.33881 58.31142 20.87946
|
||||
201 320.38992 335.16913 327.65179 318.16989 312.74097 305.01859 291.83582 269.87692 229.61737 201.9841 96.12197 69.85049 410.80902 450.02362 400.51019 237.01021 378.18298 359.63806 349.85196 135.50922 261.02097 234.04778 19.35703 58.35911 20.88249
|
||||
202 322.93661 337.51605 327.79211 319.48212 314.2836 306.74649 293.75366 272.04861 229.30254 201.58142 95.96285 69.92678 413.77469 447.4964 404.91376 238.42227 376.0127 357.17685 347.38724 136.08736 260.44131 234.05684 19.34489 58.31731 20.9007
|
||||
203 323.02441 337.12784 327.19568 318.99597 314.69998 307.06967 294.69736 272.22107 230.58571 202.68564 96.3931 69.87984 407.74374 429.96317 381.91257 239.18225 374.08554 362.73813 344.12286 136.4247 257.76239 233.73955 19.35644 58.33674 20.90434
|
||||
204 321.56686 334.65817 325.55801 317.60153 313.33932 306.54672 293.57077 271.60254 230.50703 203.14926 95.88034 69.83876 415.25699 457.55746 404.85599 240.47853 376.26227 357.11862 345.56866 136.70184 257.81622 234.72754 19.33759 58.28374 20.90798
|
||||
205 321.40878 334.09167 325.47614 318.07614 313.4332 306.84641 292.96893 270.77557 231.14238 203.23465 95.86856 69.5395 410.4339 444.46317 390.98679 240.16508 375.94885 359.72534 342.43167 137.21407 259.04245 234.26836 19.32241 58.27314 20.91344
|
||||
206 321.63126 334.24933 326.85065 319.52899 314.55923 307.88623 290.70813 269.57925 232.47908 204.57635 95.72124 69.48082 402.77014 428.71432 381.97632 237.80083 376.05914 357.27576 336.84766 137.5275 257.40933 235.00845 19.33273 58.31142 20.94317
|
||||
207 321.84201 332.86798 325.35913 319.06625 313.01669 304.77753 289.00696 267.68539 231.7352 202.89305 95.68 69.52776 402.55634 439.08426 390.95203 237.99994 376.59305 353.82397 337.33218 138.26303 257.3136 235.41318 19.29202 58.25548 20.91648
|
||||
208 320.70029 331.68494 324.49911 318.07614 313.18683 304.58939 289.85175 269.16849 234.41942 203.92384 95.86856 69.42801 403.48093 440.46375 376.70328 238.00598 378.22937 350.87723 333.9223 138.4319 261.76172 236.53635 19.32849 58.21308 20.92619
|
||||
209 319.40012 331.422 324.3645 317.26749 312.19534 304.4953 289.92853 268.04285 233.61563 204.38733 97.76099 69.01136 403.43472 427.68411 378.99521 235.44638 376.9877 348.02246 330.80258 138.5103 258.97665 236.12578 19.31755 58.2278 20.9098
|
||||
210 319.40598 331.73749 324.08948 316.59937 311.00406 303.98965 290.67273 267.31598 232.39441 204.1434 99.90296 68.92333 403.75827 430.61331 389.67224 235.80272 378.25839 346.15741 329.85577 139.11954 259.72406 237.45988 19.33759 58.16597 20.91223
|
||||
211 320.53046 333.4025 326.31845 318.54486 314.2836 307.21066 292.50278 268.78735 232.73303 204.35072 100.00332 68.79422 405.5954 417.97263 367.10382 234.83627 377.07474 347.41055 329.06668 139.0592 257.4632 236.99817 19.38135 58.17657 20.9274
|
||||
212 319.52899 331.69366 324.00757 317.37888 312.9111 306.82288 290.56641 264.28098 230.04709 203.47252 99.89706 69.09351 413.65933 444.22186 404.31873 233.02322 373.77786 343.89542 327.6752 139.46344 260.65643 236.94685 19.40079 58.28374 20.93589
|
||||
213 321.37949 333.59525 324.70389 317.36127 314.20737 307.93909 292.55588 265.46802 229.76868 202.65515 99.7908 69.21675 408.26917 440.22235 385.84863 233.70628 375.08398 341.53925 324.29431 139.6505 260.17834 237.3965 19.43664 58.32025 20.94257
|
||||
214 320.88766 333.27399 323.89053 316.68732 314.04901 306.50558 290.69632 263.73792 228.99377 202.10611 99.35398 69.1346 402.67191 446.48538 414.28226 234.67316 372.15784 344.81082 320.21423 140.06691 260.93732 236.83215 19.45426 58.33085 20.95835
|
||||
215 319.90384 332.20786 323.715 317.68942 314.8114 306.79352 292.03061 264.4361 229.01797 202.61244 100.62332 68.89398 404.78088 435.77277 395.22961 233.3678 371.18219 343.55722 318.01755 140.41701 259.13809 238.29256 19.45244 58.28551 20.98989
|
||||
216 319.98584 332.19614 322.6264 316.45871 313.55634 306.75238 291.23367 263.58276 228.27315 202.66734 101.72205 68.84704 405.42789 427.32147 406.25931 233.02322 369.9682 342.56583 325.06662 140.86378 258.49222 238.01805 19.46034 58.33026 20.97169
|
||||
217 319.84528 331.63235 323.58624 316.61111 313.02258 306.4527 291.49933 264.85962 227.97635 202.45383 102.34849 68.85291 402.03043 424.65579 385.02567 234.00244 372.51788 340.51257 325.599 140.80945 257.86407 238.67865 19.46702 58.31789 20.98019
|
||||
218 320.93448 333.3324 324.20651 317.14444 313.13989 306.09421 291.16281 264.15567 227.62502 201.48993 102.76228 68.97028 402.35983 425.47333 377.22559 234.59464 371.04858 350.07333 328.87946 141.1778 256.96048 239.26065 19.45183 58.28021 21.00082
|
||||
219 319.88626 330.61267 323.53943 317.02136 312.44763 305.36539 290.59003 263.54099 228.0672 202.56975 102.37213 69.00549 408.45395 452.14276 403.6716 236.58763 370.58972 349.86945 333.64197 141.49185 263.65439 239.16415 19.46946 58.32084 21.01964
|
||||
220 323.9198 333.48425 327.11966 318.67377 313.81442 306.9639 291.22778 262.21564 227.73407 202.42334 102.8273 68.36578 414.22458 458.7861 422.79553 233.7486 373.05792 347.18909 328.08444 141.812 265.99869 239.76115 19.46398 58.31731 21.02388
|
||||
221 324.72729 333.80551 326.75708 318.39841 313.31586 306.3822 291.21005 259.2637 226.57681 201.65465 103.05788 68.07232 412.71326 454.6579 431.39578 232.68466 373.17401 344.58344 324.94376 142.23491 263.95276 239.21542 19.48647 58.30788 21.06211
|
||||
222 324.62198 334.39243 328.45282 319.32983 313.33347 304.71872 290.11755 256.57141 225.52823 200.87976 102.42532 68.38926 418.31268 463.6889 427.87979 231.88036 372.8605 340.9968 320.51288 142.70021 264.28693 239.88776 19.51684 58.33674 21.03116
|
||||
223 323.99002 332.77744 326.75708 318.82022 312.49457 303.09573 288.69376 254.78082 224.4792 199.98271 101.52117 68.24841 409.66629 453.89993 400.87439 231.57187 370.67105 338.07343 315.96048 143.0145 260.30383 239.3481 19.50529 58.32025 21.03663
|
||||
224 321.198 331.45703 324.83847 317.1503 310.45819 301.49545 287.24557 254.33742 225.59491 200.05595 100.94815 68.21319 415.9259 448.68539 386.8511 230.17419 369.78235 338.7796 320.08539 143.6432 261.4989 239.19734 19.53447 58.37148 21.0433
|
||||
225 321.13358 332.3656 324.95544 318.07028 312.078 303.63092 288.20917 254.79878 227.30392 200.62959 99.9679 68.60641 412.69592 438.72791 364.95911 231.53558 368.03357 341.69095 319.64026 144.09673 259.75394 238.8988 19.55755 58.3915 21.06697
|
||||
226 321.67224 331.13565 322.92493 316.62869 310.53448 303.00159 286.25217 254.40334 226.83133 199.76303 98.74615 68.82943 410.46277 424.44275 352.23425 230.858 366.58078 339.75409 325.04321 144.37494 257.50507 239.28479 19.58064 58.42212 21.06454
|
||||
227 322.5386 330.10999 322.35129 316.78693 311.22122 303.69562 286.57742 255.62537 228.07932 199.5372 98.15029 69.14046 407.84192 423.16995 373.95203 232.26137 365.43573 338.13181 325.85635 144.96172 260.27396 239.45663 19.64868 58.38972 21.10883
|
||||
228 324.31186 332.69562 323.99002 317.88864 312.76447 305.28311 286.99725 257.38538 230.38602 201.28246 97.1418 69.06418 401.87439 412.70172 355.61118 230.16209 364.56378 345.89511 327.03192 145.01616 257.90594 238.60324 19.6663 58.32732 21.1513
|
||||
229 321.94153 330.10712 321.83029 316.18323 311.28577 304.20721 286.93222 257.55295 230.26498 201.0323 97.61945 69.19328 399.49258 422.39807 357.16519 230.9064 365.63922 346.61792 320.5246 145.53653 257.76236 239.39635 19.65961 58.28963 21.11854
|
||||
230 322.53275 331.06262 321.49072 315.53253 310.72232 304.29544 288.36874 261.4989 234.53423 203.83846 96.91776 69.38693 397.79242 409.27954 336.17047 230.69463 364.7905 345.77271 323.12976 145.34894 255.79903 239.37222 19.71854 58.26784 21.11793
|
||||
231 323.27609 331.70828 322.56201 315.9429 311.95477 305.02444 288.25644 261.24203 233.44638 203.03336 97.2951 69.61578 399.63715 415.08972 336.31058 229.67787 366.05771 349.92188 345.93594 145.51233 255.45171 240.96368 19.71186 58.30494 21.16162
|
||||
232 324.97888 332.88843 321.7132 314.31293 310.81036 303.33096 287.56485 261.66614 234.61275 203.7043 97.57227 69.3928 392.4689 408.09598 325.50537 231.8985 367.09222 352.0654 340.49509 145.63942 254.28349 239.99326 19.72644 58.3438 21.14705
|
||||
233 323.31122 330.72659 320.85251 313.50943 309.59518 301.67197 286.89673 261.79755 234.60066 205.34464 97.43663 69.46909 387.58691 402.3772 327.34189 230.82776 364.86606 347.03171 331.32263 145.99649 254.38535 239.58327 19.72097 58.36382 21.13978
|
||||
234 322.3103 329.41742 320.07367 312.69992 308.93167 300.46545 285.9505 261.8812 233.77277 205.24098 96.6171 69.4104 393.52243 398.09314 316.27115 230.64018 365.77289 345.55704 328.03183 146.36574 253.42645 239.90584 19.61102 58.36441 21.17921
|
||||
235 320.57144 329.04327 319.1131 311.94891 308.17404 300.58319 285.78485 261.6124 232.59398 204.61905 96.75858 69.5043 389.1973 406.57153 348.61679 228.04298 368.43448 345.71442 326.21317 146.85011 253.73215 239.80937 19.59643 58.35912 21.16587
|
||||
236 318.84952 327.36819 319.08966 312.26575 308.07419 301.00696 286.73709 260.62659 231.64447 203.73479 96.45204 69.62165 390.02551 409.36035 348.26135 227.86127 366.02283 344.01208 322.83127 147.41937 256.76895 240.1651 19.58185 58.32084 21.18467
|
||||
237 318.082 329.36188 320.79984 313.02258 310.03555 302.51923 287.44067 259.65234 230.47678 202.95404 96.10429 69.49255 390.83624 402.82797 350.12573 228.7576 364.81375 342.44336 321.30338 147.77069 257.60083 240.08069 19.57578 58.35852 21.17861
|
||||
238 319.07211 329.5343 319.2244 312.45938 309.1196 302.64276 286.67795 258.875 229.59312 202.25864 96.70552 69.34585 389.37686 418.73923 387.07706 226.07378 363.6452 339.42151 319.75742 147.91 260.73413 240.52676 19.55877 58.37442 21.17133
|
||||
239 316.63455 326.88571 317.05652 312.21881 308.69092 303.38977 287.86044 259.59854 229.81709 202.52705 95.88035 69.35172 388.39215 426.99335 386.09204 227.87944 363.75568 336.13544 319.56998 148.25534 259.22183 240.05658 19.5375 58.29905 21.19681
|
||||
240 314.30707 325.22751 317.27335 312.57672 308.93167 303.72501 286.47693 257.88205 228.33371 201.53262 95.43252 69.29304 383.07797 415.83362 367.10965 226.92827 360.55716 333.85803 324.34113 148.14021 256.94852 239.51093 19.5132 58.27373 21.22956
|
||||
241 314.28946 323.52188 316.27115 311.80807 308.01544 302.50159 284.51273 257.95984 229.7505 202.63686 95.20274 69.49255 384.90976 407.02194 357.42126 225.55852 360.76074 338.52283 331.29926 148.28563 256.65521 241.31621 19.49375 58.33027 21.20227
|
||||
242 314.89932 323.76474 316.17737 311.36792 307.2988 301.53665 284.51865 257.86411 229.64156 202.89915 94.83161 69.32825 380.17856 412.18237 362.80206 227.66742 361.133 337.31464 328.40607 148.60677 258.79126 240.70454 19.47128 58.36794 21.14098
|
||||
243 318.93738 324.8443 316.63455 311.52054 307.4339 302.13681 285.15182 260.10663 228.96953 203.17975 95.33825 68.68858 382.84027 412.88632 368.44019 231.96503 363.33121 339.11221 323.45752 149.38861 259.25769 241.1264 19.46884 58.36853 21.17496
|
||||
244 317.81247 324.59271 316.83383 312.2247 309.24289 302.3486 285.82034 259.50287 228.24893 202.69176 95.73302 68.45383 384.55042 424.3103 407.69757 232.62421 360.05109 335.72675 318.52728 149.64322 259.84363 240.5569 19.39714 58.40033 21.20287
|
||||
245 316.36493 322.35715 316.07187 312.45938 309.3075 301.64844 286.40002 257.20587 226.40106 201.52652 95.63875 68.58881 385.62262 417.3154 411.18414 234.04474 359.25409 333.54852 317.10342 149.94635 258.8989 240.40923 19.43361 58.39209 21.15009
|
||||
246 314.61789 322.00595 316.00153 311.95477 309.284 301.17178 286.04514 258.12732 226.79497 201.39839 95.96874 68.54186 385.43713 410.4166 380.99634 234.37108 357.61911 332.85339 316.97449 149.83115 257.93588 240.26456 19.39472 58.41387 21.15251
|
||||
247 314.99313 320.75592 316.08945 311.37381 309.19006 300.63617 284.44171 257.73245 226.5162 201.16043 94.99066 68.68858 381.0311 396.1264 357.79367 232.49117 361.20282 332.40356 319.5817 149.64928 255.33191 240.53279 19.39532 58.36382 21.15191
|
||||
248 311.9313 318.2695 313.96692 309.02563 306.65836 298.82269 282.53528 255.88887 224.7885 200.28175 95.15562 68.68271 386.83954 409.78748 383.078 234.57651 365.36603 331.95953 319.25369 150.24347 257.82819 241.86447 19.38013 58.40327 21.09791
|
||||
249 311.69659 321.31799 316.20081 310.82797 309.3486 300.56552 284.7731 259.13214 227.93394 201.64244 95.43842 68.62402 383.88962 406.61774 356.18161 233.88156 363.37775 336.88852 320.53036 150.0191 261.92896 241.98495 19.35947 58.39091 21.07242
|
||||
250 310.98059 320.66806 314.65894 309.68915 307.93323 299.28204 284.55414 258.88696 227.4675 201.68515 94.98477 68.72966 381.98215 399.11673 363.93591 231.91664 361.2261 335.00851 324.27676 149.83722 259.75397 241.54518 19.37345 58.4439 21.02571
|
||||
251 310.50516 320.70322 313.27481 308.72617 307.07556 299.48227 284.80862 257.34351 225.87375 201.48993 95.73304 68.48317 376.56403 392.07529 374.71249 230.37996 358.25919 333.1922 319.40598 150.15857 257.11011 240.20126 19.4093 58.43389 21.04269
|
||||
252 309.59518 320.31378 311.93716 307.89798 305.91202 298.68134 283.44724 255.36786 224.63081 200.53804 94.63134 68.37753 375.10141 386.37598 347.81265 228.14594 356.04773 337.36719 312.86417 150.13432 255.29597 240.33389 19.37345 58.40151 21.04087
|
||||
253 308.73788 318.49506 310.51691 306.39981 304.17194 297.13785 282.18585 254.18762 224.01826 198.87192 95.47966 68.2308 376.45374 394.62198 344.26859 227.09187 356.36203 335.67419 320.08539 150.31622 255.05037 241.03299 19.38256 58.38031 21.01599
|
||||
254 308.82599 318.50092 312.00171 306.82877 304.40714 296.60159 282.35168 255.76311 226.01317 200.19633 95.15562 68.31296 374.60217 383.29251 335.17203 226.53439 355.69269 334.09164 322.87811 150.35869 253.4864 240.21933 19.35218 58.39209 21.01539
|
||||
255 307.89798 317.79782 312.5239 306.76999 303.30157 296.07111 281.70599 254.63101 225.09773 200.15971 95.75071 68.43622 375.48453 387.99246 341.62677 226.21318 353.71335 333.50763 324.45227 150.71651 253.40848 239.32095 19.3777 58.39561 20.99415
|
||||
256 307.04031 316.74005 311.55576 305.98843 302.31332 296.53085 282.8847 256.85275 227.14641 201.18484 95.33825 68.1545 377.89868 398.67722 342.58914 226.95857 353.64929 333.96902 325.9324 150.78322 254.38535 239.88776 19.35401 58.3862 21.00992
|
||||
257 306.55261 317.42868 311.89023 305.54175 302.50159 297.69171 283.63074 255.27802 225.77071 200.21463 95.70357 68.0371 378.53693 391.94788 346.07581 224.43675 353.50372 337.37888 322.93079 150.90453 256.19424 239.55313 19.2902 58.41741 21.00325
|
||||
258 307.48679 319.09555 313.04602 307.02267 303.86026 299.60001 284.16351 255.11627 225.99498 200.4221 96.1927 68.1721 380.79333 385.48935 336.97604 225.98285 353.2475 336.56165 318.63861 151.30489 254.34341 240.02945 19.34003 58.44273 21.01478
|
||||
259 307.10492 319.58463 314.04315 306.97568 303.43097 298.52234 284.00961 255.06836 226.06772 200.48924 96.81753 68.37753 381.03693 396.36942 337.4021 227.66136 353.56778 334.7049 318.82608 151.18355 254.95453 240.59004 19.30417 58.4963 21.03541
|
||||
260 309.78308 320.36945 313.4801 306.43509 303.51917 299.45282 285.31161 255.13426 225.89799 200.53195 96.44025 68.50078 379.43607 393.16934 343.67386 226.69801 354.30136 332.74237 322.64395 151.69923 254.63101 240.35799 19.30357 58.43507 21.00689
|
||||
261 310.42883 319.87454 313.6326 306.79941 303.05457 299.76489 284.72577 255.19415 226.32834 200.95299 96.81164 68.3247 378.16556 393.76547 333.47839 226.97069 353.83563 333.79965 324.77994 151.85699 254.41531 240.23442 19.29749 58.37737 20.98383
|
||||
262 308.66742 318.11716 312.73511 305.45944 301.01874 299.27026 283.14526 254.61305 225.6555 200.80655 96.44615 68.38926 378.63556 395.80243 321.08087 227.66136 352.07703 334.82751 333.36743 152.18466 255.29597 240.5358 19.30964 58.40504 20.9893
|
||||
263 308.85535 318.6181 312.71753 305.15964 301.27771 299.18195 283.08603 255.78706 225.90404 200.4099 96.78806 68.14275 382.35324 409.9722 316.10117 228.38217 355.03488 332.17569 327.61673 152.34245 255.76909 241.29814 19.25313 58.37266 20.97534
|
||||
264 308.73203 319.34448 312.94046 305.9473 301.05408 298.75204 283.84976 256.46964 226.66167 200.50145 96.45204 68.30122 381.00793 400.14594 307.43979 228.49722 354.63321 334.04492 328.03183 152.19073 254.82274 241.25595 19.29628 58.40798 20.96623
|
||||
265 311.24469 321.00183 312.95804 305.47708 299.92386 295.88837 281.45715 254.78082 225.07954 199.3602 96.47562 68.38926 379.5463 402.5968 322.3396 227.20091 355.06979 333.86972 325.36499 152.40314 256.70908 241.42166 19.27865 58.36677 20.98444
|
||||
266 311.16251 321.59903 314.21323 305.93555 301.27182 296.20667 282.31024 256.96048 226.6859 199.9278 95.32648 68.52425 373.60367 391.7916 319.44696 227.01917 353.45715 331.40445 321.8186 152.50632 256.42175 240.87631 19.26711 58.34439 20.96866
|
||||
267 310.39362 320.80569 313.92587 305.60052 301.31888 295.71152 281.70599 256.58939 224.7339 199.09164 94.49587 68.4773 372.27982 394.43103 316.59351 227.56444 351.5412 330.37595 321.198 152.67627 258.0675 240.93959 19.27135 58.3073 21.00871
|
||||
268 309.49539 320.66516 313.77924 305.48886 300.95401 295.01581 281.89557 256.87073 225.47971 199.68979 93.96585 68.55946 373.73721 393.80603 318.45694 229.60526 351.4888 333.13962 329.46414 152.94334 257.69656 240.8522 19.30478 58.26019 20.99718
|
||||
269 307.23419 319.42355 313.39212 304.70697 300.53021 294.65015 281.2142 257.0802 225.13412 199.5372 93.54781 68.48318 375.2059 388.8266 329.18945 230.24681 350.00345 338.53448 333.66531 153.0769 256.54749 241.42467 19.34124 58.24547 20.98444
|
||||
270 307.0697 319.5817 314.10181 305.35953 300.5773 293.65335 279.66122 256.9545 225.30998 200.15971 93.27699 68.21318 373.25531 385.53571 337.08664 227.70377 349.61896 335.32968 327.27756 153.14975 256.1044 241.39154 19.35157 58.31201 20.94438
|
||||
271 306.68774 320.42798 313.76163 304.26013 298.91104 291.90076 277.75134 253.67822 223.57545 198.73764 95.38539 67.46185 372.60501 391.98267 370.91501 227.90367 347.76022 333.91644 324.62784 153.45331 257.94785 240.80399 19.33152 58.30317 20.94863
|
||||
272 305.84738 317.48727 311.35034 303.66034 297.91556 291.28088 276.62964 253.11473 223.35098 198.40192 95.93338 67.17422 371.10089 384.35333 359.20172 225.97072 348.18564 332.45029 321.50244 153.56868 257.24179 240.99684 19.32119 58.29493 20.93165
|
||||
273 303.36627 316.20374 310.89841 303.40744 296.63693 290.01712 275.66183 251.09943 221.81563 196.62541 95.35593 67.18594 368.23114 378.5195 350.15485 225.27965 345.74939 328.34171 317.93552 153.41081 255.3439 240.11685 19.34185 58.35322 20.92679
|
||||
274 303.20749 317.02722 309.08435 301.73669 294.73865 288.21509 274.55109 251.24344 221.98558 195.96597 94.56655 67.19769 370.72913 393.07672 349.28101 225.44942 345.1373 325.86221 324.35867 153.31366 256.46365 239.85762 19.31329 58.33085 20.93893
|
||||
275 302.86633 317.14151 309.19592 301.63077 295.70563 288.93604 274.37878 249.86301 220.69853 195.50194 93.53603 67.05679 367.46411 385.61676 343.6272 224.94615 343.17816 322.96591 317.84763 153.44724 254.64301 239.15211 19.32362 58.35675 20.95835
|
||||
276 300.18878 314.16339 307.21066 300.07693 294.69144 288.18552 273.27939 248.37361 219.53851 194.28062 93.3123 66.94525 366.03445 380.67734 336.18216 225.56459 341.59177 325.53464 317.1503 153.39867 253.78609 238.93198 19.37163 58.40798 20.95227
|
||||
277 299.52347 313.12231 305.88263 299.01706 294.18427 287.29288 273.26154 248.65594 220.40707 195.15387 93.15925 67.2564 364.18591 369.70099 325.65161 225.79494 340.57675 322.14639 322.82541 153.4776 252.60507 238.76912 19.34367 58.39209 20.92376
|
||||
278 297.78595 311.6203 304.91864 298.45755 293.36426 286.78439 272.80972 248.67998 220.07303 194.95236 93.97174 67.46186 365.61017 382.99683 336.57913 224.18808 340.29086 326.75708 319.4411 153.74477 253.67821 238.36194 19.34793 58.40739 20.97352
|
||||
279 298.48108 312.30682 306.41745 299.88855 295.004 287.97864 273.8024 249.47874 221.23891 195.64236 93.63023 67.26814 364.99976 365.63922 320.22009 222.2041 340.47171 325.17194 320.45435 153.4351 251.90933 238.70277 19.36737 58.42977 20.95835
|
||||
280 298.31027 311.56454 306.0531 299.78845 293.90704 286.03922 271.81665 245.25964 219.23479 193.35231 94.59599 67.16247 361.02249 372.09393 348.63425 223.57545 338.27774 322.48593 316.40009 153.63547 252.21526 238.20808 19.35279 58.46157 21.03783
|
||||
281 297.73883 311.27112 306.05896 299.99451 294.29041 286.09244 272.14377 245.60849 219.57497 193.4256 94.32507 67.1566 363.60449 371.23447 349.42667 222.53789 342.11676 341.32928 315.06351 153.65976 251.46541 238.62135 19.34488 58.49041 21.00325
|
||||
282 296.46014 309.04913 304.18958 298.78735 293.74774 287.14508 272.22107 244.89267 218.5786 193.38286 95.69178 66.72802 357.67728 377.28943 343.31778 219.60533 341.18344 333.96317 316.34735 153.62334 250.0551 237.89133 19.38682 58.58991 20.99657
|
||||
283 295.90015 307.64246 302.78397 298.06287 292.2785 286.44733 272.72647 244.65201 218.97354 192.90645 95.65643 66.75737 358.41046 380.49753 369.97986 219.28946 341.10181 331.51547 321.62537 153.75084 253.6962 236.92572 19.40504 58.58933 21.03238
|
||||
284 294.65607 306.14709 301.56018 297.07892 291.74725 286.11612 273.11292 245.74684 220.03661 193.5844 94.78448 66.68692 355.5239 377.08051 343.23065 218.71227 338.2135 329.34143 320.67099 153.3076 251.63339 236.81705 19.39654 58.59109 21.04208
|
||||
285 293.78314 305.91791 301.10703 296.50729 291.51703 285.41806 272.04266 245.28371 219.3988 193.36453 93.55369 66.52252 354.62738 366.05771 326.47052 218.14716 335.80847 325.62238 316.40012 152.90692 249.22652 236.31898 19.38499 58.63466 21.00143
|
||||
286 293.55896 305.14496 299.19373 294.79169 289.46188 283.79059 270.85291 245.15738 219.50208 193.68211 93.29465 66.49317 354.49347 361.97629 319.00766 218.18967 333.677 323.58624 321.06332 152.88872 250.12114 235.82085 19.40626 58.6847 20.96684
|
||||
287 294.49094 304.73935 298.19247 295.56415 290.97388 285.73752 271.05521 245.9032 220.60747 194.05467 92.5471 66.35812 356.49591 358.14862 306.44681 216.34785 334.27271 322.84299 314.41849 152.94334 248.3856 236.68123 19.43542 58.69059 21.04876
|
||||
288 295.25165 303.23688 296.7666 293.98962 288.87695 284.74945 270.19235 244.24883 219.6114 193.73709 92.28815 66.14086 354.3887 355.8382 303.16632 215.18019 333.7821 320.44849 322.91907 152.98584 248.2955 235.86613 19.41476 58.69884 21.05968
|
||||
289 294.52042 302.97513 297.12607 294.07809 289.58002 284.37659 270.38876 244.92276 219.32591 193.37674 93.57135 65.70632 350.7782 349.80536 291.55835 213.54366 334.1384 321.11017 319.56992 152.78552 246.4023 236.26465 19.39897 58.73062 21.04633
|
||||
290 292.20178 301.56607 296.31277 292.60901 288.25052 281.74747 269.34113 242.84018 217.97697 192.05746 93.48304 65.56538 352.37405 354.93011 288.62875 212.40555 336.00699 323.36386 333.32071 152.55487 245.50626 236.99213 19.43239 58.70472 21.08881
|
||||
291 289.92853 299.98569 294.20197 290.655 286.88489 280.94754 268.86478 242.73178 217.34488 192.31401 92.85316 65.92359 351.09854 350.70245 283.35248 211.78461 335.13699 326.20148 333.25061 152.83408 244.73624 235.9386 19.41659 58.68647 21.03359
|
||||
292 289.62137 299.92386 294.5676 289.98169 286.88489 281.63489 268.34662 241.87048 216.67618 190.80527 91.97039 65.68282 349.90439 355.79745 281.0304 210.36586 333.64777 326.87988 330.03113 152.70055 243.92381 235.58531 19.354 58.67411 21.07303
|
||||
293 288.65829 299.85028 293.98962 289.42053 286.06879 280.98309 267.89392 239.9601 215.38701 190.3349 91.1938 65.36569 348.70419 362.72647 298.45728 209.40959 330.26489 321.24481 324.21237 152.47598 244.06827 234.47379 19.39351 58.72179 21.05725
|
||||
294 288.45148 299.80612 294.27863 289.78677 286.4769 280.16516 267.55432 240.33386 215.23494 189.88286 90.13512 64.91343 345.16644 351.08691 296.26563 211.55324 331.25836 325.79202 326.88574 152.46991 244.17059 235.05376 19.34854 58.72415 21.05907
|
||||
295 287.51163 298.96112 293.78314 289.16647 285.82034 279.70273 267.18488 239.81541 213.73836 188.545 91.15849 64.42 346.38477 366.17395 352.22842 209.52534 329.21866 319.2771 329.6629 154.22453 247.00348 234.04477 19.35279 58.68824 21.07485
|
||||
296 286.08063 298.0452 293.55307 289.33191 285.72571 279.50113 266.63654 240.05052 214.7179 188.545 90.55267 63.73846 345.41129 355.51224 325.17776 204.79588 327.79797 317.07999 321.87714 153.8055 245.03705 233.54008 19.35157 58.67646 21.04694
|
||||
297 286.11612 297.47665 292.01288 288.1264 283.8912 277.79288 263.79761 239.14606 212.9838 187.81192 89.47071 63.4564 340.97925 345.25391 306.64075 204.07022 326.36523 316.68732 316.0191 153.50797 242.81006 233.27412 19.31208 58.65998 21.00993
|
||||
298 287.15097 297.04358 291.39896 287.3934 282.16214 276.30313 262.7829 239.77318 212.30815 186.96271 89.48835 63.17432 336.87686 336.96442 299.05237 205.57022 324.86771 314.16632 313.14575 153.19832 241.64159 233.31039 19.36737 58.69059 21.04451
|
||||
299 286.11612 295.57889 289.9108 286.02145 280.9653 274.58673 262.2395 238.74197 210.32932 185.1727 88.1129 63.03327 337.59485 337.50143 286.67206 206.18596 323.41071 313.5329 309.71851 153.03441 240.70152 232.81467 19.34064 58.73475 21.01478
|
||||
300 284.0629 293.94537 289.51505 285.12225 280.26001 274.21243 262.46643 238.22319 210.90784 185.49649 88.28332 62.56893 336.24054 330.87851 293.68188 204.35072 321.92395 308.96106 307.29291 152.77338 239.5742 232.40652 19.40444 58.69589 21.03966
|
||||
301 285.11041 295.84122 288.7706 283.24591 277.88779 272.55405 259.52679 236.59369 209.0258 184.56175 88.64185 62.05749 334.61728 338.15515 301.86609 202.33794 320.96378 306.66425 301.85437 152.77945 239.32697 231.87431 19.37892 58.69118 21.06818
|
||||
302 286.68387 296.76364 288.22098 282.97351 278.42172 272.04266 259.09628 235.63364 208.31905 184.85503 88.2892 61.9399 333.5018 341.87177 307.75113 200.97739 321.10431 305.38303 296.96698 152.73697 240.09875 231.71706 19.39107 58.65939 21.06757
|
||||
303 284.90921 294.85657 287.74219 283.0209 278.78357 272.65515 259.742 235.43431 208.01437 185.66142 88.80643 61.62238 332.66058 335.2713 296.68408 198.26152 318.5097 301.772 301.8779 152.52454 237.9577 230.28615 19.36555 58.6223 21.06029
|
||||
304 283.66034 292.64441 286.5242 282.38129 278.24969 271.75122 258.02563 233.74255 208.02046 186.00356 87.88959 61.75763 328.28323 327.47052 288.67603 196.97342 316.78107 302.85455 308.65564 152.01476 237.11284 229.81711 19.38196 58.59992 21.08213
|
||||
305 282.60635 291.24252 284.38843 280.75198 277.46649 271.16824 257.45123 233.54913 208.73335 186.27237 87.26674 61.79878 331.34015 326.23071 277.49026 194.62262 317.64255 309.71265 307.82748 151.8934 236.43068 229.96841 19.42631 58.58638 21.08092
|
||||
306 283.51233 291.13034 285.00983 281.48083 278.42764 272.43515 258.15125 234.72754 209.94562 186.76111 86.86723 61.92226 327.7395 324.13632 280.08215 195.30043 316.7049 312.74097 320.61829 151.78418 235.57925 229.66579 19.46763 58.58815 21.10822
|
||||
307 284.19312 290.73767 285.88541 282.50568 279.3707 272.79187 258.97067 234.504 208.32513 186.71834 87.22561 61.79879 326.95007 322.86053 273.35663 195.15387 318.72061 314.82898 316.21252 151.6871 234.52211 230.18631 19.43603 58.54164 21.10459
|
||||
308 282.81363 288.80603 284.9743 281.8837 278.64713 272.4827 258.27689 233.99036 207.57562 185.65532 86.82024 61.46361 327.68689 324.39963 266.43387 193.44392 317.94138 310.26447 310.53448 151.51115 233.1804 229.55682 19.48221 58.57637 21.14099
|
||||
309 282.20953 287.65942 284.14575 281.5697 277.40717 271.37646 256.90063 233.47661 207.27701 184.83669 86.17995 61.38129 329.30634 323.63306 268.73376 192.98586 318.42184 309.68329 306.41156 151.30489 232.48512 228.84541 19.52596 58.6276 21.10398
|
||||
310 281.99628 288.15894 284.13391 281.03644 276.16061 269.98404 255.94875 233.56123 206.62486 184.76338 85.58674 61.23426 326.23657 314.85828 260.27396 192.79041 317.36713 308.49124 313.27481 150.75896 230.65833 228.29736 19.47249 58.64467 21.12763
|
||||
311 279.38849 286.14566 282.26877 278.67679 273.64194 267.38748 253.87599 231.83197 205.5824 183.95695 85.62198 60.79903 318.31052 306.2764 256.50555 190.50595 313.11057 309.34271 308.08008 150.40112 229.09668 226.66167 19.54418 58.64702 21.14038
|
||||
312 276.05969 282.2569 278.82507 275.29956 270.16858 264.29886 251.38742 229.73842 204.39951 183.37047 84.4593 60.32842 315.63806 305.10675 246.30611 188.38007 308.66742 308.46185 309.40732 149.94635 227.45538 225.43423 19.58611 58.69294 21.15797
|
||||
313 271.91779 278.30011 275.51337 272.01294 266.35043 261.01498 248.96828 227.21304 202.19762 181.41566 83.00928 59.69296 310.02969 301.04819 238.29556 184.89166 303.73679 301.27182 301.39542 149.2795 225.45544 224.11835 19.57153 58.70766 21.19256
|
||||
314 267.48877 275.67667 271.79288 268.57297 263.01572 257.78629 244.77234 222.19197 198.5423 178.48993 83.2382 58.68646 302.7663 295.10425 232.72699 182.66183 297.42068 294.15475 293.42325 148.60071 223.75742 222.24356 19.62013 58.71826 21.16101
|
||||
315 261.95883 270.34119 266.6127 263.94681 257.91196 252.28123 239.26065 218.01344 195.11113 175.73589 81.26624 57.91508 294.20786 282.06735 225.83131 178.8808 291.56427 285.25833 287.03275 147.93423 221.23283 220.7532 19.67541 58.62583 21.13007
|
||||
316 254.55913 262.9411 260.01697 258.30679 252.55708 247.05157 233.72443 212.63686 191.67265 173.18417 79.82871 57.04328 285.08084 271.04926 217.73389 176.00453 284.42395 276.22595 275.64993 147.11049 218.94923 218.92192 19.62985 58.65468 21.12642
|
||||
317 245.91524 254.29848 253.12669 252.59308 247.27397 241.52107 226.82526 207.83156 187.73862 170.66394 78.22717 56.06499 275.50742 261.03888 210.48766 172.09175 276.81366 267.48877 266.90475 146.49893 216.72479 217.2233 19.67176 58.6223 21.10822
|
||||
318 238.50671 246.65784 245.88516 246.48648 241.11734 235.23499 220.86249 202.83817 183.98138 167.55341 76.06858 55.05079 268.5253 250.91339 200.23293 169.72449 269.95428 260.38153 256.62531 145.74835 213.9209 215.25928 19.66204 58.67116 21.12278
|
||||
319 230.67043 237.96072 237.96977 238.9953 232.70883 226.74043 212.59424 195.78281 179.29611 163.79919 74.38519 54.13046 264.51364 239.82143 191.45276 166.64502 264.09598 251.76537 248.10928 145.02826 211.37061 213.60449 19.62864 58.73239 21.15555
|
||||
320 223.22356 228.31856 229.76262 230.48889 223.20537 218.85201 205.17392 189.5041 174.49045 159.94521 73.26485 53.08566 260.44131 230.53729 183.88974 162.98299 258.55203 242.50293 240.87027 144.12091 209.17201 212.36598 19.65293 58.72003 21.0967
|
||||
321 216.47552 219.15581 221.71242 222.44685 214.80307 210.81648 197.98683 183.29716 169.755 156.4604 71.945 52.34739 255.91881 221.90062 176.03506 160.26772 253.47441 234.6792 234.47379 143.44975 207.3867 211.02658 19.68452 58.71532 21.06636
|
||||
322 210.93219 210.41762 213.67143 214.80914 206.64923 202.62465 190.63423 177.41508 164.93849 151.40802 70.73647 51.61471 250.4753 212.95943 168.6571 155.7068 248.26547 225.20688 225.95862 142.75461 205.70433 209.64107 19.62195 58.72002 21.04998
|
||||
323 204.87514 203.1035 206.46027 207.27092 199.25644 195.19662 183.71259 171.59137 159.79916 146.99544 69.76248 50.85803 244.53767 207.96562 162.61758 152.0815 243.12318 218.63936 216.62752 142.02345 203.6555 208.20633 19.62985 58.73533 21.05239
|
||||
324 199.5433 196.4514 200.32448 201.31297 192.96754 188.19069 177.48224 166.15736 155.28755 143.52228 68.70618 50.21338 240.02039 199.99493 157.39659 148.9825 238.4826 213.05074 209.34868 141.48582 201.83156 206.8717 19.65354 58.74063 21.05058
|
||||
325 193.36453 189.61406 194.75085 195.7645 187.50035 182.1548 171.41441 161.05893 151.05011 139.70482 67.84341 49.59804 231.81987 192.30177 153.48975 146.3718 234.06287 208.44699 203.03946 140.80341 200.17801 205.50316 19.61892 58.66587 21.0348
|
||||
326 187.63475 183.46211 189.16811 190.76863 181.79439 176.8838 165.8587 156.27199 147.33456 137.00916 66.68692 48.95283 226.58894 185.75307 149.07341 145.08878 230.16209 203.42374 198.2249 140.32646 198.35309 204.18303 19.5946 58.74123 21.03238
|
||||
327 183.65759 179.03043 184.86111 186.15018 177.42117 172.04292 161.19286 152.19679 143.96974 134.14284 65.91186 48.26587 221.45139 182.1548 144.67133 142.55516 225.5161 197.38858 193.5844 139.66861 196.63762 202.84122 19.57941 58.7683 21.01418
|
||||
328 180.15732 173.97768 180.38943 181.74553 173.07431 167.33391 156.95886 148.63101 140.99663 131.1067 65.27172 47.66746 218.54213 177.40285 141.31067 141.30463 221.40889 191.09848 188.28842 139.10747 195.68512 201.55704 19.56606 58.76006 20.93406
|
||||
329 176.63345 170.1393 176.56018 177.80592 169.29143 163.62253 153.0162 145.22188 138.02788 128.72948 64.51399 47.13993 213.76878 171.87207 138.16052 140.2963 217.99521 186.76721 183.73701 138.55254 194.09743 200.25124 19.58489 58.81128 21.02085
|
||||
330 173.75793 166.0629 173.09872 173.99597 166.3951 159.95737 149.55228 142.33159 135.30449 126.04395 64.81946 46.42241 207.78281 166.41338 134.96133 138.90839 214.83348 182.39305 179.49765 137.79274 192.79652 199.02757 19.57457 58.87073 20.9183
|
||||
331 170.65173 161.95081 169.36461 170.26131 163.0439 156.86766 146.78955 140.10312 132.59105 124.09238 63.69145 45.95966 203.31395 162.50188 132.08009 137.34666 211.60196 177.42117 175.71756 137.19598 191.10458 197.78232 19.51988 58.83247 20.98687
|
||||
332 167.84607 159.38542 166.27928 166.81572 160.04256 153.91479 144.31445 137.82288 130.35597 122.13103 62.72763 45.52644 201.08722 159.11163 129.50352 134.85298 207.95343 173.15367 172.32974 136.63557 189.71179 196.57657 19.50772 58.86544 20.95167
|
||||
333 165.28584 156.04712 163.51289 163.02562 156.07143 150.3526 141.59454 135.29243 128.10567 120.14207 61.80467 45.15836 199.92781 156.41177 126.49324 133.67354 204.52147 169.7733 168.98645 136.08134 188.45335 195.35233 19.54904 58.87251 20.94803
|
||||
334 162.56277 152.8614 160.74243 160.01822 153.36224 147.60107 139.22211 133.07208 126.28954 118.39993 61.05194 44.76048 197.82201 153.0162 123.81117 132.04404 201.70346 166.57187 166.01718 135.57545 187.21931 194.21954 19.50955 58.85955 20.92194
|
||||
335 160.41377 150.65887 158.22968 157.46956 150.92879 145.09482 136.68378 130.92648 124.05647 116.15921 60.48726 44.42191 195.31876 150.51634 121.43195 128.73546 199.15878 163.09871 162.55669 135.08173 185.91191 193.13855 19.49862 58.87368 20.92011
|
||||
336 157.79182 147.6889 155.74934 154.57681 148.19476 142.3618 134.59415 128.88545 122.48963 114.73047 59.99895 44.06541 192.3934 149.07339 118.60268 126.16374 196.64983 160.39552 159.33066 134.60017 184.90388 191.98723 19.54358 58.90488 20.91101
|
||||
337 155.5549 145.92992 153.5869 152.02081 145.91176 140.50153 132.45279 126.96662 121.10938 113.50508 59.49287 43.69098 190.27992 146.52315 116.07582 125.55884 193.81648 158.12021 155.90126 134.10071 183.67592 190.87247 19.55087 58.87486 20.94681
|
||||
338 153.96338 143.94254 151.72958 149.74022 143.7581 138.74554 130.71028 125.1936 119.22304 111.71613 58.95726 43.43535 187.24986 143.22002 113.51696 124.55312 191.28783 155.66426 153.42294 133.58331 182.55188 189.72098 19.54844 58.88427 20.95167
|
||||
339 152.33032 141.78178 150.00093 147.64954 141.83012 136.85851 128.75946 123.30873 117.93484 110.42755 58.36264 43.07856 184.88556 142.1745 111.69236 123.17119 188.89932 153.52617 150.80141 133.05405 181.4462 188.65497 19.54904 58.93372 20.94135
|
||||
340 149.94028 139.48454 147.47993 145.46393 139.59015 134.43768 126.7509 121.52752 116.1711 109.00346 57.71484 42.85254 182.82678 139.19194 109.69161 123.02171 186.90773 151.17143 149.13402 132.47684 180.13898 187.65918 19.54661 58.93314 20.94621
|
||||
341 148.3038 137.13873 145.33685 143.14142 137.85905 132.14621 124.75063 119.76604 114.26041 107.08865 56.9549 42.54318 181.78217 136.34038 108.52306 121.07952 185.246 149.03705 147.17105 132.13419 179.10066 186.54117 19.62073 58.92784 20.99658
|
||||
342 145.86938 135.53027 143.77019 141.23819 136.16568 130.73431 123.35658 118.61461 113.29697 105.72635 56.68973 42.34087 179.87024 134.87706 107.27824 120.24354 183.10779 146.78349 144.92542 131.66544 178.17235 185.53314 19.60372 58.97611 20.98989
|
||||
343 144.52011 134.08264 142.30139 139.71687 134.66638 129.4315 121.79041 117.23151 112.23301 104.64906 56.02962 42.04924 177.40285 132.09813 106.15862 118.04217 181.0186 144.68343 142.73647 131.12471 177.04257 184.53732 19.58063 59.0232 20.97595
|
||||
344 143.10516 132.6151 140.81549 137.91934 133.3367 128.27959 120.39279 115.9984 110.83716 103.21755 55.20413 41.79921 175.90074 132.58505 104.20528 116.41531 179.47324 142.66998 140.97852 130.63821 176.19992 183.58429 19.58367 59.06145 20.96563
|
||||
345 141.75763 131.29893 139.67464 136.32231 131.7796 127.12248 119.2648 115.05183 109.96458 102.35439 54.66738 41.54318 174.18521 130.48808 102.85686 116.19493 177.76317 140.99663 139.13763 130.18787 175.16809 182.57019 19.64199 59.04851 20.98565
|
||||
346 140.82152 130.10078 138.32335 134.76268 130.38 126.1877 118.44166 114.15929 109.0687 101.26123 54.26618 41.35856 171.59746 128.30959 101.27895 115.39705 176.40752 139.40913 136.88261 129.71361 173.79456 181.61723 19.64625 59.07676 20.98261
|
||||
347 140.08502 129.46451 137.14175 133.24048 129.13747 125.09781 117.06466 112.54796 107.82349 99.99742 53.99473 41.10838 170.4565 125.74448 100.1273 114.11171 174.95441 137.69025 134.57008 129.26947 172.94615 180.6918 19.6098 59.08029 21.02388
|
||||
348 138.30525 127.91679 135.47911 131.76158 127.94378 123.78126 115.68282 111.50822 106.73315 98.94678 53.4399 40.89391 167.84607 125.12175 98.52195 113.25535 173.29404 136.35844 132.77744 128.84346 172.07954 179.74504 19.66994 59.04792 20.97837
|
||||
349 136.97299 127.2573 134.49185 130.84241 126.73891 121.78443 113.95705 110.11295 105.36519 98.01462 53.16832 40.71515 167.56558 123.4164 97.32459 111.97158 171.92699 135.12387 131.22083 128.47752 171.0117 178.83498 19.58246 58.92136 21.00264
|
||||
350 136.21988 126.3824 133.42093 130.02576 126.0679 120.24952 112.8511 109.13988 104.32953 97.04157 52.59549 40.50061 166.19394 121.53947 96.37542 111.36568 170.59073 133.25853 129.99573 128.09369 170.01118 177.94331 19.63167 58.95903 21.0524
|
||||
117
tutorials/combustion/fireFoam/les/compartmentFire/validation/createGraphs
Executable file
117
tutorials/combustion/fireFoam/les/compartmentFire/validation/createGraphs
Executable file
@ -0,0 +1,117 @@
|
||||
#!/bin/sh
|
||||
#------------------------------------------------------------------------------
|
||||
# ========= |
|
||||
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
# \\ / O peration |
|
||||
# \\ / A nd | Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# Script
|
||||
# createGraphs
|
||||
#
|
||||
# Description
|
||||
# Creates .eps graphs of OpenFOAM results vs experiment for the buoyant
|
||||
# cavity case
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
createEpsT()
|
||||
{
|
||||
OF=$1
|
||||
OFPROBE=$2
|
||||
EXPT=$3
|
||||
EXPPROBE=$4
|
||||
OUTPUT=$5
|
||||
|
||||
gnuplot<<EOF
|
||||
set terminal postscript default
|
||||
set output "($OUTPUT) OF_vs_EXPT($EXPPROBE).eps"
|
||||
set xlabel "time [sec]"
|
||||
set ylabel "$OUTPUT"
|
||||
set grid
|
||||
|
||||
plot \
|
||||
'$EXPT' using 1:$4 title "Exp (probe $EXPPROBE)" , \
|
||||
'$OF' using 1:(\$$OFPROBE - 273) title "OpenFOAM"
|
||||
EOF
|
||||
}
|
||||
|
||||
|
||||
# test if gnuplot exists on the system
|
||||
if ! which gnuplot > /dev/null 2>&1
|
||||
then
|
||||
echo "gnuplot not found - skipping graph creation" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
SETSDIRT="../postProcessing/thermoCouple"
|
||||
|
||||
arr=(`ls $SETSDIRT`)
|
||||
OFDATAROOTT="$SETSDIRT/${arr[0]}"
|
||||
|
||||
# paths to data
|
||||
EXPTDATAROOT=./Probes/Temperature
|
||||
|
||||
DATAFILET="$EXPTDATAROOT/temperature.dat"
|
||||
|
||||
# generate temperature profiles
|
||||
OF="$OFDATAROOTT/T"
|
||||
EXPT="$DATAFILET"
|
||||
|
||||
echo $OF
|
||||
echo $EXPT
|
||||
|
||||
#createEpsT $OF 2 $EXPT 12 Temperature
|
||||
#createEpsT $OF 3 $EXPT 10 Temperature
|
||||
#createEpsT $OF 5 $EXPT 3 Temperature
|
||||
|
||||
createEpsT $OF 6 $EXPT 18 Temperature
|
||||
createEpsT $OF 7 $EXPT 19 Temperature
|
||||
createEpsT $OF 8 $EXPT 20 Temperature
|
||||
|
||||
#createEpsT $OF 9 $EXPT 13 Temperature
|
||||
#createEpsT $OF 10 $EXPT 2 Temperature
|
||||
#createEpsT $OF 11 $EXPT 17 Temperature
|
||||
#createEpsT $OF 12 $EXPT 16 Temperature
|
||||
#createEpsT $OF 13 $EXPT 15 Temperature
|
||||
#createEpsT $OF 14 $EXPT 14 Temperature
|
||||
|
||||
|
||||
SETSDIRT="../postProcessing/probes_O2"
|
||||
arr=(`ls $SETSDIRT`)
|
||||
OFDATAROOTT="$SETSDIRT/${arr[0]}/O2"
|
||||
|
||||
# paths to data
|
||||
EXPTDATAROOT=./Probes/Oxygen/oxygen.dat
|
||||
|
||||
#createEpsT $OFDATAROOTT 3 $EXPTDATAROOT 2 O2
|
||||
#createEpsT $OFDATAROOTT 2 $EXPTDATAROOT 3 O2
|
||||
|
||||
#SETSDIRT="../postProcessing/patchInlet_phi"
|
||||
#arr=(`ls $SETSDIRT`)
|
||||
#OFDATAROOTT="$SETSDIRT/${arr[0]}/faceSource.dat"
|
||||
|
||||
# paths to data
|
||||
#EXPTDATAROOT=./Probes/phi/massInlet.dat
|
||||
|
||||
#createEpsT $OFDATAROOTT 2 $EXPTDATAROOT 3 MassInlet
|
||||
|
||||
echo Done
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
Reference in New Issue
Block a user