Merge branch 'feature-deck-renard' into 'develop'
INT: S-A turbulence model - added enhanced DDES shielding function See merge request Development/openfoam!717
This commit is contained in:
commit
3bc2b5fd74
@ -36,6 +36,19 @@ namespace Foam
|
||||
namespace LESModels
|
||||
{
|
||||
|
||||
template<class BasicTurbulenceModel>
|
||||
const Foam::Enum
|
||||
<
|
||||
typename Foam::LESModels::
|
||||
SpalartAllmarasDDES<BasicTurbulenceModel>::shieldingMode
|
||||
>
|
||||
Foam::LESModels::SpalartAllmarasDDES<BasicTurbulenceModel>::shieldingModeNames
|
||||
({
|
||||
{ shieldingMode::standard, "standard" },
|
||||
{ shieldingMode::ZDES2020, "ZDES2020" },
|
||||
});
|
||||
|
||||
|
||||
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
|
||||
|
||||
template<class BasicTurbulenceModel>
|
||||
@ -44,9 +57,61 @@ tmp<volScalarField> SpalartAllmarasDDES<BasicTurbulenceModel>::fd
|
||||
const volScalarField& magGradU
|
||||
) const
|
||||
{
|
||||
return
|
||||
1
|
||||
- tanh(pow(this->Cd1_*this->r(this->nuEff(), magGradU, this->y_), Cd2_));
|
||||
const volScalarField r(this->r(this->nuEff(), magGradU, this->y_));
|
||||
|
||||
tmp<volScalarField> tfd = 1 - tanh(pow(Cd1_*r, Cd2_));
|
||||
|
||||
switch (shielding_)
|
||||
{
|
||||
case shieldingMode::standard:
|
||||
{
|
||||
return tfd;
|
||||
}
|
||||
case shieldingMode::ZDES2020:
|
||||
{
|
||||
auto maxEps = [](const volScalarField& fld, const scalar eps){
|
||||
return max(fld, dimensionedScalar(fld.dimensions(), eps));
|
||||
};
|
||||
|
||||
volScalarField& fdStd = tfd.ref();
|
||||
const auto& nuTilda = this->nuTilda_;
|
||||
const volVectorField& n = wallDist::New(this->mesh_).n();
|
||||
|
||||
const volScalarField GnuTilda
|
||||
(
|
||||
Cd3_*maxEps(fvc::grad(nuTilda) & n, Zero)
|
||||
/ (maxEps(magGradU, SMALL)*this->kappa_*this->y_)
|
||||
);
|
||||
|
||||
volScalarField fdGnuTilda(1 - tanh(pow(Cd1_*GnuTilda, Cd2_)));
|
||||
const volScalarField GOmega
|
||||
(
|
||||
- (fvc::grad(mag(fvc::curl(this->U_))) & n)
|
||||
* sqrt(nuTilda/maxEps(pow3(magGradU), SMALL))
|
||||
);
|
||||
const volScalarField alpha((7.0/6.0*Cd4_ - GOmega)/(Cd4_/6.0));
|
||||
const volScalarField fRGOmega
|
||||
(
|
||||
pos(Cd4_ - GOmega)
|
||||
+ 1.0
|
||||
/(1 + exp(min(-6*alpha/max(1 - sqr(alpha), SMALL), scalar(50))))
|
||||
*pos(4*Cd4_/3.0 - GOmega)*pos(GOmega - Cd4_)
|
||||
);
|
||||
|
||||
// Use more conservative fP2-function in case switch is true;
|
||||
// otherwise use simplified formulation
|
||||
if (usefP2_)
|
||||
{
|
||||
fdGnuTilda *=
|
||||
(1.0 - tanh(pow(Cd1_*betaZDES_*r, Cd2_)))
|
||||
/ maxEps(fdStd, SMALL);
|
||||
}
|
||||
|
||||
fdStd *= 1 - (1 - fdGnuTilda)*fRGOmega;
|
||||
}
|
||||
}
|
||||
|
||||
return tfd;
|
||||
}
|
||||
|
||||
|
||||
@ -138,7 +203,15 @@ SpalartAllmarasDDES<BasicTurbulenceModel>::SpalartAllmarasDDES
|
||||
propertiesName,
|
||||
type
|
||||
),
|
||||
|
||||
shielding_
|
||||
(
|
||||
shieldingModeNames.getOrDefault
|
||||
(
|
||||
"shielding",
|
||||
this->coeffDict_,
|
||||
shieldingMode::standard
|
||||
)
|
||||
),
|
||||
Cd1_
|
||||
(
|
||||
this->useSigma_
|
||||
@ -163,11 +236,80 @@ SpalartAllmarasDDES<BasicTurbulenceModel>::SpalartAllmarasDDES
|
||||
this->coeffDict_,
|
||||
3
|
||||
)
|
||||
),
|
||||
Cd3_
|
||||
(
|
||||
dimensioned<scalar>::getOrAddToDict
|
||||
(
|
||||
"Cd3",
|
||||
this->coeffDict_,
|
||||
25
|
||||
)
|
||||
),
|
||||
Cd4_
|
||||
(
|
||||
dimensioned<scalar>::getOrAddToDict
|
||||
(
|
||||
"Cd4",
|
||||
this->coeffDict_,
|
||||
0.03
|
||||
)
|
||||
),
|
||||
betaZDES_
|
||||
(
|
||||
dimensioned<scalar>::getOrAddToDict
|
||||
(
|
||||
"betaZDES",
|
||||
this->coeffDict_,
|
||||
2.5
|
||||
)
|
||||
),
|
||||
usefP2_
|
||||
(
|
||||
Switch::getOrAddToDict
|
||||
(
|
||||
"usefP2",
|
||||
this->coeffDict_,
|
||||
false
|
||||
)
|
||||
)
|
||||
{
|
||||
if (type == typeName)
|
||||
{
|
||||
this->printCoeffs(type);
|
||||
|
||||
switch (shielding_)
|
||||
{
|
||||
case shieldingMode::standard:
|
||||
{
|
||||
Info<< "shielding function: standard DDES "
|
||||
<< "(Spalart et al., 2006)"
|
||||
<< nl;
|
||||
break;
|
||||
}
|
||||
case shieldingMode::ZDES2020:
|
||||
{
|
||||
Info<< "shielding function: ZDES mode 2 (Deck & Renard, 2020)"
|
||||
<< nl;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
FatalErrorInFunction
|
||||
<< "Unrecognised 'shielding' option: "
|
||||
<< shieldingModeNames[shielding_]
|
||||
<< exit(FatalError);
|
||||
}
|
||||
}
|
||||
|
||||
if (usefP2_)
|
||||
{
|
||||
Info<< "fP2 term: active" << nl;
|
||||
}
|
||||
else
|
||||
{
|
||||
Info<< "fP2 term: inactive" << nl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -179,8 +321,19 @@ bool SpalartAllmarasDDES<BasicTurbulenceModel>::read()
|
||||
{
|
||||
if (SpalartAllmarasDES<BasicTurbulenceModel>::read())
|
||||
{
|
||||
shieldingModeNames.readIfPresent
|
||||
(
|
||||
"shielding",
|
||||
this->coeffDict(),
|
||||
shielding_
|
||||
);
|
||||
|
||||
Cd1_.readIfPresent(this->coeffDict());
|
||||
Cd2_.readIfPresent(this->coeffDict());
|
||||
Cd3_.readIfPresent(this->coeffDict());
|
||||
Cd4_.readIfPresent(this->coeffDict());
|
||||
betaZDES_.readIfPresent(this->coeffDict());
|
||||
usefP2_.readIfPresent("usefP2", this->coeffDict());
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -6,8 +6,8 @@
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
Copyright (C) 2022 Upstream CFD GmbH
|
||||
Copyright (C) 2019-2022 OpenCFD Ltd.
|
||||
Copyright (C) 2022, 2024 Upstream CFD GmbH
|
||||
Copyright (C) 2019-2024 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -45,6 +45,15 @@ Description
|
||||
DOI:10.1007/s00162-006-0015-0
|
||||
\endverbatim
|
||||
|
||||
Reference for enhanced shielding function formulation:
|
||||
\verbatim
|
||||
Deck, S., Renard, N. (2020).
|
||||
Towards an enhanced protection of attached boundary layers in hybrid
|
||||
RANS/LES methods.
|
||||
Journal of Computational Physics, 400, 108970.
|
||||
DOI:10.1016/j.jcp.2019.108970
|
||||
\endverbatim
|
||||
|
||||
SourceFiles
|
||||
SpalartAllmarasDDES.C
|
||||
|
||||
@ -54,6 +63,7 @@ SourceFiles
|
||||
#define Foam_SpalartAllmarasDDES_H
|
||||
|
||||
#include "SpalartAllmarasBase.H"
|
||||
#include "Enum.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -71,6 +81,23 @@ class SpalartAllmarasDDES
|
||||
:
|
||||
public SpalartAllmarasDES<BasicTurbulenceModel>
|
||||
{
|
||||
public:
|
||||
|
||||
// Public enumerations
|
||||
|
||||
//- Shielding modes
|
||||
enum class shieldingMode
|
||||
{
|
||||
standard,
|
||||
ZDES2020
|
||||
};
|
||||
|
||||
//- Shielding mode names
|
||||
static const Enum<shieldingMode> shieldingModeNames;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
//- Return the shielding function
|
||||
@ -87,10 +114,17 @@ protected:
|
||||
|
||||
// Protected Data
|
||||
|
||||
//- Shielding mode
|
||||
shieldingMode shielding_;
|
||||
|
||||
// Model coefficients
|
||||
|
||||
dimensionedScalar Cd1_;
|
||||
dimensionedScalar Cd2_;
|
||||
dimensionedScalar Cd3_;
|
||||
dimensionedScalar Cd4_;
|
||||
dimensionedScalar betaZDES_;
|
||||
Switch usefP2_;
|
||||
|
||||
|
||||
// Protected Member Functions
|
||||
|
54
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/U
Normal file
54
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/U
Normal file
@ -0,0 +1,54 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volVectorField;
|
||||
object U;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// calculate inflow velocity vector
|
||||
AoA 13.87;
|
||||
Ux #eval{ cos(degToRad($AoA)) };
|
||||
Uz #eval{ sin(degToRad($AoA)) };
|
||||
|
||||
dimensions [0 1 -1 0 0 0 0];
|
||||
|
||||
internalField uniform ($Ux 0 $Uz);
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform ($Ux 0 $Uz);
|
||||
value uniform ($Ux 0 $Uz);
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue uniform ($Ux 0 $Uz);
|
||||
value uniform ($Ux 0 $Uz);
|
||||
}
|
||||
|
||||
aerofoil
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform (0 0 0);
|
||||
}
|
||||
|
||||
"yPeriodic_.*"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
50
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/k
Normal file
50
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/k
Normal file
@ -0,0 +1,50 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: 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 #eval{ 1.5*sqr(0.00086) };
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
aerofoil
|
||||
{
|
||||
type kqRWallFunction;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
"yPeriodic_.*"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,49 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
object nuTilda;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 2 -1 0 0 0 0];
|
||||
|
||||
internalField uniform #eval{ 3.0/1520000.0 };
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
aerofoil
|
||||
{
|
||||
type fixedValue;
|
||||
value uniform 0;
|
||||
}
|
||||
|
||||
"yPeriodic_.*"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
49
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nut
Normal file
49
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/nut
Normal file
@ -0,0 +1,49 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: 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 #eval{ 3.0/1520000.0 };
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type calculated;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type calculated;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
aerofoil
|
||||
{
|
||||
type nutUSpaldingWallFunction;
|
||||
value $internalField;
|
||||
tolerance 1e-9;
|
||||
}
|
||||
|
||||
"yPeriodic_.*"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,50 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
location "0";
|
||||
object omega;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 0 -1 0 0 0 0];
|
||||
|
||||
internalField uniform #eval{ 1.5*sqr(0.00086)*1520000.0/0.009 };
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type inletOutlet;
|
||||
inletValue $internalField;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
aerofoil
|
||||
{
|
||||
type omegaWallFunction;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
"yPeriodic_.*"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
48
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/p
Normal file
48
tutorials/incompressible/pimpleFoam/LES/NACA4412/0.orig/p
Normal file
@ -0,0 +1,48 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class volScalarField;
|
||||
object p;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
dimensions [0 2 -2 0 0 0 0];
|
||||
|
||||
internalField uniform 0;
|
||||
|
||||
boundaryField
|
||||
{
|
||||
inlet
|
||||
{
|
||||
type outletInlet;
|
||||
outletValue uniform 0;
|
||||
value uniform 0;
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type outletInlet;
|
||||
outletValue uniform 0;
|
||||
value uniform 0;
|
||||
}
|
||||
|
||||
aerofoil
|
||||
{
|
||||
type zeroGradient;
|
||||
}
|
||||
|
||||
"yPeriodic_.*"
|
||||
{
|
||||
type cyclic;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
11
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allclean
Executable file
11
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allclean
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
. ${WM_PROJECT_DIR:?}/bin/tools/CleanFunctions # Tutorial clean functions
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
cleanCase0
|
||||
|
||||
rm -f constant/turbulenceProperties
|
||||
rm -f fig_*
|
||||
|
||||
#------------------------------------------------------------------------------
|
15
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun
Executable file
15
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
runApplication $(getApplication)
|
||||
|
||||
if notTest "$@"
|
||||
then
|
||||
./plot
|
||||
fi
|
||||
|
||||
#------------------------------------------------------------------------------
|
19
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun-parallel
Executable file
19
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun-parallel
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
./Allrun.pre
|
||||
|
||||
runApplication decomposePar
|
||||
|
||||
runParallel $(getApplication)
|
||||
|
||||
runApplication reconstructPar
|
||||
|
||||
if notTest "$@"
|
||||
then
|
||||
./plot
|
||||
fi
|
||||
|
||||
#------------------------------------------------------------------------------
|
40
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun.pre
Executable file
40
tutorials/incompressible/pimpleFoam/LES/NACA4412/Allrun.pre
Executable file
@ -0,0 +1,40 @@
|
||||
#!/bin/sh
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
. ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions # Tutorial run functions
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# SA-DDES, std. shielding
|
||||
#LESModel="SpalartAllmarasDDES"
|
||||
#LESDelta="maxDeltaxyz"
|
||||
#LESCoeffs=""
|
||||
|
||||
# SA-sigma-DDES, std. shielding
|
||||
#LESModel="SpalartAllmarasDDES"
|
||||
#LESDelta="DeltaOmegaTilde"
|
||||
#LESCoeffs="useSigma true;"
|
||||
|
||||
# SA-DDES, ZDES mode 2 shielding
|
||||
LESModel="SpalartAllmarasDDES"
|
||||
LESDelta="maxDeltaxyz"
|
||||
LESCoeffs="shielding ZDES2020;"
|
||||
|
||||
# SA-sigma-DDES, ZDES mode 2 shielding
|
||||
#LESModel="SpalartAllmarasDDES"
|
||||
#LESDelta="DeltaOmegaTilde"
|
||||
#LESCoeffs="useSigma true; shielding ZDES2020;"
|
||||
|
||||
|
||||
sed -e "s|LES_MODEL|$LESModel|g" -e "s|LES_DELTA|$LESDelta|g" \
|
||||
-e "s|LES_COEFFS|$LESCoeffs|g" \
|
||||
constant/turbulenceProperties.template \
|
||||
> constant/turbulenceProperties
|
||||
|
||||
restore0Dir
|
||||
|
||||
touch case.foam
|
||||
|
||||
runApplication blockMesh
|
||||
|
||||
runApplication applyBoundaryLayer -ybl 0.02
|
||||
|
||||
#------------------------------------------------------------------------------
|
20
tutorials/incompressible/pimpleFoam/LES/NACA4412/README.md
Normal file
20
tutorials/incompressible/pimpleFoam/LES/NACA4412/README.md
Normal file
@ -0,0 +1,20 @@
|
||||
<!------------------------------------------------------------------------- -->
|
||||
|
||||
## 2D NACA4412 with trailing edge configuration
|
||||
|
||||
- Essentially incompressible case is computed for free field conditions.
|
||||
- Experimental data publicly available from (16/07/2024):
|
||||
https://turbmodels.larc.nasa.gov/naca4412sep_val.html
|
||||
- References:
|
||||
|
||||
Coles, D. and Wadcock, A. J.,
|
||||
"Flying-Hot-Wire Study of Flow Past an NACA 4412 Airfoil at Maximum Lift.
|
||||
AIAA Journal, Vol. 17, No. 4, April 1979, pp. 321-329,
|
||||
DOI:10.2514/3.61127
|
||||
|
||||
Wadcock, A. J.,
|
||||
Structure of the Turbulent Separated Flow Around a Stalled Airfoil.
|
||||
NASA-CR-152263, February 1979, https://ntrs.nasa.gov/citations/19790012839.
|
||||
|
||||
|
||||
<!------------------------------------------------------------------------- -->
|
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object transportProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
transportModel Newtonian;
|
||||
|
||||
nu #eval{ 1.0/1520000.0 };
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,34 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "constant";
|
||||
object turbulenceProperties;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
simulationType LES;
|
||||
|
||||
LES
|
||||
{
|
||||
LESModel LES_MODEL;
|
||||
LES_MODELCoeffs
|
||||
{
|
||||
LES_COEFFS
|
||||
}
|
||||
|
||||
delta LES_DELTA;
|
||||
|
||||
turbulence on;
|
||||
printCoeffs on;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
147
tutorials/incompressible/pimpleFoam/LES/NACA4412/plot
Executable file
147
tutorials/incompressible/pimpleFoam/LES/NACA4412/plot
Executable file
@ -0,0 +1,147 @@
|
||||
#!/bin/bash
|
||||
cd "${0%/*}" || exit # Run from this directory
|
||||
|
||||
timeOpts="-latestTime"
|
||||
|
||||
[ -d "processor0" ] && timeOpts="$timeOpts -processor"
|
||||
|
||||
time="$(foamListTimes $timeOpts)"
|
||||
|
||||
echo "Creating plots for time $time"
|
||||
|
||||
resultsDir="postProcessing/sample.lines/$time"
|
||||
resultsDirCp="postProcessing/sample.aerofoil/$time"
|
||||
|
||||
# Mapping between OpenFOAM and experimental datasets
|
||||
declare -A of_vs_exp
|
||||
of_vs_exp[0.68]="001"
|
||||
of_vs_exp[0.73]="002"
|
||||
of_vs_exp[0.79]="003"
|
||||
of_vs_exp[0.84]="004"
|
||||
of_vs_exp[0.90]="005"
|
||||
of_vs_exp[0.95]="006"
|
||||
|
||||
|
||||
plotLines()
|
||||
{
|
||||
pos=$1
|
||||
exp=$2
|
||||
|
||||
cat<<EOF
|
||||
set terminal pngcairo enhanced color font "arial,16" size 600,600
|
||||
set ylabel "(y-y_0)/c"
|
||||
set yrange [0:0.2]
|
||||
set grid
|
||||
|
||||
U0=1
|
||||
c=1
|
||||
normCFD = 0.93
|
||||
|
||||
m = 0.01*4
|
||||
p = 0.1*4
|
||||
t = 0.01*12
|
||||
yc = (m/(1.0-p)**2)*((1.0-2.0*p) + 2.0*p*${pos} - ${pos}**2)
|
||||
dzcdx = (2.0*m/((1.0-p)**2))*(p - ${pos})
|
||||
theta = atan(dzcdx);
|
||||
ys = 5.0*t*(0.2969*sqrt(${pos}) - (0.1260*${pos}) - (0.3516*(${pos}**2)) + (0.2843*(${pos}**3)) - (0.1036*(${pos}**4)))
|
||||
y0 = yc + ys*cos(theta)
|
||||
|
||||
colExp="black"
|
||||
colOF="royalblue"
|
||||
colCFL3D="light-red"
|
||||
|
||||
set key left top
|
||||
set xlabel "U_x/U_0"
|
||||
set xrange [-0.2:1.4]
|
||||
set output "fig_Ux_at_xbyc${pos}.png"
|
||||
plot \
|
||||
"validation/exptData/exp_vel_xbyc${pos}.dat" \
|
||||
u 3:(\$2-y0) every 2 w points pt 7 ps 1.5 lc rgb colExp lw 2 t "Experiment", \
|
||||
"$resultsDir/xbyc${pos}_columnAverage(UMean)_columnAverage(UPrime2Mean).xy" \
|
||||
u (\$2/U0/normCFD):((\$1-y0)/c) w lines lc rgb colOF lw 2 t "OpenFOAM", \
|
||||
"validation/cfdData/cfl3d_vel_sa_xbyc${pos}.dat" \
|
||||
u 3:(\$2-y0) w lines lc rgb colCFL3D lw 2 t "CFL3D"
|
||||
|
||||
set key left top
|
||||
set xlabel "U_y/U_0"
|
||||
set xrange [-0.2:0.1]
|
||||
set output "fig_Uy_at_xbyc${pos}.png"
|
||||
plot \
|
||||
"validation/exptData/exp_vel_xbyc${pos}.dat" \
|
||||
u 4:(\$2-y0) every 2 w points pt 7 ps 1.5 lc rgb colExp lw 2 t "Experiment", \
|
||||
"$resultsDir/xbyc${pos}_columnAverage(UMean)_columnAverage(UPrime2Mean).xy" \
|
||||
u (\$4/U0/normCFD):((\$1-y0)/c) w lines lc rgb colOF lw 2 t "OpenFOAM", \
|
||||
"validation/cfdData/cfl3d_vel_sa_xbyc${pos}.dat" \
|
||||
u 4:(\$2-y0) w lines lc rgb colCFL3D lw 2 t "CFL3D"
|
||||
EOF
|
||||
}
|
||||
|
||||
|
||||
plotCp()
|
||||
{
|
||||
cat<<EOF
|
||||
set terminal pngcairo enhanced color font "arial,16" size 600,600
|
||||
set ylabel "C_p"
|
||||
set yrange [2:-8]
|
||||
set grid
|
||||
|
||||
U0=1
|
||||
c=1
|
||||
p0=0
|
||||
|
||||
colExp="black"
|
||||
colOF="royalblue"
|
||||
colCFL3D="light-red"
|
||||
|
||||
set key right top
|
||||
set xlabel "x/c"
|
||||
set xrange [0:1]
|
||||
set output "fig_Cp_at_aerofoil.png"
|
||||
plot \
|
||||
"validation/exptData/exp_cp.dat" \
|
||||
u 1:3 w points pt 7 ps 1.5 lc rgb colExp lw 2 t "Experiment", \
|
||||
"$resultsDirCp/pMean_aerofoil.raw" \
|
||||
u (\$1/c):(2.0*(\$4-p0)/U0/U0) w points pt 64 ps 1 lc rgb colOF lw 2 t "OpenFOAM", \
|
||||
"validation/cfdData/cfl3d_cp_sa.dat" \
|
||||
u 1:2 w lines lc rgb colCFL3D lw 2 t "CFL3D"
|
||||
EOF
|
||||
}
|
||||
|
||||
|
||||
plotCf()
|
||||
{
|
||||
cat<<EOF
|
||||
set terminal pngcairo enhanced color font "arial,16" size 600,600
|
||||
set ylabel "C_f"
|
||||
set yrange [-0.01:0.06]
|
||||
set grid
|
||||
|
||||
U0=1
|
||||
c=1
|
||||
|
||||
colOF="royalblue"
|
||||
colCFL3D="light-red"
|
||||
|
||||
set key right top
|
||||
set xlabel "x/c"
|
||||
set xrange [0:1]
|
||||
set output "fig_Cf_at_aerofoil.png"
|
||||
plot \
|
||||
"$resultsDirCp/wallShearStressMean_aerofoil.raw" \
|
||||
u (\$1/c):(\$3 > 0 ? (\$1 > 0.4 ? 2.0*sgn(\$6)*((\$4**2+\$5**2+\$6**2)**0.5)/U0/U0 : 2.0*((\$4**2+\$5**2+\$6**2)**0.5)/U0/U0) : 1/0) w points pt 64 ps 1 lc rgb colOF lw 2 t "OpenFOAM", \
|
||||
"validation/cfdData/cfl3d_cfupper_sa.dat" \
|
||||
u 1:2 w lines lc rgb colCFL3D lw 2 t "CFL3D"
|
||||
EOF
|
||||
}
|
||||
|
||||
|
||||
for i in "${!of_vs_exp[@]}"
|
||||
do
|
||||
exp=${of_vs_exp[$i]}
|
||||
gnuplot<<<$(plotLines $i $exp)
|
||||
done
|
||||
|
||||
gnuplot<<<$(plotCp)
|
||||
gnuplot<<<$(plotCf)
|
||||
|
||||
#------------------------------------------------------------------------------
|
@ -0,0 +1,320 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object blockMeshDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
// scaling to desired chord length, 1.0 means Lchord = 1m
|
||||
scale 1.0;
|
||||
|
||||
// max coordinate in the streamwise direction (relative to Lchord)
|
||||
xMax 10;
|
||||
|
||||
// radial extent of domain (relative to Lchord)
|
||||
rMax 10;
|
||||
|
||||
// anker points of aerofoil at leading and trailing edges
|
||||
xLead 0;
|
||||
zLead 0;
|
||||
xTrail 1;
|
||||
zTrail 0;
|
||||
|
||||
// anker points for middle block
|
||||
xUpper 0.3;
|
||||
zUpper 0.06;
|
||||
xLower 0.3;
|
||||
zLower -0.06;
|
||||
|
||||
// spacings
|
||||
dxLE 0.0005; // at leading edge
|
||||
dxMidUp 0.0025; // at middle of aerofoil (upper surface)
|
||||
dxMidLow 0.05; // at middle of aerofoil (lower surface)
|
||||
dxTE 0.002; // at trailing edge
|
||||
dzaerofoil 0.00002; // near-wall spacing at airfoil
|
||||
dy $dxTE; // spanwise spacing
|
||||
|
||||
// compute number of cells and total cell spacing in the radial direction (from aerofoil to far-field)
|
||||
zCells 64;
|
||||
zGrading 82205.8;
|
||||
|
||||
// compute number of cells and total cell spacing in the streamwise direction
|
||||
// from leading edge to middle of aerofoil (upper surface)
|
||||
xUUpCells 241;
|
||||
leadUpGrading 0.2;
|
||||
|
||||
// compute number of cells and total cell spacing in the streamwise direction
|
||||
// from leading edge to middle of aerofoil (lower surface)
|
||||
xULowCells 26;
|
||||
leadLowGrading 0.01;
|
||||
|
||||
// compute number of cells and total cell spacing in the streamwise direction
|
||||
// from trailing edge to middle of aerofoil (upper surface)
|
||||
xMUpCells 312;
|
||||
xMUpGrading 1.25;
|
||||
|
||||
// compute number of cells and total cell spacing in the streamwise direction
|
||||
// from trailing edge to middle of aerofoil (lower surface)
|
||||
xMLowCells 46;
|
||||
xMLowGrading 25;
|
||||
|
||||
// compute number of cells and total cell spacing in the streamwise direction (from trailing edge to outlet, centreline)
|
||||
xDCells 38;
|
||||
xDGrading 831.626;
|
||||
|
||||
// compute total cell spacing in the streamwise direction
|
||||
// from far-field inlet to middle of airfoil (lower surface)
|
||||
xUffLowGrading 0.051377;
|
||||
|
||||
// compute total cell spacing in the streamwise direction
|
||||
// from middle of airfoil to trailing edge (lower surface)
|
||||
xMffLowGrading 7.54248;
|
||||
|
||||
// compute total cell spacing in the streamwise direction
|
||||
// from trailing edge to far-field outlet (upper surface)
|
||||
xDffUpGrading 32.5263;
|
||||
|
||||
// compute total cell spacing in the streamwise direction
|
||||
// from trailing edge to far-field outlet (lower surface)
|
||||
xDffLowGrading 8.68445;
|
||||
|
||||
// min/max coordinates in the spanwise direction (relative to Lchord)
|
||||
yMin -0.002;
|
||||
yMax 0.002;
|
||||
|
||||
// number of cells in the spanwise direction (y)
|
||||
yCells 2;
|
||||
|
||||
|
||||
geometry
|
||||
{
|
||||
aerofoil
|
||||
{
|
||||
type triSurfaceMesh;
|
||||
file "NACA4412.stl";
|
||||
}
|
||||
cylinder
|
||||
{
|
||||
type cylinder;
|
||||
point1 ($xTrail -1e3 0);
|
||||
point2 ($xTrail 1e3 0);
|
||||
radius $rMax;
|
||||
}
|
||||
}
|
||||
|
||||
vertices
|
||||
(
|
||||
// all vertices on yMin-plane
|
||||
(
|
||||
#eval{$xTrail - sin(degToRad((1.0-$xLower)*90))*$rMax}
|
||||
$yMin
|
||||
#eval{$zTrail - cos(degToRad((1.0-$xLower)*90))*$rMax}
|
||||
) // v 0
|
||||
($xTrail $yMin #eval{ $zLead - $rMax }) // v 1
|
||||
(#eval{ $xTrail + $xMax } $yMin #eval{ $zLead - $rMax }) // v 2
|
||||
project (#eval{ $xLead-$rMax } $yMin $zLead ) (cylinder) // v 3
|
||||
project ($xLead $yMin $zLead ) (aerofoil) // v 4
|
||||
project ($xTrail $yMin $zTrail ) (aerofoil) // v 5
|
||||
(#eval{ $xTrail + $xMax } $yMin $zTrail ) // v 6
|
||||
project ($xLower $yMin $zLower ) (aerofoil) // v 7
|
||||
project ($xUpper $yMin $zUpper ) (aerofoil) // v 8
|
||||
(
|
||||
#eval{$xTrail - sin(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax}
|
||||
$yMin
|
||||
#eval{$zTrail + cos(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax}
|
||||
) // v 9
|
||||
project ($xTrail $yMin #eval{ $zLead + $rMax }) (aerofoil) // v 10
|
||||
(#eval{ $xTrail + $xMax } $yMin #eval{ $zLead + $rMax }) // v 11
|
||||
|
||||
// all vertices on yMax-plane
|
||||
(
|
||||
#eval{$xTrail - sin(degToRad((1.0-$xLower)*90))*$rMax}
|
||||
$yMax
|
||||
#eval{$zTrail - cos(degToRad((1.0-$xLower)*90))*$rMax}
|
||||
) // v 12
|
||||
($xTrail $yMax #eval{ $zLead - $rMax }) // v 13
|
||||
(#eval{ $xTrail + $xMax } $yMax #eval{ $zLead - $rMax }) // v 14
|
||||
project (#eval{ $xLead-$rMax } $yMax $zLead ) (cylinder) // v 15
|
||||
project ($xLead $yMax $zLead ) (aerofoil) // v 16
|
||||
project ($xTrail $yMax $zTrail ) (aerofoil) // v 17
|
||||
(#eval{ $xTrail + $xMax } $yMax $zTrail ) // v 18
|
||||
project ($xLower $yMax $zLower ) (aerofoil) // v 19
|
||||
project ($xUpper $yMax $zUpper ) (aerofoil) // v 20
|
||||
(
|
||||
#eval{$xTrail - sin(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax}
|
||||
$yMax
|
||||
#eval{$zTrail + cos(degToRad($xMUpCells*90/($xUUpCells+$xMUpCells)))*$rMax}
|
||||
) // v 21
|
||||
project ($xTrail $yMax #eval{ $zLead + $rMax }) (aerofoil) // v 22
|
||||
(#eval{ $xTrail + $xMax } $yMax #eval{ $zLead + $rMax }) // v 23
|
||||
);
|
||||
|
||||
blocks
|
||||
(
|
||||
// block 0
|
||||
hex ( 7 4 16 19 0 3 15 12)
|
||||
($xULowCells $yCells $zCells)
|
||||
edgeGrading
|
||||
(
|
||||
$leadLowGrading $leadLowGrading $xUffLowGrading $xUffLowGrading
|
||||
1 1 1 1
|
||||
$zGrading $zGrading $zGrading $zGrading
|
||||
)
|
||||
|
||||
// block 1
|
||||
hex ( 5 7 19 17 1 0 12 13)
|
||||
($xMLowCells $yCells $zCells)
|
||||
edgeGrading
|
||||
(
|
||||
$xMLowGrading $xMLowGrading $xMffLowGrading $xMffLowGrading
|
||||
1 1 1 1
|
||||
$zGrading $zGrading $zGrading $zGrading
|
||||
)
|
||||
|
||||
// block 2
|
||||
hex ( 17 18 6 5 13 14 2 1)
|
||||
($xDCells $yCells $zCells)
|
||||
edgeGrading
|
||||
(
|
||||
$xDGrading $xDGrading $xDffLowGrading $xDffLowGrading
|
||||
1 1 1 1
|
||||
$zGrading $zGrading $zGrading $zGrading
|
||||
)
|
||||
|
||||
// block 3
|
||||
hex ( 20 16 4 8 21 15 3 9)
|
||||
($xUUpCells $yCells $zCells)
|
||||
edgeGrading
|
||||
(
|
||||
$leadUpGrading $leadUpGrading 1 1
|
||||
1 1 1 1
|
||||
$zGrading $zGrading $zGrading $zGrading
|
||||
)
|
||||
|
||||
// block 4
|
||||
hex ( 17 20 8 5 22 21 9 10)
|
||||
($xMUpCells $yCells $zCells)
|
||||
edgeGrading
|
||||
(
|
||||
$xMUpGrading $xMUpGrading 1 1
|
||||
1 1 1 1
|
||||
$zGrading $zGrading $zGrading $zGrading
|
||||
)
|
||||
|
||||
// block 5
|
||||
hex ( 5 6 18 17 10 11 23 22)
|
||||
($xDCells $yCells $zCells)
|
||||
edgeGrading
|
||||
(
|
||||
$xDGrading $xDGrading $xDffUpGrading $xDffUpGrading
|
||||
1 1 1 1
|
||||
$zGrading $zGrading $zGrading $zGrading
|
||||
)
|
||||
);
|
||||
|
||||
edges
|
||||
(
|
||||
project 4 7 (aerofoil)
|
||||
project 7 5 (aerofoil)
|
||||
project 4 8 (aerofoil)
|
||||
project 8 5 (aerofoil)
|
||||
|
||||
project 16 19 (aerofoil)
|
||||
project 19 17 (aerofoil)
|
||||
project 16 20 (aerofoil)
|
||||
project 20 17 (aerofoil)
|
||||
|
||||
project 3 0 (cylinder)
|
||||
project 3 9 (cylinder)
|
||||
project 15 12 (cylinder)
|
||||
project 15 21 (cylinder)
|
||||
|
||||
project 0 1 (cylinder)
|
||||
project 9 10 (cylinder)
|
||||
project 12 13 (cylinder)
|
||||
project 21 22 (cylinder)
|
||||
);
|
||||
|
||||
boundary
|
||||
(
|
||||
aerofoil
|
||||
{
|
||||
type wall;
|
||||
faces
|
||||
(
|
||||
(4 7 19 16)
|
||||
(7 5 17 19)
|
||||
(5 8 20 17)
|
||||
(8 4 16 20)
|
||||
);
|
||||
}
|
||||
|
||||
inlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(3 0 12 15)
|
||||
(0 1 13 12)
|
||||
(1 2 14 13)
|
||||
(11 10 22 23)
|
||||
(10 9 21 22)
|
||||
(9 3 15 21)
|
||||
);
|
||||
}
|
||||
|
||||
outlet
|
||||
{
|
||||
type patch;
|
||||
faces
|
||||
(
|
||||
(2 6 18 14)
|
||||
(6 11 23 18)
|
||||
);
|
||||
}
|
||||
|
||||
yPeriodic_half0
|
||||
{
|
||||
type cyclic;
|
||||
neighbourPatch yPeriodic_half1;
|
||||
faces
|
||||
(
|
||||
(3 4 7 0)
|
||||
(7 5 1 0)
|
||||
(5 6 2 1)
|
||||
(3 9 8 4)
|
||||
(9 10 5 8)
|
||||
(10 11 6 5)
|
||||
);
|
||||
}
|
||||
|
||||
yPeriodic_half1
|
||||
{
|
||||
type cyclic;
|
||||
neighbourPatch yPeriodic_half0;
|
||||
faces
|
||||
(
|
||||
(15 16 19 12)
|
||||
(19 17 13 12)
|
||||
(17 18 14 13)
|
||||
(15 16 20 21)
|
||||
(20 17 22 21)
|
||||
(17 18 23 22)
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
// Cleanup
|
||||
#remove ( domain aerofoil )
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,32 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
columnAverage
|
||||
{
|
||||
// Mandatory entries
|
||||
type columnAverage;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
// Note: include processorCyclics!
|
||||
patches ( yPeriodic_half0 "proc.*throughyPeriodic_half0" );
|
||||
fields
|
||||
(
|
||||
UMean
|
||||
UPrime2Mean
|
||||
);
|
||||
|
||||
// Inherited entries
|
||||
region region0;
|
||||
enabled true;
|
||||
log true;
|
||||
timeStart $tStartAvg;
|
||||
executeControl writeTime;
|
||||
writeControl none;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,61 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
location "system";
|
||||
object controlDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
application pimpleFoam;
|
||||
|
||||
startFrom startTime;
|
||||
|
||||
startTime 0;
|
||||
|
||||
stopAt endTime;
|
||||
|
||||
endTime 30;
|
||||
|
||||
deltaT 0.0025;
|
||||
|
||||
writeControl timeStep;
|
||||
|
||||
writeInterval 400;
|
||||
|
||||
purgeWrite 1;
|
||||
|
||||
writeFormat binary;
|
||||
|
||||
writePrecision 6;
|
||||
|
||||
writeCompression off;
|
||||
|
||||
timeFormat general;
|
||||
|
||||
timePrecision 6;
|
||||
|
||||
runTimeModifiable true;
|
||||
|
||||
// user-defined variables
|
||||
tStartAvg 20;
|
||||
|
||||
functions
|
||||
{
|
||||
#include "volFields"
|
||||
#include "wallFields"
|
||||
#include "fieldAverage"
|
||||
#include "forceCoeffs"
|
||||
#include "columnAverage"
|
||||
#include "sampleDict"
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,26 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object decomposeParDict;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
numberOfSubdomains 16;
|
||||
|
||||
method hierarchical;
|
||||
|
||||
coeffs
|
||||
{
|
||||
n (16 1 1);
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,54 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
fieldAverage
|
||||
{
|
||||
type fieldAverage;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
|
||||
timeStart $tStartAvg;
|
||||
|
||||
fields
|
||||
(
|
||||
U
|
||||
{
|
||||
mean on;
|
||||
prime2Mean on;
|
||||
base time;
|
||||
}
|
||||
p
|
||||
{
|
||||
mean on;
|
||||
prime2Mean off;
|
||||
base time;
|
||||
}
|
||||
nut
|
||||
{
|
||||
mean on;
|
||||
prime2Mean off;
|
||||
base time;
|
||||
}
|
||||
nuTilda
|
||||
{
|
||||
mean on;
|
||||
prime2Mean off;
|
||||
base time;
|
||||
}
|
||||
wallShearStress
|
||||
{
|
||||
mean on;
|
||||
prime2Mean off;
|
||||
base time;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,43 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
forceCoeffs
|
||||
{
|
||||
type forceCoeffs;
|
||||
|
||||
libs (forces);
|
||||
|
||||
writeControl timeStep;
|
||||
timeInterval 1;
|
||||
|
||||
log no;
|
||||
|
||||
AoA 13.87; // Angle-of-attack
|
||||
magUInf 1.0; // Freestream velocity
|
||||
lRef 1.0; // Chord length
|
||||
Aref #eval{ $lRef*0.004 }; // Chord length times span width
|
||||
|
||||
patches (aerofoil);
|
||||
rho rhoInf; // Indicates incompressible
|
||||
rhoInf 1; // Required when rho = rhoInf
|
||||
liftDir (
|
||||
#eval{-sin(degToRad($AoA))}
|
||||
0
|
||||
#eval{cos(degToRad($AoA))}
|
||||
);
|
||||
dragDir (
|
||||
#eval{cos(degToRad($AoA))}
|
||||
0
|
||||
#eval{sin(degToRad($AoA))}
|
||||
);
|
||||
CofR (0.25 0 0); // Aerodynamic center point
|
||||
pitchAxis (0 1 0);
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,73 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object fvSchemes;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
ddtSchemes
|
||||
{
|
||||
default backward;
|
||||
}
|
||||
|
||||
gradSchemes
|
||||
{
|
||||
default Gauss linear;
|
||||
}
|
||||
|
||||
divSchemes
|
||||
{
|
||||
default Gauss linear;
|
||||
|
||||
div(phi,U) Gauss DEShybrid
|
||||
linear // scheme 1
|
||||
linearUpwind grad(U) // scheme 2
|
||||
delta // LES delta name, e.g. 'delta', 'hmax'
|
||||
0.65 // CDES coefficient
|
||||
1.0 // Reference velocity scale
|
||||
1.0 // Reference length scale
|
||||
0.0 // Minimum sigma limit (0-1)
|
||||
1.0 // Maximum sigma limit (0-1)
|
||||
1.0 // Limiter of B function
|
||||
10.0; // nut limiter (if > 1, GAM extension is active)
|
||||
|
||||
turbulence Gauss limitedLinear 1;
|
||||
div(phi,k) $turbulence;
|
||||
div(phi,omega) $turbulence;
|
||||
div(phi,epsilon) $turbulence;
|
||||
div(phi,nuTilda) $turbulence;
|
||||
|
||||
div((nuEff*dev2(T(grad(U))))) Gauss linear;
|
||||
}
|
||||
|
||||
laplacianSchemes
|
||||
{
|
||||
default Gauss linear corrected;
|
||||
}
|
||||
|
||||
interpolationSchemes
|
||||
{
|
||||
default linear;
|
||||
}
|
||||
|
||||
snGradSchemes
|
||||
{
|
||||
default corrected;
|
||||
}
|
||||
|
||||
wallDist
|
||||
{
|
||||
method exactDistance;
|
||||
nRequired yes;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,75 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class dictionary;
|
||||
object fvSolution;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
solvers
|
||||
{
|
||||
p
|
||||
{
|
||||
solver GAMG;
|
||||
smoother DICGaussSeidel;
|
||||
tolerance 1e-06;
|
||||
relTol 0.05;
|
||||
minIter 1;
|
||||
maxIter 10;
|
||||
}
|
||||
|
||||
pFinal
|
||||
{
|
||||
$p;
|
||||
relTol 0.01;
|
||||
}
|
||||
|
||||
"(U|k|omega|nuTilda)"
|
||||
{
|
||||
solver PBiCG;
|
||||
preconditioner DILU;
|
||||
tolerance 1e-05;
|
||||
relTol 0.1;
|
||||
minIter 1;
|
||||
}
|
||||
|
||||
"(U|k|omega|nuTilda)Final"
|
||||
{
|
||||
$U;
|
||||
relTol 0;
|
||||
}
|
||||
}
|
||||
|
||||
PIMPLE
|
||||
{
|
||||
nOuterCorrectors 2;
|
||||
nCorrectors 1;
|
||||
nNonOrthogonalCorrectors 0;
|
||||
finalOnLastPimpleIterOnly true;
|
||||
turbOnFinalIterOnly false;
|
||||
}
|
||||
|
||||
relaxationFactors
|
||||
{
|
||||
fields
|
||||
{
|
||||
"(p|pFinal)" 0.3;
|
||||
}
|
||||
equations
|
||||
{
|
||||
"(U|UFinal)" 0.7;
|
||||
"(k|kFinal)" 0.7;
|
||||
"(omega|omegaFinal)" 0.7;
|
||||
"(nuTilda|nuTildaFinal)" 0.7;
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,98 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
sample.lines
|
||||
{
|
||||
type sets;
|
||||
libs (sampling);
|
||||
writeControl writeTime;
|
||||
timeStart $tStartAvg;
|
||||
|
||||
interpolationScheme cellPoint;
|
||||
setFormat raw;
|
||||
|
||||
sets
|
||||
(
|
||||
xbyc0.68
|
||||
{
|
||||
type face;
|
||||
axis z;
|
||||
start (6.753000021E-01 0.0001 7.061254978E-02);
|
||||
end (7.216045260E-01 0.0001 3.526125550E-01);
|
||||
}
|
||||
xbyc0.73
|
||||
{
|
||||
type face;
|
||||
axis z;
|
||||
start (7.307999730E-01 0.0001 6.140028313E-02);
|
||||
end (7.803474069E-01 0.0001 3.434002697E-01);
|
||||
}
|
||||
xbyc0.79
|
||||
{
|
||||
type face;
|
||||
axis z;
|
||||
start (7.863000035E-01 0.0001 5.103440955E-02);
|
||||
end (8.403753638E-01 0.0001 3.330343962E-01);
|
||||
}
|
||||
xbyc0.84
|
||||
{
|
||||
type face;
|
||||
axis z;
|
||||
start (8.417999744E-01 0.0001 3.950987384E-02);
|
||||
end (8.998869658E-01 0.0001 3.215098679E-01);
|
||||
}
|
||||
xbyc0.90
|
||||
{
|
||||
type face;
|
||||
axis z;
|
||||
start (8.973000050E-01 0.0001 2.680198476E-02);
|
||||
end (9.618465304E-01 0.0001 3.088019788E-01);
|
||||
}
|
||||
xbyc0.95
|
||||
{
|
||||
type face;
|
||||
axis z;
|
||||
start (9.527999759E-01 0.0001 1.286614314E-02);
|
||||
end (1.022162795E+00 0.0001 2.928661406E-01);
|
||||
}
|
||||
);
|
||||
|
||||
fields
|
||||
(
|
||||
columnAverage(UMean)
|
||||
columnAverage(UPrime2Mean)
|
||||
);
|
||||
}
|
||||
|
||||
sample.aerofoil
|
||||
{
|
||||
type surfaces;
|
||||
libs (sampling);
|
||||
writeControl writeTime;
|
||||
timeStart $tStartAvg;
|
||||
|
||||
interpolationScheme cell;
|
||||
surfaceFormat raw;
|
||||
|
||||
fields
|
||||
(
|
||||
pMean
|
||||
wallShearStressMean
|
||||
);
|
||||
|
||||
surfaces
|
||||
(
|
||||
aerofoil
|
||||
{
|
||||
type patch;
|
||||
patches ( "aerofoil" );
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,68 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
CourantNo
|
||||
{
|
||||
type CourantNo;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
}
|
||||
|
||||
vorticity
|
||||
{
|
||||
type vorticity;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
}
|
||||
|
||||
Q
|
||||
{
|
||||
type Q;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
}
|
||||
|
||||
DESModelRegions
|
||||
{
|
||||
type DESModelRegions;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
result DESField;
|
||||
}
|
||||
|
||||
blendingFactor
|
||||
{
|
||||
type blendingFactor;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
field U;
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
log false;
|
||||
}
|
||||
|
||||
turbulenceFields
|
||||
{
|
||||
type turbulenceFields;
|
||||
libs (fieldFunctionObjects);
|
||||
field fd;
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,31 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2406 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
wallShearStress
|
||||
{
|
||||
type wallShearStress;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
|
||||
patches ( aerofoil );
|
||||
}
|
||||
|
||||
yPlus
|
||||
{
|
||||
type yPlus;
|
||||
libs (fieldFunctionObjects);
|
||||
|
||||
enabled true;
|
||||
writeControl writeTime;
|
||||
|
||||
patches ( aerofoil );
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
@ -0,0 +1,254 @@
|
||||
# variables="x","cf"
|
||||
# zone, t="Cf results, SA, CFL3D, 897 grid, upper surface"
|
||||
-0.300215208E-03 0.520296954E-01
|
||||
-0.299679232E-03 0.519004650E-01
|
||||
-0.298475701E-03 0.517944582E-01
|
||||
-0.296462793E-03 0.516391732E-01
|
||||
-0.293677091E-03 0.515194647E-01
|
||||
-0.290010095E-03 0.513722003E-01
|
||||
-0.285390677E-03 0.511891693E-01
|
||||
-0.279784348E-03 0.510855354E-01
|
||||
-0.273050100E-03 0.509018973E-01
|
||||
-0.265073963E-03 0.506535582E-01
|
||||
-0.255770690E-03 0.504522398E-01
|
||||
-0.244996452E-03 0.502555445E-01
|
||||
-0.232593811E-03 0.500289872E-01
|
||||
-0.218391418E-03 0.497836806E-01
|
||||
-0.202203242E-03 0.495600849E-01
|
||||
-0.183828088E-03 0.492945798E-01
|
||||
-0.162961602E-03 0.489461161E-01
|
||||
-0.139413183E-03 0.486237742E-01
|
||||
-0.112867208E-03 0.483246632E-01
|
||||
-0.830134013E-04 0.479706377E-01
|
||||
-0.494437700E-04 0.475594029E-01
|
||||
-0.118173057E-04 0.471549146E-01
|
||||
0.303119032E-04 0.467480086E-01
|
||||
0.774177824E-04 0.463286415E-01
|
||||
0.130014727E-03 0.458562002E-01
|
||||
0.188744467E-03 0.453349985E-01
|
||||
0.254125218E-03 0.448392592E-01
|
||||
0.326920010E-03 0.442983694E-01
|
||||
0.407848827E-03 0.437292382E-01
|
||||
0.497698842E-03 0.431496948E-01
|
||||
0.597398961E-03 0.425287522E-01
|
||||
0.707842119E-03 0.419016667E-01
|
||||
0.830086763E-03 0.412580706E-01
|
||||
0.965213520E-03 0.405941717E-01
|
||||
0.111442222E-02 0.399245098E-01
|
||||
0.127896213E-02 0.392302461E-01
|
||||
0.146025384E-02 0.385085829E-01
|
||||
0.165968772E-02 0.377873108E-01
|
||||
0.187884353E-02 0.370576866E-01
|
||||
0.211935421E-02 0.363138951E-01
|
||||
0.238296925E-02 0.355671421E-01
|
||||
0.267152721E-02 0.348099098E-01
|
||||
0.298700971E-02 0.340385213E-01
|
||||
0.333145703E-02 0.332686193E-01
|
||||
0.370701938E-02 0.325040296E-01
|
||||
0.411599968E-02 0.317299813E-01
|
||||
0.456080539E-02 0.309557877E-01
|
||||
0.504391594E-02 0.301869959E-01
|
||||
0.556801818E-02 0.294177458E-01
|
||||
0.613584183E-02 0.286547132E-01
|
||||
0.675031310E-02 0.279000439E-01
|
||||
0.741444994E-02 0.271533020E-01
|
||||
0.813146960E-02 0.264114700E-01
|
||||
0.890471786E-02 0.256814528E-01
|
||||
0.973765645E-02 0.249689464E-01
|
||||
0.106340041E-01 0.242659971E-01
|
||||
0.115976157E-01 0.235775858E-01
|
||||
0.126325209E-01 0.229078624E-01
|
||||
0.137430029E-01 0.222531538E-01
|
||||
0.149335312E-01 0.216157548E-01
|
||||
0.162088145E-01 0.209972654E-01
|
||||
0.175738093E-01 0.203979630E-01
|
||||
0.190337263E-01 0.198178813E-01
|
||||
0.205940846E-01 0.192555841E-01
|
||||
0.222606752E-01 0.187128820E-01
|
||||
0.240395926E-01 0.181908272E-01
|
||||
0.259372946E-01 0.176869705E-01
|
||||
0.279605929E-01 0.172015429E-01
|
||||
0.301166419E-01 0.167358872E-01
|
||||
0.324130282E-01 0.162881874E-01
|
||||
0.348577611E-01 0.158577804E-01
|
||||
0.374592766E-01 0.154445507E-01
|
||||
0.402265228E-01 0.150476014E-01
|
||||
0.431689098E-01 0.146664511E-01
|
||||
0.462964140E-01 0.143002057E-01
|
||||
0.496195517E-01 0.139482785E-01
|
||||
0.531494506E-01 0.136096599E-01
|
||||
0.568978637E-01 0.132836690E-01
|
||||
0.608771965E-01 0.129696084E-01
|
||||
0.651005805E-01 0.126664806E-01
|
||||
0.695818588E-01 0.123735210E-01
|
||||
0.743356869E-01 0.120899258E-01
|
||||
0.793775097E-01 0.118148932E-01
|
||||
0.847236738E-01 0.115474779E-01
|
||||
0.903914198E-01 0.112869106E-01
|
||||
0.963989496E-01 0.110324258E-01
|
||||
0.102765486E+00 0.107832532E-01
|
||||
0.109511293E+00 0.105385017E-01
|
||||
0.116657786E+00 0.102973357E-01
|
||||
0.124227509E+00 0.100590624E-01
|
||||
0.132244244E+00 0.982277561E-02
|
||||
0.140733093E+00 0.958765578E-02
|
||||
0.149720430E+00 0.935295038E-02
|
||||
0.159234062E+00 0.911777467E-02
|
||||
0.169303283E+00 0.888128486E-02
|
||||
0.179958835E+00 0.864262041E-02
|
||||
0.191233084E+00 0.840087514E-02
|
||||
0.203160003E+00 0.815506279E-02
|
||||
0.215775266E+00 0.790417567E-02
|
||||
0.229116291E+00 0.764716649E-02
|
||||
0.243222237E+00 0.738282362E-02
|
||||
0.258134156E+00 0.710981246E-02
|
||||
0.273894936E+00 0.682660146E-02
|
||||
0.290549338E+00 0.653150119E-02
|
||||
0.308144122E+00 0.622206694E-02
|
||||
0.326727927E+00 0.589551963E-02
|
||||
0.346351355E+00 0.554451626E-02
|
||||
0.367066890E+00 0.516386563E-02
|
||||
0.387786448E+00 0.476704910E-02
|
||||
0.407450289E+00 0.439839624E-02
|
||||
0.426136523E+00 0.409791898E-02
|
||||
0.443916082E+00 0.385038787E-02
|
||||
0.460852712E+00 0.362774311E-02
|
||||
0.477004498E+00 0.342413364E-02
|
||||
0.492424339E+00 0.323621533E-02
|
||||
0.507160723E+00 0.306076440E-02
|
||||
0.521257877E+00 0.289561506E-02
|
||||
0.534756422E+00 0.273915287E-02
|
||||
0.547693729E+00 0.259018806E-02
|
||||
0.560103893E+00 0.244779582E-02
|
||||
0.572018623E+00 0.231124554E-02
|
||||
0.583467066E+00 0.217998144E-02
|
||||
0.594475985E+00 0.205353904E-02
|
||||
0.605070293E+00 0.193153927E-02
|
||||
0.615273118E+00 0.181370717E-02
|
||||
0.625105798E+00 0.169981434E-02
|
||||
0.634588242E+00 0.158967997E-02
|
||||
0.643738806E+00 0.148317160E-02
|
||||
0.652574778E+00 0.138019444E-02
|
||||
0.661112130E+00 0.128068007E-02
|
||||
0.669365942E+00 0.118458655E-02
|
||||
0.677350104E+00 0.109188748E-02
|
||||
0.685077727E+00 0.100256992E-02
|
||||
0.692561090E+00 0.916637073E-03
|
||||
0.699811697E+00 0.834096281E-03
|
||||
0.706840277E+00 0.754955225E-03
|
||||
0.713656962E+00 0.679231831E-03
|
||||
0.720271349E+00 0.606939720E-03
|
||||
0.726692319E+00 0.538097986E-03
|
||||
0.732928336E+00 0.472748070E-03
|
||||
0.738987386E+00 0.410940469E-03
|
||||
0.744876981E+00 0.352758274E-03
|
||||
0.750604212E+00 0.298279105E-03
|
||||
0.756175756E+00 0.247550750E-03
|
||||
0.761597931E+00 0.200563707E-03
|
||||
0.766876817E+00 0.157215793E-03
|
||||
0.772018075E+00 0.117323041E-03
|
||||
0.777027011E+00 0.806296594E-04
|
||||
0.781908810E+00 0.468687831E-04
|
||||
0.786668360E+00 0.157865488E-04
|
||||
0.791310191E+00 -0.128374841E-04
|
||||
0.795838773E+00 -0.391724898E-04
|
||||
0.800258160E+00 -0.633725576E-04
|
||||
0.804572403E+00 -0.855705439E-04
|
||||
0.808785260E+00 -0.105885549E-03
|
||||
0.812900305E+00 -0.124440674E-03
|
||||
0.816920996E+00 -0.141352240E-03
|
||||
0.820850551E+00 -0.156737835E-03
|
||||
0.824692190E+00 -0.170709405E-03
|
||||
0.828448832E+00 -0.183371303E-03
|
||||
0.832123280E+00 -0.194826862E-03
|
||||
0.835718393E+00 -0.205175340E-03
|
||||
0.839236617E+00 -0.214509928E-03
|
||||
0.842680573E+00 -0.222914867E-03
|
||||
0.846052587E+00 -0.230470323E-03
|
||||
0.849354923E+00 -0.237256580E-03
|
||||
0.852589846E+00 -0.243342656E-03
|
||||
0.855759382E+00 -0.248790748E-03
|
||||
0.858865559E+00 -0.253666949E-03
|
||||
0.861910343E+00 -0.258024986E-03
|
||||
0.864895523E+00 -0.261914334E-03
|
||||
0.867822945E+00 -0.265384529E-03
|
||||
0.870694339E+00 -0.268477539E-03
|
||||
0.873511255E+00 -0.271230732E-03
|
||||
0.876275361E+00 -0.273681100E-03
|
||||
0.878988087E+00 -0.275859900E-03
|
||||
0.881650984E+00 -0.277792511E-03
|
||||
0.884265363E+00 -0.279507280E-03
|
||||
0.886832714E+00 -0.281024579E-03
|
||||
0.889354229E+00 -0.282362453E-03
|
||||
0.891831219E+00 -0.283540052E-03
|
||||
0.894264817E+00 -0.284572394E-03
|
||||
0.896656334E+00 -0.285471731E-03
|
||||
0.899006784E+00 -0.286249997E-03
|
||||
0.901317298E+00 -0.286919152E-03
|
||||
0.903588891E+00 -0.287488685E-03
|
||||
0.905822575E+00 -0.287967152E-03
|
||||
0.908019423E+00 -0.288364914E-03
|
||||
0.910180271E+00 -0.288692856E-03
|
||||
0.912306070E+00 -0.288959680E-03
|
||||
0.914397657E+00 -0.289176736E-03
|
||||
0.916455984E+00 -0.289356889E-03
|
||||
0.918481827E+00 -0.289512449E-03
|
||||
0.920475960E+00 -0.289657852E-03
|
||||
0.922439158E+00 -0.289809628E-03
|
||||
0.924372256E+00 -0.289983291E-03
|
||||
0.926275849E+00 -0.290197058E-03
|
||||
0.928150713E+00 -0.290470605E-03
|
||||
0.929997504E+00 -0.290822325E-03
|
||||
0.931816876E+00 -0.291272328E-03
|
||||
0.933609486E+00 -0.291841105E-03
|
||||
0.935375929E+00 -0.292548997E-03
|
||||
0.937116861E+00 -0.293416233E-03
|
||||
0.938832760E+00 -0.294462283E-03
|
||||
0.940524280E+00 -0.295706413E-03
|
||||
0.942191958E+00 -0.297167921E-03
|
||||
0.943836272E+00 -0.298865692E-03
|
||||
0.945457816E+00 -0.300818385E-03
|
||||
0.947057009E+00 -0.303044741E-03
|
||||
0.948634386E+00 -0.305563910E-03
|
||||
0.950190365E+00 -0.308395916E-03
|
||||
0.951725483E+00 -0.311561889E-03
|
||||
0.953240097E+00 -0.315084035E-03
|
||||
0.954734743E+00 -0.318985723E-03
|
||||
0.956209779E+00 -0.323292275E-03
|
||||
0.957665622E+00 -0.328030728E-03
|
||||
0.959102631E+00 -0.333229575E-03
|
||||
0.960521281E+00 -0.338917045E-03
|
||||
0.961921871E+00 -0.345120643E-03
|
||||
0.963304818E+00 -0.351868279E-03
|
||||
0.964670420E+00 -0.359184283E-03
|
||||
0.966019094E+00 -0.367087458E-03
|
||||
0.967351139E+00 -0.375591393E-03
|
||||
0.968666911E+00 -0.384699350E-03
|
||||
0.969966710E+00 -0.394402450E-03
|
||||
0.971250832E+00 -0.404678198E-03
|
||||
0.972519577E+00 -0.415484916E-03
|
||||
0.973773301E+00 -0.426758459E-03
|
||||
0.975012243E+00 -0.438408810E-03
|
||||
0.976236641E+00 -0.450317602E-03
|
||||
0.977446914E+00 -0.462340075E-03
|
||||
0.978643179E+00 -0.474304572E-03
|
||||
0.979825795E+00 -0.486013945E-03
|
||||
0.980994940E+00 -0.497254718E-03
|
||||
0.982150972E+00 -0.507808756E-03
|
||||
0.983294010E+00 -0.517471635E-03
|
||||
0.984424353E+00 -0.526082702E-03
|
||||
0.985542238E+00 -0.533566403E-03
|
||||
0.986647844E+00 -0.539986475E-03
|
||||
0.987741470E+00 -0.545613060E-03
|
||||
0.988823235E+00 -0.551001925E-03
|
||||
0.989893436E+00 -0.557064137E-03
|
||||
0.990952194E+00 -0.565123453E-03
|
||||
0.991999805E+00 -0.576828665E-03
|
||||
0.993036389E+00 -0.593985431E-03
|
||||
0.994062185E+00 -0.617379614E-03
|
||||
0.995077312E+00 -0.645336870E-03
|
||||
0.996082067E+00 -0.665129628E-03
|
||||
0.997076511E+00 -0.654931471E-03
|
||||
0.998060882E+00 -0.364484644E-03
|
||||
0.999035299E+00 0.645089941E-02
|
||||
0.100000000E+01 0.581762521E-02
|
@ -0,0 +1,515 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# variables="x","cp"
|
||||
0.10000E+01 -0.30446E-01
|
||||
0.99900E+00 -0.95178E-02
|
||||
0.99798E+00 -0.22917E-02
|
||||
0.99696E+00 0.46548E-02
|
||||
0.99592E+00 0.12455E-01
|
||||
0.99487E+00 0.20020E-01
|
||||
0.99381E+00 0.26966E-01
|
||||
0.99274E+00 0.33221E-01
|
||||
0.99165E+00 0.38813E-01
|
||||
0.99055E+00 0.43920E-01
|
||||
0.98944E+00 0.48630E-01
|
||||
0.98832E+00 0.53074E-01
|
||||
0.98718E+00 0.57313E-01
|
||||
0.98603E+00 0.61360E-01
|
||||
0.98486E+00 0.65275E-01
|
||||
0.98368E+00 0.69028E-01
|
||||
0.98249E+00 0.72663E-01
|
||||
0.98128E+00 0.76195E-01
|
||||
0.98006E+00 0.79610E-01
|
||||
0.97882E+00 0.82921E-01
|
||||
0.97757E+00 0.86144E-01
|
||||
0.97630E+00 0.89293E-01
|
||||
0.97502E+00 0.92369E-01
|
||||
0.97372E+00 0.95386E-01
|
||||
0.97240E+00 0.98330E-01
|
||||
0.97107E+00 0.10121E+00
|
||||
0.96972E+00 0.10404E+00
|
||||
0.96836E+00 0.10682E+00
|
||||
0.96697E+00 0.10956E+00
|
||||
0.96557E+00 0.11225E+00
|
||||
0.96415E+00 0.11490E+00
|
||||
0.96272E+00 0.11751E+00
|
||||
0.96126E+00 0.12010E+00
|
||||
0.95978E+00 0.12263E+00
|
||||
0.95829E+00 0.12514E+00
|
||||
0.95678E+00 0.12763E+00
|
||||
0.95524E+00 0.13009E+00
|
||||
0.95369E+00 0.13252E+00
|
||||
0.95211E+00 0.13493E+00
|
||||
0.95051E+00 0.13732E+00
|
||||
0.94889E+00 0.13967E+00
|
||||
0.94725E+00 0.14203E+00
|
||||
0.94559E+00 0.14435E+00
|
||||
0.94390E+00 0.14666E+00
|
||||
0.94219E+00 0.14896E+00
|
||||
0.94046E+00 0.15124E+00
|
||||
0.93870E+00 0.15349E+00
|
||||
0.93692E+00 0.15576E+00
|
||||
0.93511E+00 0.15799E+00
|
||||
0.93328E+00 0.16022E+00
|
||||
0.93142E+00 0.16244E+00
|
||||
0.92953E+00 0.16466E+00
|
||||
0.92762E+00 0.16685E+00
|
||||
0.92567E+00 0.16906E+00
|
||||
0.92370E+00 0.17125E+00
|
||||
0.92170E+00 0.17343E+00
|
||||
0.91967E+00 0.17561E+00
|
||||
0.91761E+00 0.17779E+00
|
||||
0.91552E+00 0.17995E+00
|
||||
0.91340E+00 0.18213E+00
|
||||
0.91124E+00 0.18429E+00
|
||||
0.90905E+00 0.18646E+00
|
||||
0.90683E+00 0.18862E+00
|
||||
0.90457E+00 0.19078E+00
|
||||
0.90228E+00 0.19295E+00
|
||||
0.89995E+00 0.19511E+00
|
||||
0.89758E+00 0.19727E+00
|
||||
0.89517E+00 0.19944E+00
|
||||
0.89273E+00 0.20162E+00
|
||||
0.89025E+00 0.20378E+00
|
||||
0.88772E+00 0.20596E+00
|
||||
0.88516E+00 0.20813E+00
|
||||
0.88255E+00 0.21033E+00
|
||||
0.87990E+00 0.21252E+00
|
||||
0.87720E+00 0.21471E+00
|
||||
0.87446E+00 0.21691E+00
|
||||
0.87167E+00 0.21913E+00
|
||||
0.86883E+00 0.22134E+00
|
||||
0.86594E+00 0.22356E+00
|
||||
0.86301E+00 0.22580E+00
|
||||
0.86002E+00 0.22805E+00
|
||||
0.85698E+00 0.23030E+00
|
||||
0.85388E+00 0.23255E+00
|
||||
0.85072E+00 0.23483E+00
|
||||
0.84751E+00 0.23711E+00
|
||||
0.84424E+00 0.23941E+00
|
||||
0.84091E+00 0.24172E+00
|
||||
0.83752E+00 0.24404E+00
|
||||
0.83407E+00 0.24638E+00
|
||||
0.83054E+00 0.24874E+00
|
||||
0.82695E+00 0.25111E+00
|
||||
0.82329E+00 0.25349E+00
|
||||
0.81956E+00 0.25589E+00
|
||||
0.81576E+00 0.25832E+00
|
||||
0.81188E+00 0.26075E+00
|
||||
0.80792E+00 0.26321E+00
|
||||
0.80389E+00 0.26568E+00
|
||||
0.79977E+00 0.26818E+00
|
||||
0.79556E+00 0.27070E+00
|
||||
0.79127E+00 0.27323E+00
|
||||
0.78689E+00 0.27580E+00
|
||||
0.78241E+00 0.27838E+00
|
||||
0.77784E+00 0.28100E+00
|
||||
0.77317E+00 0.28363E+00
|
||||
0.76840E+00 0.28631E+00
|
||||
0.76352E+00 0.28901E+00
|
||||
0.75853E+00 0.29173E+00
|
||||
0.75343E+00 0.29448E+00
|
||||
0.74822E+00 0.29728E+00
|
||||
0.74288E+00 0.30009E+00
|
||||
0.73742E+00 0.30296E+00
|
||||
0.73183E+00 0.30584E+00
|
||||
0.72611E+00 0.30879E+00
|
||||
0.72025E+00 0.31176E+00
|
||||
0.71425E+00 0.31478E+00
|
||||
0.70810E+00 0.31785E+00
|
||||
0.70180E+00 0.32096E+00
|
||||
0.69534E+00 0.32412E+00
|
||||
0.68871E+00 0.32734E+00
|
||||
0.68191E+00 0.33061E+00
|
||||
0.67494E+00 0.33395E+00
|
||||
0.66778E+00 0.33734E+00
|
||||
0.66042E+00 0.34081E+00
|
||||
0.65287E+00 0.34434E+00
|
||||
0.64511E+00 0.34796E+00
|
||||
0.63713E+00 0.35167E+00
|
||||
0.62893E+00 0.35545E+00
|
||||
0.62049E+00 0.35934E+00
|
||||
0.61181E+00 0.36334E+00
|
||||
0.60287E+00 0.36745E+00
|
||||
0.59367E+00 0.37169E+00
|
||||
0.58418E+00 0.37606E+00
|
||||
0.57440E+00 0.38058E+00
|
||||
0.56432E+00 0.38527E+00
|
||||
0.55392E+00 0.39016E+00
|
||||
0.54318E+00 0.39523E+00
|
||||
0.53209E+00 0.40056E+00
|
||||
0.52063E+00 0.40614E+00
|
||||
0.50878E+00 0.41203E+00
|
||||
0.49653E+00 0.41825E+00
|
||||
0.48385E+00 0.42487E+00
|
||||
0.47072E+00 0.43197E+00
|
||||
0.45711E+00 0.43959E+00
|
||||
0.44300E+00 0.44795E+00
|
||||
0.42836E+00 0.45686E+00
|
||||
0.41315E+00 0.46870E+00
|
||||
0.39736E+00 0.48176E+00
|
||||
0.38094E+00 0.49296E+00
|
||||
0.36386E+00 0.50411E+00
|
||||
0.34607E+00 0.51618E+00
|
||||
0.32754E+00 0.52898E+00
|
||||
0.30907E+00 0.54124E+00
|
||||
0.29161E+00 0.55343E+00
|
||||
0.27510E+00 0.56612E+00
|
||||
0.25949E+00 0.57883E+00
|
||||
0.24473E+00 0.59181E+00
|
||||
0.23077E+00 0.60507E+00
|
||||
0.21758E+00 0.61869E+00
|
||||
0.20510E+00 0.63267E+00
|
||||
0.19330E+00 0.64702E+00
|
||||
0.18214E+00 0.66178E+00
|
||||
0.17158E+00 0.67692E+00
|
||||
0.16161E+00 0.69243E+00
|
||||
0.15217E+00 0.70834E+00
|
||||
0.14325E+00 0.72458E+00
|
||||
0.13481E+00 0.74113E+00
|
||||
0.12683E+00 0.75798E+00
|
||||
0.11929E+00 0.77506E+00
|
||||
0.11216E+00 0.79230E+00
|
||||
0.10542E+00 0.80969E+00
|
||||
0.99046E-01 0.82710E+00
|
||||
0.93022E-01 0.84446E+00
|
||||
0.87328E-01 0.86170E+00
|
||||
0.81947E-01 0.87868E+00
|
||||
0.76862E-01 0.89530E+00
|
||||
0.72057E-01 0.91141E+00
|
||||
0.67518E-01 0.92688E+00
|
||||
0.63230E-01 0.94152E+00
|
||||
0.59181E-01 0.95514E+00
|
||||
0.55358E-01 0.96753E+00
|
||||
0.51748E-01 0.97843E+00
|
||||
0.48342E-01 0.98760E+00
|
||||
0.45127E-01 0.99474E+00
|
||||
0.42095E-01 0.99949E+00
|
||||
0.39236E-01 0.10015E+01
|
||||
0.36541E-01 0.10004E+01
|
||||
0.34002E-01 0.99577E+00
|
||||
0.31610E-01 0.98706E+00
|
||||
0.29359E-01 0.97380E+00
|
||||
0.27240E-01 0.95540E+00
|
||||
0.25248E-01 0.93131E+00
|
||||
0.23376E-01 0.90086E+00
|
||||
0.21618E-01 0.86342E+00
|
||||
0.19968E-01 0.81830E+00
|
||||
0.18422E-01 0.76478E+00
|
||||
0.16973E-01 0.70219E+00
|
||||
0.15617E-01 0.62989E+00
|
||||
0.14350E-01 0.54720E+00
|
||||
0.13166E-01 0.45353E+00
|
||||
0.12063E-01 0.34852E+00
|
||||
0.11035E-01 0.23168E+00
|
||||
0.10079E-01 0.10283E+00
|
||||
0.91919E-02 -0.38040E-01
|
||||
0.83691E-02 -0.19077E+00
|
||||
0.76075E-02 -0.35505E+00
|
||||
0.69037E-02 -0.53023E+00
|
||||
0.62546E-02 -0.71553E+00
|
||||
0.56569E-02 -0.90972E+00
|
||||
0.51074E-02 -0.11118E+01
|
||||
0.46033E-02 -0.13204E+01
|
||||
0.41417E-02 -0.15334E+01
|
||||
0.37196E-02 -0.17499E+01
|
||||
0.33343E-02 -0.19680E+01
|
||||
0.29833E-02 -0.21857E+01
|
||||
0.26638E-02 -0.24021E+01
|
||||
0.23736E-02 -0.26155E+01
|
||||
0.21103E-02 -0.28245E+01
|
||||
0.18717E-02 -0.30281E+01
|
||||
0.16556E-02 -0.32252E+01
|
||||
0.14603E-02 -0.34159E+01
|
||||
0.12838E-02 -0.35985E+01
|
||||
0.11244E-02 -0.37733E+01
|
||||
0.98066E-03 -0.39408E+01
|
||||
0.85103E-03 -0.40987E+01
|
||||
0.73416E-03 -0.42489E+01
|
||||
0.62886E-03 -0.43913E+01
|
||||
0.53398E-03 -0.45257E+01
|
||||
0.44852E-03 -0.46525E+01
|
||||
0.37153E-03 -0.47727E+01
|
||||
0.30219E-03 -0.48851E+01
|
||||
0.23970E-03 -0.49921E+01
|
||||
0.18343E-03 -0.50929E+01
|
||||
0.13271E-03 -0.51861E+01
|
||||
0.86972E-04 -0.52765E+01
|
||||
0.45758E-04 -0.53611E+01
|
||||
0.85722E-05 -0.54394E+01
|
||||
-0.25014E-04 -0.55158E+01
|
||||
-0.55304E-04 -0.55884E+01
|
||||
-0.82649E-04 -0.56557E+01
|
||||
-0.10735E-03 -0.57203E+01
|
||||
-0.12967E-03 -0.57823E+01
|
||||
-0.14981E-03 -0.58410E+01
|
||||
-0.16800E-03 -0.58966E+01
|
||||
-0.18443E-03 -0.59494E+01
|
||||
-0.19926E-03 -0.59992E+01
|
||||
-0.21267E-03 -0.60482E+01
|
||||
-0.22473E-03 -0.60959E+01
|
||||
-0.23559E-03 -0.61378E+01
|
||||
-0.24540E-03 -0.61822E+01
|
||||
-0.25415E-03 -0.62232E+01
|
||||
-0.26201E-03 -0.62623E+01
|
||||
-0.26899E-03 -0.63009E+01
|
||||
-0.27521E-03 -0.63387E+01
|
||||
-0.28063E-03 -0.63740E+01
|
||||
-0.28540E-03 -0.64105E+01
|
||||
-0.28942E-03 -0.64453E+01
|
||||
-0.29284E-03 -0.64780E+01
|
||||
-0.29558E-03 -0.65132E+01
|
||||
-0.29770E-03 -0.65442E+01
|
||||
-0.29919E-03 -0.65786E+01
|
||||
-0.30002E-03 -0.66094E+01
|
||||
-0.30022E-03 -0.66427E+01
|
||||
-0.29968E-03 -0.66740E+01
|
||||
-0.29848E-03 -0.67057E+01
|
||||
-0.29646E-03 -0.67382E+01
|
||||
-0.29368E-03 -0.67682E+01
|
||||
-0.29001E-03 -0.68019E+01
|
||||
-0.28539E-03 -0.68321E+01
|
||||
-0.27978E-03 -0.68637E+01
|
||||
-0.27305E-03 -0.68972E+01
|
||||
-0.26507E-03 -0.69285E+01
|
||||
-0.25577E-03 -0.69597E+01
|
||||
-0.24500E-03 -0.69919E+01
|
||||
-0.23259E-03 -0.70239E+01
|
||||
-0.21839E-03 -0.70558E+01
|
||||
-0.20220E-03 -0.70869E+01
|
||||
-0.18383E-03 -0.71199E+01
|
||||
-0.16296E-03 -0.71513E+01
|
||||
-0.13941E-03 -0.71811E+01
|
||||
-0.11287E-03 -0.72114E+01
|
||||
-0.83013E-04 -0.72417E+01
|
||||
-0.49444E-04 -0.72705E+01
|
||||
-0.11817E-04 -0.72971E+01
|
||||
0.30312E-04 -0.73236E+01
|
||||
0.77418E-04 -0.73476E+01
|
||||
0.13001E-03 -0.73717E+01
|
||||
0.18874E-03 -0.73916E+01
|
||||
0.25413E-03 -0.74089E+01
|
||||
0.32692E-03 -0.74252E+01
|
||||
0.40785E-03 -0.74361E+01
|
||||
0.49770E-03 -0.74450E+01
|
||||
0.59740E-03 -0.74492E+01
|
||||
0.70784E-03 -0.74488E+01
|
||||
0.83009E-03 -0.74442E+01
|
||||
0.96521E-03 -0.74341E+01
|
||||
0.11144E-02 -0.74186E+01
|
||||
0.12790E-02 -0.73979E+01
|
||||
0.14603E-02 -0.73707E+01
|
||||
0.16597E-02 -0.73368E+01
|
||||
0.18788E-02 -0.72970E+01
|
||||
0.21194E-02 -0.72502E+01
|
||||
0.23830E-02 -0.71968E+01
|
||||
0.26715E-02 -0.71369E+01
|
||||
0.29870E-02 -0.70703E+01
|
||||
0.33315E-02 -0.69967E+01
|
||||
0.37070E-02 -0.69171E+01
|
||||
0.41160E-02 -0.68318E+01
|
||||
0.45608E-02 -0.67402E+01
|
||||
0.50439E-02 -0.66437E+01
|
||||
0.55680E-02 -0.65422E+01
|
||||
0.61358E-02 -0.64362E+01
|
||||
0.67503E-02 -0.63264E+01
|
||||
0.74144E-02 -0.62133E+01
|
||||
0.81315E-02 -0.60974E+01
|
||||
0.89047E-02 -0.59788E+01
|
||||
0.97377E-02 -0.58587E+01
|
||||
0.10634E-01 -0.57375E+01
|
||||
0.11598E-01 -0.56150E+01
|
||||
0.12633E-01 -0.54925E+01
|
||||
0.13743E-01 -0.53701E+01
|
||||
0.14934E-01 -0.52480E+01
|
||||
0.16209E-01 -0.51268E+01
|
||||
0.17574E-01 -0.50067E+01
|
||||
0.19034E-01 -0.48882E+01
|
||||
0.20594E-01 -0.47714E+01
|
||||
0.22261E-01 -0.46563E+01
|
||||
0.24040E-01 -0.45433E+01
|
||||
0.25937E-01 -0.44327E+01
|
||||
0.27961E-01 -0.43243E+01
|
||||
0.30117E-01 -0.42184E+01
|
||||
0.32413E-01 -0.41150E+01
|
||||
0.34858E-01 -0.40141E+01
|
||||
0.37459E-01 -0.39158E+01
|
||||
0.40227E-01 -0.38201E+01
|
||||
0.43169E-01 -0.37269E+01
|
||||
0.46296E-01 -0.36363E+01
|
||||
0.49620E-01 -0.35481E+01
|
||||
0.53149E-01 -0.34625E+01
|
||||
0.56898E-01 -0.33791E+01
|
||||
0.60877E-01 -0.32981E+01
|
||||
0.65101E-01 -0.32193E+01
|
||||
0.69582E-01 -0.31426E+01
|
||||
0.74336E-01 -0.30679E+01
|
||||
0.79378E-01 -0.29952E+01
|
||||
0.84724E-01 -0.29243E+01
|
||||
0.90391E-01 -0.28551E+01
|
||||
0.96399E-01 -0.27875E+01
|
||||
0.10277E+00 -0.27214E+01
|
||||
0.10951E+00 -0.26566E+01
|
||||
0.11666E+00 -0.25930E+01
|
||||
0.12423E+00 -0.25305E+01
|
||||
0.13224E+00 -0.24689E+01
|
||||
0.14073E+00 -0.24080E+01
|
||||
0.14972E+00 -0.23477E+01
|
||||
0.15923E+00 -0.22879E+01
|
||||
0.16930E+00 -0.22283E+01
|
||||
0.17996E+00 -0.21688E+01
|
||||
0.19123E+00 -0.21092E+01
|
||||
0.20316E+00 -0.20493E+01
|
||||
0.21578E+00 -0.19889E+01
|
||||
0.22912E+00 -0.19277E+01
|
||||
0.24322E+00 -0.18655E+01
|
||||
0.25813E+00 -0.18020E+01
|
||||
0.27389E+00 -0.17369E+01
|
||||
0.29055E+00 -0.16699E+01
|
||||
0.30814E+00 -0.16004E+01
|
||||
0.32673E+00 -0.15282E+01
|
||||
0.34635E+00 -0.14541E+01
|
||||
0.36707E+00 -0.13775E+01
|
||||
0.38779E+00 -0.12993E+01
|
||||
0.40745E+00 -0.12196E+01
|
||||
0.42614E+00 -0.11457E+01
|
||||
0.44392E+00 -0.10842E+01
|
||||
0.46085E+00 -0.10294E+01
|
||||
0.47700E+00 -0.97909E+00
|
||||
0.49242E+00 -0.93267E+00
|
||||
0.50716E+00 -0.88949E+00
|
||||
0.52126E+00 -0.84912E+00
|
||||
0.53476E+00 -0.81119E+00
|
||||
0.54769E+00 -0.77543E+00
|
||||
0.56010E+00 -0.74162E+00
|
||||
0.57202E+00 -0.70954E+00
|
||||
0.58347E+00 -0.67906E+00
|
||||
0.59448E+00 -0.65002E+00
|
||||
0.60507E+00 -0.62233E+00
|
||||
0.61527E+00 -0.59588E+00
|
||||
0.62511E+00 -0.57058E+00
|
||||
0.63459E+00 -0.54639E+00
|
||||
0.64374E+00 -0.52321E+00
|
||||
0.65257E+00 -0.50103E+00
|
||||
0.66111E+00 -0.47976E+00
|
||||
0.66937E+00 -0.45941E+00
|
||||
0.67735E+00 -0.43989E+00
|
||||
0.68508E+00 -0.42123E+00
|
||||
0.69256E+00 -0.40335E+00
|
||||
0.69981E+00 -0.38626E+00
|
||||
0.70684E+00 -0.36993E+00
|
||||
0.71366E+00 -0.35433E+00
|
||||
0.72027E+00 -0.33943E+00
|
||||
0.72669E+00 -0.32525E+00
|
||||
0.73293E+00 -0.31172E+00
|
||||
0.73899E+00 -0.29886E+00
|
||||
0.74488E+00 -0.28663E+00
|
||||
0.75060E+00 -0.27502E+00
|
||||
0.75618E+00 -0.26401E+00
|
||||
0.76160E+00 -0.25357E+00
|
||||
0.76688E+00 -0.24370E+00
|
||||
0.77202E+00 -0.23437E+00
|
||||
0.77703E+00 -0.22555E+00
|
||||
0.78191E+00 -0.21724E+00
|
||||
0.78667E+00 -0.20941E+00
|
||||
0.79131E+00 -0.20203E+00
|
||||
0.79584E+00 -0.19509E+00
|
||||
0.80026E+00 -0.18857E+00
|
||||
0.80457E+00 -0.18243E+00
|
||||
0.80879E+00 -0.17668E+00
|
||||
0.81290E+00 -0.17127E+00
|
||||
0.81692E+00 -0.16621E+00
|
||||
0.82085E+00 -0.16146E+00
|
||||
0.82469E+00 -0.15700E+00
|
||||
0.82845E+00 -0.15283E+00
|
||||
0.83212E+00 -0.14892E+00
|
||||
0.83572E+00 -0.14525E+00
|
||||
0.83924E+00 -0.14181E+00
|
||||
0.84268E+00 -0.13859E+00
|
||||
0.84605E+00 -0.13557E+00
|
||||
0.84935E+00 -0.13273E+00
|
||||
0.85259E+00 -0.13007E+00
|
||||
0.85576E+00 -0.12756E+00
|
||||
0.85887E+00 -0.12521E+00
|
||||
0.86191E+00 -0.12300E+00
|
||||
0.86490E+00 -0.12091E+00
|
||||
0.86782E+00 -0.11895E+00
|
||||
0.87069E+00 -0.11710E+00
|
||||
0.87351E+00 -0.11536E+00
|
||||
0.87628E+00 -0.11372E+00
|
||||
0.87899E+00 -0.11216E+00
|
||||
0.88165E+00 -0.11068E+00
|
||||
0.88427E+00 -0.10929E+00
|
||||
0.88683E+00 -0.10796E+00
|
||||
0.88935E+00 -0.10670E+00
|
||||
0.89183E+00 -0.10550E+00
|
||||
0.89426E+00 -0.10437E+00
|
||||
0.89666E+00 -0.10330E+00
|
||||
0.89901E+00 -0.10227E+00
|
||||
0.90132E+00 -0.10128E+00
|
||||
0.90359E+00 -0.10035E+00
|
||||
0.90582E+00 -0.99455E-01
|
||||
0.90802E+00 -0.98601E-01
|
||||
0.91018E+00 -0.97792E-01
|
||||
0.91231E+00 -0.97012E-01
|
||||
0.91440E+00 -0.96261E-01
|
||||
0.91646E+00 -0.95555E-01
|
||||
0.91848E+00 -0.94863E-01
|
||||
0.92048E+00 -0.94215E-01
|
||||
0.92244E+00 -0.93582E-01
|
||||
0.92437E+00 -0.92979E-01
|
||||
0.92628E+00 -0.92405E-01
|
||||
0.92815E+00 -0.91846E-01
|
||||
0.93000E+00 -0.91316E-01
|
||||
0.93182E+00 -0.90816E-01
|
||||
0.93361E+00 -0.90315E-01
|
||||
0.93538E+00 -0.89844E-01
|
||||
0.93712E+00 -0.89403E-01
|
||||
0.93883E+00 -0.88961E-01
|
||||
0.94052E+00 -0.88534E-01
|
||||
0.94219E+00 -0.88122E-01
|
||||
0.94384E+00 -0.87725E-01
|
||||
0.94546E+00 -0.87342E-01
|
||||
0.94706E+00 -0.86960E-01
|
||||
0.94863E+00 -0.86592E-01
|
||||
0.95019E+00 -0.86239E-01
|
||||
0.95173E+00 -0.85871E-01
|
||||
0.95324E+00 -0.85517E-01
|
||||
0.95473E+00 -0.85164E-01
|
||||
0.95621E+00 -0.84826E-01
|
||||
0.95767E+00 -0.84473E-01
|
||||
0.95910E+00 -0.84105E-01
|
||||
0.96052E+00 -0.83751E-01
|
||||
0.96192E+00 -0.83383E-01
|
||||
0.96330E+00 -0.83001E-01
|
||||
0.96467E+00 -0.82603E-01
|
||||
0.96602E+00 -0.82206E-01
|
||||
0.96735E+00 -0.81779E-01
|
||||
0.96867E+00 -0.81323E-01
|
||||
0.96997E+00 -0.80852E-01
|
||||
0.97125E+00 -0.80352E-01
|
||||
0.97252E+00 -0.79807E-01
|
||||
0.97377E+00 -0.79233E-01
|
||||
0.97501E+00 -0.78615E-01
|
||||
0.97624E+00 -0.77953E-01
|
||||
0.97745E+00 -0.77232E-01
|
||||
0.97864E+00 -0.76466E-01
|
||||
0.97983E+00 -0.75627E-01
|
||||
0.98099E+00 -0.74715E-01
|
||||
0.98215E+00 -0.73744E-01
|
||||
0.98329E+00 -0.72684E-01
|
||||
0.98442E+00 -0.71566E-01
|
||||
0.98554E+00 -0.70359E-01
|
||||
0.98665E+00 -0.69078E-01
|
||||
0.98774E+00 -0.67724E-01
|
||||
0.98882E+00 -0.66311E-01
|
||||
0.98989E+00 -0.64840E-01
|
||||
0.99095E+00 -0.63309E-01
|
||||
0.99200E+00 -0.61779E-01
|
||||
0.99304E+00 -0.60263E-01
|
||||
0.99406E+00 -0.58820E-01
|
||||
0.99508E+00 -0.57584E-01
|
||||
0.99608E+00 -0.56569E-01
|
||||
0.99708E+00 -0.56436E-01
|
||||
0.99806E+00 -0.56333E-01
|
||||
0.99904E+00 -0.62367E-01
|
||||
0.10000E+01 -0.58040E-01
|
@ -0,0 +1,201 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# x = x/c
|
||||
# y = y/c
|
||||
# u = (u/Uinf)/0.93
|
||||
# v = (v/Uinf)/0.93
|
||||
# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil)
|
||||
# VARIABLES = "x","y","u","v"
|
||||
# ZONE T="x=.6753"
|
||||
6.753000021E-01 7.061254978E-02 2.055161400E-03 -3.195479221E-04
|
||||
6.753003001E-01 7.061452419E-02 3.877276089E-03 -6.021498120E-04
|
||||
6.753006577E-01 7.061649859E-02 5.694410764E-03 -8.849718142E-04
|
||||
6.753009558E-01 7.061848789E-02 7.549980655E-03 -1.172565506E-03
|
||||
6.753013134E-01 7.062049210E-02 9.398180991E-03 -1.460292377E-03
|
||||
6.753016114E-01 7.062251866E-02 1.130526885E-02 -1.755643170E-03
|
||||
6.753019691E-01 7.062456012E-02 1.320601255E-02 -2.051657764E-03
|
||||
6.753023267E-01 7.062663883E-02 1.519586705E-02 -2.359522972E-03
|
||||
6.753026843E-01 7.062875479E-02 1.717087813E-02 -2.667313209E-03
|
||||
6.753030419E-01 7.063090801E-02 1.925722510E-02 -2.989686560E-03
|
||||
6.753033996E-01 7.063310593E-02 2.132353932E-02 -3.311683424E-03
|
||||
6.753037572E-01 7.063535601E-02 2.351100184E-02 -3.649999853E-03
|
||||
6.753041148E-01 7.063765824E-02 2.570368536E-02 -3.990965895E-03
|
||||
6.753045321E-01 7.064002752E-02 2.801882103E-02 -4.349649884E-03
|
||||
6.753048897E-01 7.064246386E-02 3.038337454E-02 -4.716385156E-03
|
||||
6.753053069E-01 7.064497471E-02 3.283577785E-02 -5.097184330E-03
|
||||
6.753057241E-01 7.064756751E-02 3.541290015E-02 -5.495664664E-03
|
||||
6.753062010E-01 7.065024227E-02 3.802571818E-02 -5.902057048E-03
|
||||
6.753066182E-01 7.065301389E-02 4.080183804E-02 -6.331386976E-03
|
||||
6.753070951E-01 7.065588981E-02 4.366992041E-02 -6.776055321E-03
|
||||
6.753076315E-01 7.065887004E-02 4.665757343E-02 -7.239742670E-03
|
||||
6.753081083E-01 7.066196203E-02 4.981493205E-02 -7.727477234E-03
|
||||
6.753086448E-01 7.066518068E-02 5.306605250E-02 -8.232004009E-03
|
||||
6.753091812E-01 7.066853344E-02 5.648797750E-02 -8.762251586E-03
|
||||
6.753097773E-01 7.067202032E-02 6.011452153E-02 -9.322374128E-03
|
||||
6.753103733E-01 7.067565620E-02 6.385587156E-02 -9.902628139E-03
|
||||
6.753109694E-01 7.067944854E-02 6.779123843E-02 -1.051231101E-02
|
||||
6.753116250E-01 7.068340480E-02 7.197237015E-02 -1.115791686E-02
|
||||
6.753123403E-01 7.068753988E-02 7.632680237E-02 -1.183198672E-02
|
||||
6.753129959E-01 7.069186121E-02 8.087197691E-02 -1.253640279E-02
|
||||
6.753137708E-01 7.069637626E-02 8.572165668E-02 -1.328536961E-02
|
||||
6.753145456E-01 7.070109993E-02 9.082055837E-02 -1.407236420E-02
|
||||
6.753153801E-01 7.070604712E-02 9.612641484E-02 -1.489389595E-02
|
||||
6.753162146E-01 7.071122527E-02 1.017149314E-01 -1.575882919E-02
|
||||
6.753171086E-01 7.071664929E-02 1.076551899E-01 -1.667511091E-02
|
||||
6.753180027E-01 7.072233409E-02 1.138894409E-01 -1.763647608E-02
|
||||
6.753190160E-01 7.072828710E-02 1.203824133E-01 -1.864042133E-02
|
||||
6.753200293E-01 7.073453069E-02 1.271809936E-01 -1.969132572E-02
|
||||
6.753211021E-01 7.074107230E-02 1.343411952E-01 -2.079558186E-02
|
||||
6.753222346E-01 7.074794173E-02 1.418502480E-01 -2.195238136E-02
|
||||
6.753234267E-01 7.075513899E-02 1.496480852E-01 -2.315449901E-02
|
||||
6.753246784E-01 7.076269388E-02 1.577261984E-01 -2.440125495E-02
|
||||
6.753259301E-01 7.077062130E-02 1.660430878E-01 -2.568425797E-02
|
||||
6.753273010E-01 7.077894360E-02 1.746630073E-01 -2.701062150E-02
|
||||
6.753287315E-01 7.078767568E-02 1.834919751E-01 -2.836808749E-02
|
||||
6.753302813E-01 7.079684734E-02 1.924875230E-01 -2.975131944E-02
|
||||
6.753318310E-01 7.080647349E-02 2.015652359E-01 -3.114852123E-02
|
||||
6.753334999E-01 7.081657648E-02 2.105953991E-01 -3.253719956E-02
|
||||
6.753352284E-01 7.082719356E-02 2.195792347E-01 -3.391608223E-02
|
||||
6.753370762E-01 7.083833963E-02 2.284602821E-01 -3.527642041E-02
|
||||
6.753389835E-01 7.085005194E-02 2.371621579E-01 -3.660792112E-02
|
||||
6.753410101E-01 7.086235285E-02 2.456242889E-01 -3.790270910E-02
|
||||
6.753431559E-01 7.087527215E-02 2.537840009E-01 -3.915010020E-02
|
||||
6.753453612E-01 7.088883966E-02 2.614563107E-01 -4.032046720E-02
|
||||
6.753476858E-01 7.090310007E-02 2.687946260E-01 -4.143615067E-02
|
||||
6.753501892E-01 7.091808319E-02 2.757886052E-01 -4.249630123E-02
|
||||
6.753527522E-01 7.093381882E-02 2.824301422E-01 -4.350046068E-02
|
||||
6.753554940E-01 7.095035911E-02 2.887450755E-01 -4.445340857E-02
|
||||
6.753582954E-01 7.096773386E-02 2.947424054E-01 -4.535612836E-02
|
||||
6.753613353E-01 7.098598778E-02 3.003441393E-01 -4.619567469E-02
|
||||
6.753644943E-01 7.100518048E-02 3.057054877E-01 -4.699545354E-02
|
||||
6.753677726E-01 7.102534175E-02 3.108584285E-01 -4.776016250E-02
|
||||
6.753712296E-01 7.104652375E-02 3.158307672E-01 -4.849493131E-02
|
||||
6.753749251E-01 7.106878608E-02 3.206504881E-01 -4.920413345E-02
|
||||
6.753787398E-01 7.109218836E-02 3.253353536E-01 -4.989115894E-02
|
||||
6.753827929E-01 7.111677527E-02 3.298802078E-01 -5.055404827E-02
|
||||
6.753870249E-01 7.114262134E-02 3.343148530E-01 -5.119726434E-02
|
||||
6.753914952E-01 7.116977870E-02 3.386988342E-01 -5.182896554E-02
|
||||
6.753962040E-01 7.119832188E-02 3.430429995E-01 -5.245159566E-02
|
||||
6.754010916E-01 7.122831792E-02 3.473579586E-01 -5.306676030E-02
|
||||
6.754062772E-01 7.125984132E-02 3.516545296E-01 -5.367647856E-02
|
||||
6.754117012E-01 7.129298151E-02 3.559438288E-01 -5.428222194E-02
|
||||
6.754174232E-01 7.132780552E-02 3.602041900E-01 -5.487991124E-02
|
||||
6.754234433E-01 7.136441022E-02 3.644785285E-01 -5.547579005E-02
|
||||
6.754297614E-01 7.140287757E-02 3.687837422E-01 -5.607178807E-02
|
||||
6.754364371E-01 7.144331187E-02 3.731223345E-01 -5.666882172E-02
|
||||
6.754434109E-01 7.148580253E-02 3.774980903E-01 -5.726727098E-02
|
||||
6.754507422E-01 7.153046876E-02 3.819134235E-01 -5.786795542E-02
|
||||
6.754584312E-01 7.157741487E-02 3.863732517E-01 -5.847091600E-02
|
||||
6.754665375E-01 7.162676007E-02 3.908559680E-01 -5.907216296E-02
|
||||
6.754750609E-01 7.167862356E-02 3.954029083E-01 -5.967741460E-02
|
||||
6.754840016E-01 7.173313200E-02 4.000172317E-01 -6.028686464E-02
|
||||
6.754934192E-01 7.179042697E-02 4.047002494E-01 -6.090087816E-02
|
||||
6.755033135E-01 7.185064256E-02 4.094553292E-01 -6.151966006E-02
|
||||
6.755136847E-01 7.191393524E-02 4.142808020E-01 -6.214343384E-02
|
||||
6.755245924E-01 7.198046148E-02 4.191781878E-01 -6.277129054E-02
|
||||
6.755360961E-01 7.205038518E-02 4.241363406E-01 -6.340088695E-02
|
||||
6.755481362E-01 7.212388515E-02 4.291901886E-01 -6.403657794E-02
|
||||
6.755608320E-01 7.220113277E-02 4.343409538E-01 -6.467851996E-02
|
||||
6.755741835E-01 7.228232920E-02 4.395916760E-01 -6.532701850E-02
|
||||
6.755881906E-01 7.236767560E-02 4.449473321E-01 -6.598234177E-02
|
||||
6.756029129E-01 7.245738059E-02 4.504062533E-01 -6.664466113E-02
|
||||
6.756184101E-01 7.255166769E-02 4.559702277E-01 -6.731271744E-02
|
||||
6.756346822E-01 7.265076786E-02 4.616361558E-01 -6.798529625E-02
|
||||
6.756517887E-01 7.275493443E-02 4.674401581E-01 -6.866648793E-02
|
||||
6.756697297E-01 7.286442071E-02 4.733831584E-01 -6.935658306E-02
|
||||
6.756886840E-01 7.297950238E-02 4.794730246E-01 -7.005620748E-02
|
||||
6.757085323E-01 7.310046256E-02 4.857172668E-01 -7.076579332E-02
|
||||
6.757293940E-01 7.322760671E-02 4.921181798E-01 -7.148589194E-02
|
||||
6.757513285E-01 7.336124033E-02 4.986787140E-01 -7.221505046E-02
|
||||
6.757743955E-01 7.350170612E-02 5.054087043E-01 -7.295361161E-02
|
||||
6.757986546E-01 7.364934683E-02 5.123453736E-01 -7.370541990E-02
|
||||
6.758241057E-01 7.380452752E-02 5.194910765E-01 -7.447098196E-02
|
||||
6.758509278E-01 7.396764308E-02 5.268598795E-01 -7.525132596E-02
|
||||
6.758790612E-01 7.413908839E-02 5.344646573E-01 -7.604729384E-02
|
||||
6.759086251E-01 7.431929559E-02 5.423110723E-01 -7.685964555E-02
|
||||
6.759397388E-01 7.450871170E-02 5.504084229E-01 -7.768724114E-02
|
||||
6.759724617E-01 7.470779866E-02 5.587786436E-01 -7.853143662E-02
|
||||
6.760067940E-01 7.491706312E-02 5.674570203E-01 -7.939575613E-02
|
||||
6.760429144E-01 7.513701916E-02 5.764538050E-01 -8.028116822E-02
|
||||
6.760808825E-01 7.536821812E-02 5.857877135E-01 -8.118883520E-02
|
||||
6.761207581E-01 7.561122626E-02 5.954779387E-01 -8.211990446E-02
|
||||
6.761627197E-01 7.586664706E-02 6.055357456E-01 -8.307533711E-02
|
||||
6.762068272E-01 7.613512129E-02 6.159757376E-01 -8.405398577E-02
|
||||
6.762531400E-01 7.641731948E-02 6.268358827E-01 -8.505810052E-02
|
||||
6.763018370E-01 7.671392709E-02 6.381489635E-01 -8.609081805E-02
|
||||
6.763530374E-01 7.702569664E-02 6.499336362E-01 -8.715327084E-02
|
||||
6.764068604E-01 7.735339552E-02 6.622154117E-01 -8.824669570E-02
|
||||
6.764634252E-01 7.769784331E-02 6.750211716E-01 -8.937233686E-02
|
||||
6.765228510E-01 7.805988193E-02 6.883707047E-01 -9.053123742E-02
|
||||
6.765853167E-01 7.844042033E-02 7.022811770E-01 -9.172160923E-02
|
||||
6.766510010E-01 7.884040475E-02 7.168113589E-01 -9.294606000E-02
|
||||
6.767200232E-01 7.926083356E-02 7.319871187E-01 -9.420713037E-02
|
||||
6.767926216E-01 7.970273495E-02 7.478365898E-01 -9.550555795E-02
|
||||
6.768688560E-01 8.016721904E-02 7.643917203E-01 -9.684205800E-02
|
||||
6.769490242E-01 8.065544069E-02 7.816852331E-01 -9.821719676E-02
|
||||
6.770333052E-01 8.116860688E-02 7.997464538E-01 -9.963125736E-02
|
||||
6.771218777E-01 8.170799166E-02 8.185831308E-01 -1.010795310E-01
|
||||
6.772149801E-01 8.227493614E-02 8.382542729E-01 -1.025628895E-01
|
||||
6.773127913E-01 8.287085593E-02 8.587782979E-01 -1.040822491E-01
|
||||
6.774156690E-01 8.349721879E-02 8.801777959E-01 -1.056357548E-01
|
||||
6.775237918E-01 8.415558934E-02 9.024706483E-01 -1.072208211E-01
|
||||
6.776373982E-01 8.484759927E-02 9.256691337E-01 -1.088335440E-01
|
||||
6.777568460E-01 8.557496965E-02 9.497807026E-01 -1.104676574E-01
|
||||
6.778823733E-01 8.633950353E-02 9.747370481E-01 -1.121071726E-01
|
||||
6.780143380E-01 8.714310825E-02 1.000501633E+00 -1.137470976E-01
|
||||
6.781530380E-01 8.798776567E-02 1.027033210E+00 -1.153795123E-01
|
||||
6.782987714E-01 8.887559175E-02 1.054236889E+00 -1.169900298E-01
|
||||
6.784520149E-01 8.980877697E-02 1.081976652E+00 -1.185606197E-01
|
||||
6.786130667E-01 9.078964591E-02 1.110064745E+00 -1.200689375E-01
|
||||
6.787824035E-01 9.182063490E-02 1.138211966E+00 -1.214820817E-01
|
||||
6.789603233E-01 9.290430695E-02 1.165697336E+00 -1.227266714E-01
|
||||
6.791473627E-01 9.404335171E-02 1.192037582E+00 -1.237684563E-01
|
||||
6.793439388E-01 9.524059296E-02 1.216579318E+00 -1.245553493E-01
|
||||
6.795505881E-01 9.649901092E-02 1.238398433E+00 -1.250141561E-01
|
||||
6.797677875E-01 9.782173485E-02 1.256536722E+00 -1.250757873E-01
|
||||
6.799960732E-01 9.921204299E-02 1.270007610E+00 -1.246750951E-01
|
||||
6.802359819E-01 1.006733850E-01 1.278468966E+00 -1.238067076E-01
|
||||
6.804882288E-01 1.022094041E-01 1.282033086E+00 -1.225042343E-01
|
||||
6.807532907E-01 1.038239077E-01 1.283030748E+00 -1.209514737E-01
|
||||
6.810319424E-01 1.055209115E-01 1.282942414E+00 -1.192517653E-01
|
||||
6.813248396E-01 1.073046178E-01 1.282541633E+00 -1.174557135E-01
|
||||
6.816326976E-01 1.091794744E-01 1.282240629E+00 -1.155849546E-01
|
||||
6.819562912E-01 1.111501232E-01 1.282114387E+00 -1.136425063E-01
|
||||
6.822963953E-01 1.132214740E-01 1.282071829E+00 -1.116209105E-01
|
||||
6.826539040E-01 1.153986603E-01 1.282020807E+00 -1.095153615E-01
|
||||
6.830296516E-01 1.176870912E-01 1.281943083E+00 -1.073205248E-01
|
||||
6.834245920E-01 1.200924516E-01 1.281845212E+00 -1.050321385E-01
|
||||
6.838397384E-01 1.226207241E-01 1.281731367E+00 -1.026464179E-01
|
||||
6.842761040E-01 1.252781898E-01 1.281608105E+00 -1.001621187E-01
|
||||
6.847347617E-01 1.280714273E-01 1.281476259E+00 -9.757677466E-02
|
||||
6.852168441E-01 1.310074031E-01 1.281334877E+00 -9.488787502E-02
|
||||
6.857236028E-01 1.340934038E-01 1.281174898E+00 -9.209544957E-02
|
||||
6.862561703E-01 1.373370737E-01 1.280990958E+00 -8.919128776E-02
|
||||
6.868160367E-01 1.407464892E-01 1.280791044E+00 -8.616703749E-02
|
||||
6.874044538E-01 1.443301290E-01 1.280572891E+00 -8.302295208E-02
|
||||
6.880229712E-01 1.480968595E-01 1.280333519E+00 -7.976059616E-02
|
||||
6.886730790E-01 1.520560831E-01 1.280066133E+00 -7.637504488E-02
|
||||
6.893563867E-01 1.562175900E-01 1.279766798E+00 -7.286295295E-02
|
||||
6.900746226E-01 1.605917513E-01 1.279433727E+00 -6.923290342E-02
|
||||
6.908295751E-01 1.651894003E-01 1.279067993E+00 -6.547722220E-02
|
||||
6.916230917E-01 1.700219959E-01 1.278667331E+00 -6.159230694E-02
|
||||
6.924571395E-01 1.751015037E-01 1.278216481E+00 -5.757072568E-02
|
||||
6.933338046E-01 1.804405749E-01 1.277724504E+00 -5.341639370E-02
|
||||
6.942552924E-01 1.860524565E-01 1.277188420E+00 -4.912788048E-02
|
||||
6.952238083E-01 1.919510812E-01 1.276605368E+00 -4.470296204E-02
|
||||
6.962418556E-01 1.981510967E-01 1.275950313E+00 -4.013487324E-02
|
||||
6.973119378E-01 2.046679258E-01 1.275237441E+00 -3.543442488E-02
|
||||
6.984366775E-01 2.115177512E-01 1.274462938E+00 -3.059941716E-02
|
||||
6.996188760E-01 2.187175751E-01 1.273617029E+00 -2.562763914E-02
|
||||
7.008615136E-01 2.262852788E-01 1.272687554E+00 -2.051649615E-02
|
||||
7.021676302E-01 2.342396826E-01 1.271682858E+00 -1.527262386E-02
|
||||
7.035405040E-01 2.426005304E-01 1.270599008E+00 -9.897452779E-03
|
||||
7.049834728E-01 2.513885796E-01 1.269402862E+00 -4.395565949E-03
|
||||
7.065002322E-01 2.606256902E-01 1.268113971E+00 1.228710869E-03
|
||||
7.080944777E-01 2.703347802E-01 1.266730905E+00 6.971372757E-03
|
||||
7.097701430E-01 2.805399597E-01 1.265229344E+00 1.283563673E-02
|
||||
7.115314603E-01 2.912665904E-01 1.263620615E+00 1.881091483E-02
|
||||
7.133827806E-01 3.025413454E-01 1.261907578E+00 2.490236424E-02
|
||||
7.153286934E-01 3.143922091E-01 1.260057688E+00 3.110618144E-02
|
||||
7.173740864E-01 3.268485963E-01 1.258076310E+00 3.736085072E-02
|
||||
7.195239067E-01 3.399414718E-01 1.255965114E+00 4.369297996E-02
|
||||
7.217836380E-01 3.537033498E-01 1.253717899E+00 5.010820925E-02
|
@ -0,0 +1,201 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# x = x/c
|
||||
# y = y/c
|
||||
# u = (u/Uinf)/0.93
|
||||
# v = (v/Uinf)/0.93
|
||||
# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil)
|
||||
# VARIABLES = "x","y","u","v"
|
||||
# ZONE T="x=.7308"
|
||||
7.307999730E-01 6.140028313E-02 6.508523948E-04 -1.145524366E-04
|
||||
7.308003306E-01 6.140225381E-02 1.446120907E-03 -2.548194898E-04
|
||||
7.308006883E-01 6.140422821E-02 2.270576078E-03 -3.998979519E-04
|
||||
7.308010459E-01 6.140621379E-02 3.088965081E-03 -5.441304529E-04
|
||||
7.308014035E-01 6.140821055E-02 3.932722379E-03 -6.926000351E-04
|
||||
7.308017612E-01 6.141022965E-02 4.780756310E-03 -8.419270162E-04
|
||||
7.308021188E-01 6.141227484E-02 5.656776484E-03 -9.960859315E-04
|
||||
7.308024764E-01 6.141434982E-02 6.549824029E-03 -1.153170597E-03
|
||||
7.308028340E-01 6.141645461E-02 7.457661442E-03 -1.312977518E-03
|
||||
7.308031917E-01 6.141860411E-02 8.404050022E-03 -1.479237573E-03
|
||||
7.308036089E-01 6.142079830E-02 9.360593744E-03 -1.647712663E-03
|
||||
7.308040261E-01 6.142304465E-02 1.038151979E-02 -1.826799824E-03
|
||||
7.308043838E-01 6.142534688E-02 1.139671262E-02 -2.005516784E-03
|
||||
7.308048010E-01 6.142770872E-02 1.248921547E-02 -2.197061898E-03
|
||||
7.308052182E-01 6.143014133E-02 1.358384266E-02 -2.389657078E-03
|
||||
7.308056951E-01 6.143264845E-02 1.475156471E-02 -2.594650025E-03
|
||||
7.308061123E-01 6.143523380E-02 1.595578529E-02 -2.806023695E-03
|
||||
7.308065891E-01 6.143790856E-02 1.720352843E-02 -3.025343874E-03
|
||||
7.308071256E-01 6.144067645E-02 1.854996197E-02 -3.261133330E-03
|
||||
7.308076024E-01 6.144354120E-02 1.990795881E-02 -3.499706043E-03
|
||||
7.308081388E-01 6.144651771E-02 2.135560475E-02 -3.753683064E-03
|
||||
7.308086753E-01 6.144960597E-02 2.288690768E-02 -4.021888133E-03
|
||||
7.308092117E-01 6.145282090E-02 2.446709014E-02 -4.299222026E-03
|
||||
7.308098078E-01 6.145616248E-02 2.615196258E-02 -4.594450351E-03
|
||||
7.308104038E-01 6.145964563E-02 2.793205157E-02 -4.906071816E-03
|
||||
7.308110595E-01 6.146327406E-02 2.978448756E-02 -5.230871029E-03
|
||||
7.308117151E-01 6.146705896E-02 3.175479546E-02 -5.575972609E-03
|
||||
7.308124304E-01 6.147101149E-02 3.386559710E-02 -5.944963545E-03
|
||||
7.308131456E-01 6.147513911E-02 3.605123609E-02 -6.327807438E-03
|
||||
7.308139205E-01 6.147945300E-02 3.837997839E-02 -6.735545583E-03
|
||||
7.308146954E-01 6.148396060E-02 4.087404162E-02 -7.171310950E-03
|
||||
7.308155298E-01 6.148868054E-02 4.350501299E-02 -7.631161250E-03
|
||||
7.308164239E-01 6.149361655E-02 4.627458006E-02 -8.115598001E-03
|
||||
7.308173180E-01 6.149878725E-02 4.922350869E-02 -8.631194010E-03
|
||||
7.308182716E-01 6.150420010E-02 5.239295959E-02 -9.184224531E-03
|
||||
7.308192253E-01 6.150987372E-02 5.573928729E-02 -9.768245742E-03
|
||||
7.308202982E-01 6.151581928E-02 5.926953629E-02 -1.038481481E-02
|
||||
7.308213711E-01 6.152205169E-02 6.303081661E-02 -1.104143076E-02
|
||||
7.308225632E-01 6.152858585E-02 6.705367565E-02 -1.174294669E-02
|
||||
7.308237553E-01 6.153543666E-02 7.134630531E-02 -1.249044202E-02
|
||||
7.308250070E-01 6.154262647E-02 7.585945725E-02 -1.327715907E-02
|
||||
7.308263183E-01 6.155017018E-02 8.064136654E-02 -1.411057822E-02
|
||||
7.308277488E-01 6.155808643E-02 8.571945876E-02 -1.499514654E-02
|
||||
7.308291793E-01 6.156639382E-02 9.110064059E-02 -1.593145914E-02
|
||||
7.308307290E-01 6.157511100E-02 9.680046886E-02 -1.692187414E-02
|
||||
7.308323383E-01 6.158426777E-02 1.027568206E-01 -1.795734838E-02
|
||||
7.308340073E-01 6.159387901E-02 1.089788824E-01 -1.903889328E-02
|
||||
7.308357954E-01 6.160397083E-02 1.154608130E-01 -2.016474865E-02
|
||||
7.308376431E-01 6.161456928E-02 1.221600771E-01 -2.132746577E-02
|
||||
7.308396101E-01 6.162570044E-02 1.290778518E-01 -2.252561599E-02
|
||||
7.308416367E-01 6.163739040E-02 1.361288577E-01 -2.374555171E-02
|
||||
7.308438420E-01 6.164967269E-02 1.432503313E-01 -2.497794665E-02
|
||||
7.308461070E-01 6.166257337E-02 1.503906101E-01 -2.621202916E-02
|
||||
7.308484912E-01 6.167612597E-02 1.573859006E-01 -2.741880156E-02
|
||||
7.308509946E-01 6.169036031E-02 1.642392576E-01 -2.859885059E-02
|
||||
7.308536172E-01 6.170532107E-02 1.709139943E-01 -2.974428982E-02
|
||||
7.308563590E-01 6.172103435E-02 1.773475856E-01 -3.084551916E-02
|
||||
7.308592796E-01 6.173754856E-02 1.835125834E-01 -3.189879283E-02
|
||||
7.308623195E-01 6.175490096E-02 1.893873960E-01 -3.289919719E-02
|
||||
7.308655381E-01 6.177313253E-02 1.948809177E-01 -3.383041918E-02
|
||||
7.308688760E-01 6.179229170E-02 2.000587434E-01 -3.470392898E-02
|
||||
7.308723927E-01 6.181242317E-02 2.049802393E-01 -3.552949056E-02
|
||||
7.308761477E-01 6.183357909E-02 2.096710205E-01 -3.631179407E-02
|
||||
7.308800220E-01 6.185581163E-02 2.141495794E-01 -3.705472872E-02
|
||||
7.308841348E-01 6.187917665E-02 2.184446752E-01 -3.776326776E-02
|
||||
7.308884263E-01 6.190373376E-02 2.225690335E-01 -3.843899444E-02
|
||||
7.308930159E-01 6.192953885E-02 2.265188843E-01 -3.908101097E-02
|
||||
7.308977842E-01 6.195665896E-02 2.303753793E-01 -3.970349580E-02
|
||||
7.309027910E-01 6.198516488E-02 2.341661006E-01 -4.031044990E-02
|
||||
7.309080362E-01 6.201511994E-02 2.379034907E-01 -4.090460762E-02
|
||||
7.309135795E-01 6.204660609E-02 2.416009754E-01 -4.148857296E-02
|
||||
7.309193611E-01 6.207969412E-02 2.452728152E-01 -4.206437245E-02
|
||||
7.309255004E-01 6.211447343E-02 2.489195764E-01 -4.263160005E-02
|
||||
7.309318781E-01 6.215102598E-02 2.525527477E-01 -4.319208115E-02
|
||||
7.309386730E-01 6.218944490E-02 2.562069893E-01 -4.375146329E-02
|
||||
7.309457660E-01 6.222982705E-02 2.598916888E-01 -4.431094602E-02
|
||||
7.309532166E-01 6.227226555E-02 2.636095583E-01 -4.487116262E-02
|
||||
7.309610248E-01 6.231687218E-02 2.673612237E-01 -4.543251172E-02
|
||||
7.309693098E-01 6.236375868E-02 2.711597681E-01 -4.599644244E-02
|
||||
7.309779525E-01 6.241303682E-02 2.749907374E-01 -4.655999318E-02
|
||||
7.309870124E-01 6.246483326E-02 2.788711786E-01 -4.712584615E-02
|
||||
7.309966087E-01 6.251927465E-02 2.828199863E-01 -4.769659787E-02
|
||||
7.310066819E-01 6.257649511E-02 2.868392169E-01 -4.827235639E-02
|
||||
7.310172319E-01 6.263663620E-02 2.909298539E-01 -4.885318875E-02
|
||||
7.310283184E-01 6.269985437E-02 2.950901985E-01 -4.943899065E-02
|
||||
7.310400009E-01 6.276629865E-02 2.993306220E-01 -5.003052950E-02
|
||||
7.310522795E-01 6.283613294E-02 3.036338985E-01 -5.062413961E-02
|
||||
7.310651541E-01 6.290954351E-02 3.080213070E-01 -5.122316256E-02
|
||||
7.310787439E-01 6.298670173E-02 3.125069439E-01 -5.182907358E-02
|
||||
7.310929894E-01 6.306780130E-02 3.170910478E-01 -5.244172364E-02
|
||||
7.311079502E-01 6.315304339E-02 3.217765689E-01 -5.306123197E-02
|
||||
7.311236858E-01 6.324263662E-02 3.265620768E-01 -5.368736014E-02
|
||||
7.311402559E-01 6.333681196E-02 3.314593136E-01 -5.432087556E-02
|
||||
7.311576605E-01 6.343580037E-02 3.364500105E-01 -5.495759845E-02
|
||||
7.311758995E-01 6.353984028E-02 3.415609002E-01 -5.560176447E-02
|
||||
7.311951518E-01 6.364920735E-02 3.468093276E-01 -5.625487864E-02
|
||||
7.312153578E-01 6.376415491E-02 3.521943390E-01 -5.691665784E-02
|
||||
7.312365770E-01 6.388497353E-02 3.577230871E-01 -5.758754164E-02
|
||||
7.312588692E-01 6.401196867E-02 3.633969724E-01 -5.826753378E-02
|
||||
7.312823534E-01 6.414546072E-02 3.692322671E-01 -5.895778164E-02
|
||||
7.313069701E-01 6.428576261E-02 3.752116561E-01 -5.965389684E-02
|
||||
7.313328981E-01 6.443323940E-02 3.813737035E-01 -6.036166474E-02
|
||||
7.313601375E-01 6.458825618E-02 3.877339065E-01 -6.108213961E-02
|
||||
7.313887477E-01 6.475118548E-02 3.942970634E-01 -6.181560084E-02
|
||||
7.314188480E-01 6.492244452E-02 4.010763168E-01 -6.256297231E-02
|
||||
7.314504981E-01 6.510245800E-02 4.080772996E-01 -6.332454830E-02
|
||||
7.314836979E-01 6.529167295E-02 4.153178930E-01 -6.410142034E-02
|
||||
7.315186858E-01 6.549055129E-02 4.227954745E-01 -6.489074975E-02
|
||||
7.315554023E-01 6.569959223E-02 4.305502176E-01 -6.569815427E-02
|
||||
7.315939665E-01 6.591931731E-02 4.386007190E-01 -6.652487069E-02
|
||||
7.316345572E-01 6.615027785E-02 4.469594955E-01 -6.737167388E-02
|
||||
7.316772342E-01 6.639303267E-02 4.556440413E-01 -6.823962927E-02
|
||||
7.317220569E-01 6.664819270E-02 4.646671712E-01 -6.912945956E-02
|
||||
7.317692041E-01 6.691639870E-02 4.740504026E-01 -7.004217803E-02
|
||||
7.318187356E-01 6.719830632E-02 4.838040471E-01 -7.097595185E-02
|
||||
7.318707705E-01 6.749462336E-02 4.939759970E-01 -7.193660736E-02
|
||||
7.319254875E-01 6.780607998E-02 5.045846105E-01 -7.292502373E-02
|
||||
7.319830060E-01 6.813345850E-02 5.156517625E-01 -7.394234091E-02
|
||||
7.320435047E-01 6.847756356E-02 5.272033215E-01 -7.498989999E-02
|
||||
7.321070433E-01 6.883925200E-02 5.392616987E-01 -7.606872916E-02
|
||||
7.321738005E-01 6.921942532E-02 5.518497229E-01 -7.717925310E-02
|
||||
7.322440147E-01 6.961902976E-02 5.649977326E-01 -7.832053304E-02
|
||||
7.323178053E-01 7.003905624E-02 5.787591338E-01 -7.949831337E-02
|
||||
7.323954105E-01 7.048054785E-02 5.931547880E-01 -8.071296662E-02
|
||||
7.324769497E-01 7.094459981E-02 6.082178354E-01 -8.196570724E-02
|
||||
7.325626612E-01 7.143236697E-02 6.239832044E-01 -8.325769752E-02
|
||||
7.326527238E-01 7.194506377E-02 6.404867768E-01 -8.459002525E-02
|
||||
7.327473760E-01 7.248395681E-02 6.577509046E-01 -8.596170694E-02
|
||||
7.328469157E-01 7.305039465E-02 6.758264303E-01 -8.737127483E-02
|
||||
7.329515219E-01 7.364577800E-02 6.947562099E-01 -8.882291615E-02
|
||||
7.330614924E-01 7.427158952E-02 7.145717144E-01 -9.031627327E-02
|
||||
7.331770658E-01 7.492938638E-02 7.353091240E-01 -9.185100347E-02
|
||||
7.332985401E-01 7.562079281E-02 7.570030093E-01 -9.342624992E-02
|
||||
7.334262133E-01 7.634753734E-02 7.796884775E-01 -9.503939003E-02
|
||||
7.335604429E-01 7.711142302E-02 8.033916354E-01 -9.668684751E-02
|
||||
7.337015271E-01 7.791434973E-02 8.280966878E-01 -9.835847467E-02
|
||||
7.338498235E-01 7.875830680E-02 8.538344502E-01 -1.000561938E-01
|
||||
7.340056896E-01 7.964538783E-02 8.806005716E-01 -1.017735377E-01
|
||||
7.341694832E-01 8.057781309E-02 9.083749056E-01 -1.035022810E-01
|
||||
7.343416810E-01 8.155788481E-02 9.371155500E-01 -1.052319631E-01
|
||||
7.345227003E-01 8.258804679E-02 9.667499065E-01 -1.069486290E-01
|
||||
7.347129583E-01 8.367084712E-02 9.971011877E-01 -1.086261198E-01
|
||||
7.349129319E-01 8.480899036E-02 1.027829766E+00 -1.102233678E-01
|
||||
7.351230979E-01 8.600530028E-02 1.058758020E+00 -1.117280349E-01
|
||||
7.353440523E-01 8.726274222E-02 1.089479804E+00 -1.131004691E-01
|
||||
7.355762720E-01 8.858445287E-02 1.119430542E+00 -1.142898649E-01
|
||||
7.358203530E-01 8.997370303E-02 1.147766590E+00 -1.152244583E-01
|
||||
7.360768914E-01 9.143395722E-02 1.173471689E+00 -1.158249229E-01
|
||||
7.363466024E-01 9.296883643E-02 1.195019960E+00 -1.159783527E-01
|
||||
7.366300821E-01 9.458214790E-02 1.210635662E+00 -1.155745387E-01
|
||||
7.369279861E-01 9.627791494E-02 1.220924377E+00 -1.146975756E-01
|
||||
7.372411489E-01 9.806034714E-02 1.226601601E+00 -1.134225056E-01
|
||||
7.375703454E-01 9.993386269E-02 1.228910327E+00 -1.118485406E-01
|
||||
7.379163504E-01 1.019031331E-01 1.229413867E+00 -1.100875810E-01
|
||||
7.382800579E-01 1.039730385E-01 1.229291558E+00 -1.082118154E-01
|
||||
7.386623025E-01 1.061487272E-01 1.229285836E+00 -1.062609777E-01
|
||||
7.390640974E-01 1.084356010E-01 1.229538560E+00 -1.042409316E-01
|
||||
7.394864559E-01 1.108393520E-01 1.229898334E+00 -1.021378711E-01
|
||||
7.399303913E-01 1.133659482E-01 1.230282545E+00 -9.994978458E-02
|
||||
7.403969765E-01 1.160216630E-01 1.230659008E+00 -9.767321497E-02
|
||||
7.408874035E-01 1.188130975E-01 1.231024504E+00 -9.530088305E-02
|
||||
7.414029241E-01 1.217471883E-01 1.231386185E+00 -9.283000231E-02
|
||||
7.419447899E-01 1.248312294E-01 1.231742144E+00 -9.025847912E-02
|
||||
7.425143719E-01 1.280728728E-01 1.232096076E+00 -8.758995682E-02
|
||||
7.431130409E-01 1.314801872E-01 1.232448339E+00 -8.481925726E-02
|
||||
7.437422872E-01 1.350616366E-01 1.232798457E+00 -8.194530755E-02
|
||||
7.444037199E-01 1.388261169E-01 1.233137012E+00 -7.895899564E-02
|
||||
7.450989485E-01 1.427829713E-01 1.233464479E+00 -7.585989684E-02
|
||||
7.458297014E-01 1.469420493E-01 1.233781219E+00 -7.264738530E-02
|
||||
7.465977669E-01 1.513136774E-01 1.234081149E+00 -6.932192296E-02
|
||||
7.474051118E-01 1.559087187E-01 1.234353781E+00 -6.587851793E-02
|
||||
7.482537627E-01 1.607385874E-01 1.234605789E+00 -6.230663136E-02
|
||||
7.491457462E-01 1.658152938E-01 1.234837532E+00 -5.860734731E-02
|
||||
7.500832677E-01 1.711514294E-01 1.235042810E+00 -5.478337407E-02
|
||||
7.510687709E-01 1.767602861E-01 1.235209107E+00 -5.082470179E-02
|
||||
7.521045804E-01 1.826557815E-01 1.235339761E+00 -4.673552886E-02
|
||||
7.531933784E-01 1.888525635E-01 1.235426426E+00 -4.252087697E-02
|
||||
7.543377876E-01 1.953660399E-01 1.235457420E+00 -3.817785159E-02
|
||||
7.555406690E-01 2.022123784E-01 1.235436559E+00 -3.369164467E-02
|
||||
7.568050623E-01 2.094085962E-01 1.235366464E+00 -2.906696312E-02
|
||||
7.581340671E-01 2.169725895E-01 1.235235453E+00 -2.430552430E-02
|
||||
7.595309615E-01 2.249231488E-01 1.235032797E+00 -1.940262690E-02
|
||||
7.609992623E-01 2.332800031E-01 1.234763861E+00 -1.436570939E-02
|
||||
7.625426054E-01 2.420639545E-01 1.234411001E+00 -9.196891449E-03
|
||||
7.641648054E-01 2.512967885E-01 1.233968139E+00 -3.897519549E-03
|
||||
7.658699155E-01 2.610014975E-01 1.233443856E+00 1.528515946E-03
|
||||
7.676621675E-01 2.712021470E-01 1.232819319E+00 7.087737322E-03
|
||||
7.695460320E-01 2.819240987E-01 1.232102036E+00 1.277386304E-02
|
||||
7.715261579E-01 2.931939960E-01 1.231285572E+00 1.858987473E-02
|
||||
7.736074924E-01 3.050398827E-01 1.230356693E+00 2.452520095E-02
|
||||
7.757951617E-01 3.174911141E-01 1.229310036E+00 3.055082448E-02
|
||||
7.780946493E-01 3.305786848E-01 1.228133559E+00 3.667429835E-02
|
||||
7.805116773E-01 3.443350792E-01 1.226850033E+00 4.288417101E-02
|
@ -0,0 +1,201 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# x = x/c
|
||||
# y = y/c
|
||||
# u = (u/Uinf)/0.93
|
||||
# v = (v/Uinf)/0.93
|
||||
# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil)
|
||||
# VARIABLES = "x","y","u","v"
|
||||
# ZONE T="x=.7863"
|
||||
7.863000035E-01 5.103440955E-02 8.341434295E-06 -1.627417191E-06
|
||||
7.863003612E-01 5.103637278E-02 3.846852633E-05 -7.523841759E-06
|
||||
7.863007784E-01 5.103834346E-02 7.854533033E-05 -1.535152478E-05
|
||||
7.863011360E-01 5.104032159E-02 1.189772593E-04 -2.324443631E-05
|
||||
7.863014936E-01 5.104231462E-02 1.701169385E-04 -3.321106487E-05
|
||||
7.863019109E-01 5.104433000E-02 2.216422727E-04 -4.324938709E-05
|
||||
7.863022685E-01 5.104636773E-02 2.850732708E-04 -5.558943303E-05
|
||||
7.863026857E-01 5.104843527E-02 3.486393543E-04 -6.795534136E-05
|
||||
7.863031030E-01 5.105053633E-02 4.263448354E-04 -8.305199299E-05
|
||||
7.863035202E-01 5.105267838E-02 5.029755412E-04 -9.794346988E-05
|
||||
7.863039374E-01 5.105486885E-02 5.970027996E-04 -1.161922410E-04
|
||||
7.863043547E-01 5.105710775E-02 6.890651421E-04 -1.340675080E-04
|
||||
7.863047719E-01 5.105940253E-02 8.017031942E-04 -1.559100201E-04
|
||||
7.863052487E-01 5.106176063E-02 9.195217281E-04 -1.787541987E-04
|
||||
7.863057256E-01 5.106418580E-02 1.046745805E-03 -2.034228382E-04
|
||||
7.863062024E-01 5.106668547E-02 1.190428855E-03 -2.312596334E-04
|
||||
7.863066792E-01 5.106926337E-02 1.338313916E-03 -2.599241270E-04
|
||||
7.863072157E-01 5.107193068E-02 1.511906041E-03 -2.935365192E-04
|
||||
7.863077521E-01 5.107469112E-02 1.696386258E-03 -3.292523907E-04
|
||||
7.863082886E-01 5.107754841E-02 1.895362278E-03 -3.677853965E-04
|
||||
7.863088250E-01 5.108051747E-02 2.119382145E-03 -4.111313319E-04
|
||||
7.863094211E-01 5.108359829E-02 2.354734344E-03 -4.566834250E-04
|
||||
7.863100171E-01 5.108680204E-02 2.621550811E-03 -5.083012511E-04
|
||||
7.863106728E-01 5.109013617E-02 2.914820565E-03 -5.650110543E-04
|
||||
7.863113284E-01 5.109360814E-02 3.226458561E-03 -6.252853782E-04
|
||||
7.863120437E-01 5.109722912E-02 3.575637937E-03 -6.928037037E-04
|
||||
7.863127589E-01 5.110100657E-02 3.960990347E-03 -7.672767970E-04
|
||||
7.863135338E-01 5.110494792E-02 4.380581435E-03 -8.483516285E-04
|
||||
7.863143086E-01 5.110906437E-02 4.830332473E-03 -9.353036294E-04
|
||||
7.863151431E-01 5.111336708E-02 5.339566618E-03 -1.033664797E-03
|
||||
7.863159776E-01 5.111786351E-02 5.893975496E-03 -1.140731503E-03
|
||||
7.863169312E-01 5.112257227E-02 6.499534007E-03 -1.257669181E-03
|
||||
7.863178253E-01 5.112749711E-02 7.158318534E-03 -1.384926145E-03
|
||||
7.863188386E-01 5.113265291E-02 7.896215655E-03 -1.527352259E-03
|
||||
7.863198519E-01 5.113805458E-02 8.702702820E-03 -1.682987320E-03
|
||||
7.863209844E-01 5.114371330E-02 9.587853216E-03 -1.853770460E-03
|
||||
7.863221169E-01 5.114964396E-02 1.054415852E-02 -2.038386185E-03
|
||||
7.863233089E-01 5.115586147E-02 1.161867008E-02 -2.245628741E-03
|
||||
7.863245606E-01 5.116238073E-02 1.279695798E-02 -2.472839085E-03
|
||||
7.863258719E-01 5.116921663E-02 1.408801973E-02 -2.721742028E-03
|
||||
7.863272429E-01 5.117639154E-02 1.550199930E-02 -2.994282404E-03
|
||||
7.863286734E-01 5.118391663E-02 1.704074442E-02 -3.291023429E-03
|
||||
7.863301635E-01 5.119181424E-02 1.875743642E-02 -3.621759359E-03
|
||||
7.863317728E-01 5.120010301E-02 2.064031176E-02 -3.984414972E-03
|
||||
7.863334417E-01 5.120880157E-02 2.269897796E-02 -4.380814265E-03
|
||||
7.863351703E-01 5.121793598E-02 2.494722418E-02 -4.813584033E-03
|
||||
7.863370180E-01 5.122752488E-02 2.739026211E-02 -5.283914506E-03
|
||||
7.863389850E-01 5.123759806E-02 3.008327261E-02 -5.802047905E-03
|
||||
7.863410115E-01 5.124817044E-02 3.301535174E-02 -6.365773734E-03
|
||||
7.863430977E-01 5.125927925E-02 3.618973121E-02 -6.975762080E-03
|
||||
7.863453627E-01 5.127094314E-02 3.961641714E-02 -7.633835543E-03
|
||||
7.863476872E-01 5.128319934E-02 4.329212755E-02 -8.339235559E-03
|
||||
7.863501906E-01 5.129607022E-02 4.720037803E-02 -9.088964202E-03
|
||||
7.863527536E-01 5.130959302E-02 5.133946985E-02 -9.881849401E-03
|
||||
7.863554955E-01 5.132380128E-02 5.568363518E-02 -1.071268693E-02
|
||||
7.863583565E-01 5.133872852E-02 6.017799675E-02 -1.157086156E-02
|
||||
7.863613367E-01 5.135441199E-02 6.477709860E-02 -1.244733017E-02
|
||||
7.863644958E-01 5.137088895E-02 6.943359971E-02 -1.333266776E-02
|
||||
7.863678336E-01 5.138820410E-02 7.409329712E-02 -1.421622001E-02
|
||||
7.863713503E-01 5.140640214E-02 7.864300907E-02 -1.507586334E-02
|
||||
7.863749862E-01 5.142552033E-02 8.306851983E-02 -1.590779796E-02
|
||||
7.863788605E-01 5.144561455E-02 8.735191077E-02 -1.670904085E-02
|
||||
7.863829136E-01 5.146672577E-02 9.147043526E-02 -1.747506857E-02
|
||||
7.863871455E-01 5.148891732E-02 9.541696310E-02 -1.820436493E-02
|
||||
7.863916159E-01 5.151223764E-02 9.919108450E-02 -1.889673620E-02
|
||||
7.863963246E-01 5.153674260E-02 1.027923822E-01 -1.955224946E-02
|
||||
7.864012718E-01 5.156249925E-02 1.061873436E-01 -2.016370185E-02
|
||||
7.864064574E-01 5.158956721E-02 1.094638109E-01 -2.074822225E-02
|
||||
7.864118814E-01 5.161801726E-02 1.126378849E-01 -2.130903304E-02
|
||||
7.864176631E-01 5.164791644E-02 1.157303378E-01 -2.184998989E-02
|
||||
7.864236832E-01 5.167934299E-02 1.187578589E-01 -2.237420157E-02
|
||||
7.864300013E-01 5.171237141E-02 1.217382327E-01 -2.288494259E-02
|
||||
7.864366770E-01 5.174708739E-02 1.246756911E-01 -2.338308096E-02
|
||||
7.864436507E-01 5.178357288E-02 1.275814623E-01 -2.386994287E-02
|
||||
7.864509821E-01 5.182192102E-02 1.304915845E-01 -2.435266040E-02
|
||||
7.864587307E-01 5.186222866E-02 1.334166080E-01 -2.483305149E-02
|
||||
7.864668369E-01 5.190459266E-02 1.363650858E-01 -2.531254105E-02
|
||||
7.864754200E-01 5.194912106E-02 1.393470317E-01 -2.579273656E-02
|
||||
7.864843607E-01 5.199592188E-02 1.423687041E-01 -2.627460659E-02
|
||||
7.864938378E-01 5.204511434E-02 1.454277486E-01 -2.675747126E-02
|
||||
7.865037322E-01 5.209682137E-02 1.485337168E-01 -2.724226378E-02
|
||||
7.865141630E-01 5.215116590E-02 1.517011076E-01 -2.773181908E-02
|
||||
7.865250707E-01 5.220828950E-02 1.549346894E-01 -2.822667547E-02
|
||||
7.865366340E-01 5.226833373E-02 1.582402289E-01 -2.872746997E-02
|
||||
7.865487337E-01 5.233144015E-02 1.616204083E-01 -2.923435532E-02
|
||||
7.865614295E-01 5.239777640E-02 1.650804132E-01 -2.974781767E-02
|
||||
7.865747809E-01 5.246749893E-02 1.686127037E-01 -3.026599810E-02
|
||||
7.865888476E-01 5.254078656E-02 1.722267270E-01 -3.078965843E-02
|
||||
7.866036296E-01 5.261781812E-02 1.759322882E-01 -3.132055327E-02
|
||||
7.866191268E-01 5.269878358E-02 1.797331572E-01 -3.185882792E-02
|
||||
7.866354585E-01 5.278389156E-02 1.836341321E-01 -3.240473196E-02
|
||||
7.866526246E-01 5.287334695E-02 1.876388043E-01 -3.295832127E-02
|
||||
7.866706848E-01 5.296737328E-02 1.917518377E-01 -3.351978585E-02
|
||||
7.866896391E-01 5.306620896E-02 1.959657669E-01 -3.408684582E-02
|
||||
7.867095470E-01 5.317009240E-02 2.002897710E-01 -3.466024250E-02
|
||||
7.867304683E-01 5.327928439E-02 2.047365457E-01 -3.524188697E-02
|
||||
7.867524624E-01 5.339406058E-02 2.093120217E-01 -3.583201766E-02
|
||||
7.867755890E-01 5.351470038E-02 2.140226215E-01 -3.643084690E-02
|
||||
7.867999077E-01 5.364150926E-02 2.188751996E-01 -3.703868762E-02
|
||||
7.868254781E-01 5.377480015E-02 2.238765061E-01 -3.765586391E-02
|
||||
7.868523598E-01 5.391490087E-02 2.290239930E-01 -3.828031197E-02
|
||||
7.868806124E-01 5.406216532E-02 2.343282402E-01 -3.891315311E-02
|
||||
7.869102955E-01 5.421695858E-02 2.398072779E-01 -3.955671936E-02
|
||||
7.869414687E-01 5.437966064E-02 2.454709709E-01 -4.021159187E-02
|
||||
7.869742513E-01 5.455068126E-02 2.513304949E-01 -4.087845609E-02
|
||||
7.870087624E-01 5.473044515E-02 2.573976219E-01 -4.155802354E-02
|
||||
7.870449424E-01 5.491939560E-02 2.636840641E-01 -4.225103185E-02
|
||||
7.870830297E-01 5.511800572E-02 2.701995373E-01 -4.295630381E-02
|
||||
7.871230841E-01 5.532677099E-02 2.769519687E-01 -4.367495328E-02
|
||||
7.871651649E-01 5.554620549E-02 2.839679420E-01 -4.440986738E-02
|
||||
7.872093916E-01 5.577685311E-02 2.912632525E-01 -4.516202584E-02
|
||||
7.872558832E-01 5.601929501E-02 2.988550365E-01 -4.593248665E-02
|
||||
7.873047590E-01 5.627413094E-02 3.067610562E-01 -4.672231525E-02
|
||||
7.873561382E-01 5.654199421E-02 3.150036335E-01 -4.753290862E-02
|
||||
7.874100804E-01 5.682354793E-02 3.235975504E-01 -4.836315662E-02
|
||||
7.874668837E-01 5.711949244E-02 3.325549364E-01 -4.921439290E-02
|
||||
7.875264883E-01 5.743056908E-02 3.419089317E-01 -5.008969083E-02
|
||||
7.875891924E-01 5.775754526E-02 3.516837060E-01 -5.099032447E-02
|
||||
7.876551151E-01 5.810124055E-02 3.619039059E-01 -5.191756785E-02
|
||||
7.877243757E-01 5.846250057E-02 3.725950122E-01 -5.287269130E-02
|
||||
7.877972126E-01 5.884223059E-02 3.837950528E-01 -5.385786295E-02
|
||||
7.878737450E-01 5.924136937E-02 3.955191374E-01 -5.487107486E-02
|
||||
7.879542112E-01 5.966091156E-02 4.077966213E-01 -5.591470003E-02
|
||||
7.880387306E-01 6.010190398E-02 4.206576049E-01 -5.699092895E-02
|
||||
7.881276608E-01 6.056543812E-02 4.341423810E-01 -5.810159445E-02
|
||||
7.882210612E-01 6.105266884E-02 4.482855201E-01 -5.924800038E-02
|
||||
7.883192897E-01 6.156480312E-02 4.631319642E-01 -6.043203548E-02
|
||||
7.884225249E-01 6.210312247E-02 4.787190855E-01 -6.165489927E-02
|
||||
7.885310054E-01 6.266895682E-02 4.950785637E-01 -6.291390210E-02
|
||||
7.886450291E-01 6.326371431E-02 5.122538805E-01 -6.421180069E-02
|
||||
7.887649536E-01 6.388888508E-02 5.302831531E-01 -6.555021554E-02
|
||||
7.888909578E-01 6.454600394E-02 5.492085814E-01 -6.692972034E-02
|
||||
7.890233994E-01 6.523671746E-02 5.690895915E-01 -6.835187227E-02
|
||||
7.891626358E-01 6.596274674E-02 5.899754167E-01 -6.981710345E-02
|
||||
7.893089652E-01 6.672587991E-02 6.119024158E-01 -7.132454216E-02
|
||||
7.894627452E-01 6.752803177E-02 6.349123716E-01 -7.286795229E-02
|
||||
7.896244526E-01 6.837118417E-02 6.590479016E-01 -7.444867492E-02
|
||||
7.897943854E-01 6.925744563E-02 6.843502522E-01 -7.606630772E-02
|
||||
7.899730206E-01 7.018900663E-02 7.108629346E-01 -7.771845162E-02
|
||||
7.901607752E-01 7.116819173E-02 7.386038899E-01 -7.940038294E-02
|
||||
7.903581262E-01 7.219742984E-02 7.675966024E-01 -8.110722154E-02
|
||||
7.905656099E-01 7.327928394E-02 7.978511453E-01 -8.283247799E-02
|
||||
7.907836437E-01 7.441644371E-02 8.292918205E-01 -8.455307782E-02
|
||||
7.910128832E-01 7.561173290E-02 8.618789315E-01 -8.626343310E-02
|
||||
7.912538052E-01 7.686812431E-02 8.955234289E-01 -8.795019239E-02
|
||||
7.915070057E-01 7.818873972E-02 9.300633669E-01 -8.959327638E-02
|
||||
7.917732000E-01 7.957687229E-02 9.652686119E-01 -9.116762131E-02
|
||||
7.920529842E-01 8.103596419E-02 1.000807285E+00 -9.264150262E-02
|
||||
7.923470736E-01 8.256964386E-02 1.036236525E+00 -9.397645295E-02
|
||||
7.926562428E-01 8.418171853E-02 1.070164680E+00 -9.505601227E-02
|
||||
7.929811478E-01 8.587621152E-02 1.101516843E+00 -9.581509233E-02
|
||||
7.933226824E-01 8.765732497E-02 1.129048347E+00 -9.618441761E-02
|
||||
7.936816812E-01 8.952948451E-02 1.151486158E+00 -9.610301256E-02
|
||||
7.940590382E-01 9.149735421E-02 1.167987585E+00 -9.555020183E-02
|
||||
7.944557071E-01 9.356581420E-02 1.178256989E+00 -9.454587102E-02
|
||||
7.948725820E-01 9.574002028E-02 1.183340073E+00 -9.318900853E-02
|
||||
7.953108549E-01 9.802536666E-02 1.184803486E+00 -9.159142524E-02
|
||||
7.957714796E-01 1.004275456E-01 1.185202479E+00 -8.987573534E-02
|
||||
7.962556481E-01 1.029525176E-01 1.185424685E+00 -8.807224780E-02
|
||||
7.967645526E-01 1.056065708E-01 1.185839772E+00 -8.618637174E-02
|
||||
7.972995043E-01 1.083962992E-01 1.186487794E+00 -8.422306925E-02
|
||||
7.978618145E-01 1.113286316E-01 1.187277794E+00 -8.217886090E-02
|
||||
7.984528542E-01 1.144108698E-01 1.188102245E+00 -8.005055785E-02
|
||||
7.990741134E-01 1.176506728E-01 1.188900232E+00 -7.782832533E-02
|
||||
7.997271419E-01 1.210560948E-01 1.189685106E+00 -7.551430166E-02
|
||||
8.004134893E-01 1.246355996E-01 1.190466762E+00 -7.310599089E-02
|
||||
8.011350036E-01 1.283980906E-01 1.191248894E+00 -7.059933990E-02
|
||||
8.018933535E-01 1.323529184E-01 1.192029238E+00 -6.798376888E-02
|
||||
8.026905060E-01 1.365099102E-01 1.192808032E+00 -6.526339054E-02
|
||||
8.035283685E-01 1.408794224E-01 1.193582058E+00 -6.243496016E-02
|
||||
8.044090867E-01 1.454722881E-01 1.194334984E+00 -5.949348584E-02
|
||||
8.053348064E-01 1.502999514E-01 1.195078969E+00 -5.642896891E-02
|
||||
8.063079119E-01 1.553743929E-01 1.195806980E+00 -5.324671790E-02
|
||||
8.073306680E-01 1.607082486E-01 1.196514964E+00 -4.994059727E-02
|
||||
8.084057570E-01 1.663147658E-01 1.197197199E+00 -4.650289565E-02
|
||||
8.095358014E-01 1.722078919E-01 1.197854757E+00 -4.293859005E-02
|
||||
8.107236624E-01 1.784022748E-01 1.198485613E+00 -3.923813999E-02
|
||||
8.119722009E-01 1.849133074E-01 1.199066758E+00 -3.540033475E-02
|
||||
8.132845163E-01 1.917572021E-01 1.199609876E+00 -3.142763674E-02
|
||||
8.146640062E-01 1.989509314E-01 1.200107455E+00 -2.731109224E-02
|
||||
8.161139488E-01 2.065124214E-01 1.200557828E+00 -2.304961905E-02
|
||||
8.176380396E-01 2.144604474E-01 1.200963497E+00 -1.864097826E-02
|
||||
8.192400336E-01 2.228147835E-01 1.201307535E+00 -1.407939382E-02
|
||||
8.209239244E-01 2.315961719E-01 1.201593995E+00 -9.374571964E-03
|
||||
8.226938844E-01 2.408264875E-01 1.201795459E+00 -4.528902005E-03
|
||||
8.245543242E-01 2.505286336E-01 1.201932907E+00 4.584348644E-04
|
||||
8.265098929E-01 2.607267797E-01 1.201992989E+00 5.591251887E-03
|
||||
8.285654187E-01 2.714462280E-01 1.201977611E+00 1.086856518E-02
|
||||
8.307260275E-01 2.827136815E-01 1.201876879E+00 1.628905721E-02
|
||||
8.329970837E-01 2.945571244E-01 1.201693416E+00 2.183992974E-02
|
||||
8.353842497E-01 3.070059717E-01 1.201417446E+00 2.752682008E-02
|
||||
8.378934264E-01 3.200912178E-01 1.201024175E+00 3.330706805E-02
|
||||
8.405308723E-01 3.338454068E-01 1.200524449E+00 3.920864314E-02
|
@ -0,0 +1,201 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# x = x/c
|
||||
# y = y/c
|
||||
# u = (u/Uinf)/0.93
|
||||
# v = (v/Uinf)/0.93
|
||||
# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil)
|
||||
# VARIABLES = "x","y","u","v"
|
||||
# ZONE T="x=.8418"
|
||||
8.417999744E-01 3.950987384E-02 -7.242422726E-05 1.578376759E-05
|
||||
8.418003917E-01 3.951183334E-02 -4.236457171E-04 9.248973947E-05
|
||||
8.418008089E-01 3.951379657E-02 -7.710267091E-04 1.682531292E-04
|
||||
8.418012261E-01 3.951577097E-02 -1.120937639E-03 2.447016595E-04
|
||||
8.418016434E-01 3.951775655E-02 -1.465842593E-03 3.199246712E-04
|
||||
8.418020606E-01 3.951976448E-02 -1.814891701E-03 3.962187911E-04
|
||||
8.418024778E-01 3.952179849E-02 -2.160059987E-03 4.714989627E-04
|
||||
8.418028951E-01 3.952385858E-02 -2.512595616E-03 5.485860747E-04
|
||||
8.418033123E-01 3.952595592E-02 -2.861969173E-03 6.248078425E-04
|
||||
8.418037295E-01 3.952809423E-02 -3.221262014E-03 7.033673464E-04
|
||||
8.418042064E-01 3.953027725E-02 -3.579878248E-03 7.816692232E-04
|
||||
8.418046832E-01 3.953250870E-02 -3.946958575E-03 8.619085420E-04
|
||||
8.418051600E-01 3.953479603E-02 -4.315380938E-03 9.424286545E-04
|
||||
8.418056369E-01 3.953715041E-02 -4.691571929E-03 1.024633297E-03
|
||||
8.418061137E-01 3.953956813E-02 -5.074231420E-03 1.108352561E-03
|
||||
8.418066502E-01 3.954206035E-02 -5.461205263E-03 1.192889176E-03
|
||||
8.418071866E-01 3.954463452E-02 -5.862443242E-03 1.280716504E-03
|
||||
8.418077230E-01 3.954729065E-02 -6.264599506E-03 1.368669444E-03
|
||||
8.418082595E-01 3.955004364E-02 -6.677811034E-03 1.459065592E-03
|
||||
8.418088555E-01 3.955289721E-02 -7.103777025E-03 1.552368631E-03
|
||||
8.418094516E-01 3.955585510E-02 -7.531334180E-03 1.645903219E-03
|
||||
8.418101072E-01 3.955892846E-02 -7.975848392E-03 1.743261120E-03
|
||||
8.418107629E-01 3.956212476E-02 -8.427766152E-03 1.842312049E-03
|
||||
8.418114185E-01 3.956544772E-02 -8.884936571E-03 1.942432369E-03
|
||||
8.418121338E-01 3.956891224E-02 -9.360850789E-03 2.046773443E-03
|
||||
8.418129086E-01 3.957252204E-02 -9.846172296E-03 2.153275535E-03
|
||||
8.418136835E-01 3.957628831E-02 -1.033495087E-02 2.260465873E-03
|
||||
8.418145180E-01 3.958021849E-02 -1.083831210E-02 2.370940056E-03
|
||||
8.418153524E-01 3.958432376E-02 -1.135393418E-02 2.484242665E-03
|
||||
8.418162465E-01 3.958861530E-02 -1.187456399E-02 2.598674037E-03
|
||||
8.418171406E-01 3.959310427E-02 -1.240181457E-02 2.714584116E-03
|
||||
8.418180943E-01 3.959779814E-02 -1.294442173E-02 2.834007610E-03
|
||||
8.418191075E-01 3.960270807E-02 -1.349374093E-02 2.955057425E-03
|
||||
8.418201804E-01 3.960785270E-02 -1.404481567E-02 3.076575231E-03
|
||||
8.418213129E-01 3.961323947E-02 -1.459838450E-02 3.198738443E-03
|
||||
8.418224454E-01 3.961888328E-02 -1.515876409E-02 3.322576173E-03
|
||||
8.418236971E-01 3.962479532E-02 -1.572688110E-02 3.448335920E-03
|
||||
8.418249488E-01 3.963099793E-02 -1.628655568E-02 3.572468413E-03
|
||||
8.418262601E-01 3.963749856E-02 -1.683534309E-02 3.694381099E-03
|
||||
8.418276906E-01 3.964431956E-02 -1.737948321E-02 3.815542441E-03
|
||||
8.418291807E-01 3.965147212E-02 -1.792053320E-02 3.936346155E-03
|
||||
8.418307304E-01 3.965897486E-02 -1.844838075E-02 4.054611083E-03
|
||||
8.418323398E-01 3.966685385E-02 -1.894934475E-02 4.167402629E-03
|
||||
8.418340087E-01 3.967511654E-02 -1.941438206E-02 4.272712860E-03
|
||||
8.418357968E-01 3.968379647E-02 -1.984909922E-02 4.371876363E-03
|
||||
8.418377042E-01 3.969290480E-02 -2.024946548E-02 4.464067053E-03
|
||||
8.418396711E-01 3.970246762E-02 -2.061428316E-02 4.549058620E-03
|
||||
8.418417573E-01 3.971251100E-02 -2.090975642E-02 4.619635642E-03
|
||||
8.418439031E-01 3.972306103E-02 -2.112990618E-02 4.674520809E-03
|
||||
8.418461680E-01 3.973413631E-02 -2.126334049E-02 4.711328540E-03
|
||||
8.418486118E-01 3.974577039E-02 -2.130639926E-02 4.729368258E-03
|
||||
8.418511152E-01 3.975799307E-02 -2.125240490E-02 4.727240652E-03
|
||||
8.418537378E-01 3.977083042E-02 -2.109415270E-02 4.703436978E-03
|
||||
8.418565392E-01 3.978431970E-02 -2.078088187E-02 4.647247959E-03
|
||||
8.418594599E-01 3.979848698E-02 -2.030926757E-02 4.558016546E-03
|
||||
8.418624997E-01 3.981337324E-02 -1.966379024E-02 4.432579037E-03
|
||||
8.418657184E-01 3.982901573E-02 -1.884742826E-02 4.271670710E-03
|
||||
8.418691158E-01 3.984545171E-02 -1.785480604E-02 4.074271303E-03
|
||||
8.418726921E-01 3.986271843E-02 -1.670189388E-02 3.843786893E-03
|
||||
8.418764472E-01 3.988086805E-02 -1.536300872E-02 3.575106617E-03
|
||||
8.418803215E-01 3.989993408E-02 -1.385865081E-02 3.272855654E-03
|
||||
8.418844938E-01 3.991997242E-02 -1.220179442E-02 2.940219827E-03
|
||||
8.418887854E-01 3.994103149E-02 -1.043828484E-02 2.587026451E-03
|
||||
8.418933749E-01 3.996316344E-02 -8.594368584E-03 2.219119109E-03
|
||||
8.418981433E-01 3.998642042E-02 -6.704430096E-03 1.843897626E-03
|
||||
8.419032097E-01 4.001086205E-02 -4.790461622E-03 1.466247486E-03
|
||||
8.419085145E-01 4.003654793E-02 -2.885529073E-03 1.093801344E-03
|
||||
8.419140577E-01 4.006354511E-02 -9.905216284E-04 7.268181071E-04
|
||||
8.419198990E-01 4.009192064E-02 8.975161472E-04 3.649334249E-04
|
||||
8.419260383E-01 4.012174159E-02 2.768506296E-03 1.020406762E-05
|
||||
8.419324756E-01 4.015308246E-02 4.624560941E-03 -3.376777750E-04
|
||||
8.419392705E-01 4.018602520E-02 6.466947030E-03 -6.789959152E-04
|
||||
8.419464231E-01 4.022064433E-02 8.302666247E-03 -1.015045447E-03
|
||||
8.419538736E-01 4.025703669E-02 1.012772322E-02 -1.344433753E-03
|
||||
8.419618011E-01 4.029528052E-02 1.197381970E-02 -1.673760940E-03
|
||||
8.419700861E-01 4.033548012E-02 1.384651568E-02 -2.004064154E-03
|
||||
8.419787884E-01 4.037773237E-02 1.575042121E-02 -2.336241771E-03
|
||||
8.419879079E-01 4.042214528E-02 1.769294590E-02 -2.671616618E-03
|
||||
8.419975042E-01 4.046882316E-02 1.967678592E-02 -3.010756569E-03
|
||||
8.420076370E-01 4.051788524E-02 2.170943841E-02 -3.354800865E-03
|
||||
8.420182467E-01 4.056945443E-02 2.379319444E-02 -3.703641938E-03
|
||||
8.420293927E-01 4.062365741E-02 2.594630979E-02 -4.060704261E-03
|
||||
8.420411348E-01 4.068062827E-02 2.817040309E-02 -4.426152445E-03
|
||||
8.420534730E-01 4.074051231E-02 3.046825901E-02 -4.800304305E-03
|
||||
8.420664668E-01 4.080345482E-02 3.284409270E-02 -5.183643196E-03
|
||||
8.420800567E-01 4.086961225E-02 3.529731557E-02 -5.575990304E-03
|
||||
8.420944214E-01 4.093915224E-02 3.783259541E-02 -5.977586377E-03
|
||||
8.421094418E-01 4.101224244E-02 4.045036435E-02 -6.387752015E-03
|
||||
8.421252966E-01 4.108907282E-02 4.316687956E-02 -6.809012499E-03
|
||||
8.421419263E-01 4.116982594E-02 4.597835988E-02 -7.240595296E-03
|
||||
8.421593904E-01 4.125470668E-02 4.888811707E-02 -7.682613563E-03
|
||||
8.421778083E-01 4.134392738E-02 5.189988762E-02 -8.135197684E-03
|
||||
8.421971202E-01 4.143770784E-02 5.501314253E-02 -8.597997949E-03
|
||||
8.422173858E-01 4.153627902E-02 5.822854117E-02 -9.070239961E-03
|
||||
8.422387242E-01 4.163989052E-02 6.154971942E-02 -9.551287629E-03
|
||||
8.422611952E-01 4.174879566E-02 6.499076635E-02 -1.004316565E-02
|
||||
8.422847390E-01 4.186327010E-02 6.855013967E-02 -1.054533757E-02
|
||||
8.423095345E-01 4.198359326E-02 7.223265618E-02 -1.105787326E-02
|
||||
8.423355818E-01 4.211006686E-02 7.604292780E-02 -1.158080623E-02
|
||||
8.423629999E-01 4.224300757E-02 7.998389006E-02 -1.211405173E-02
|
||||
8.423917890E-01 4.238273948E-02 8.405421674E-02 -1.265625749E-02
|
||||
8.424220085E-01 4.252961650E-02 8.826460689E-02 -1.320727915E-02
|
||||
8.424538374E-01 4.268399999E-02 9.262987226E-02 -1.376935933E-02
|
||||
8.424872160E-01 4.284627736E-02 9.715406597E-02 -1.434254553E-02
|
||||
8.425223827E-01 4.301685095E-02 1.018461660E-01 -1.492725499E-02
|
||||
8.425592780E-01 4.319614172E-02 1.067147925E-01 -1.552387699E-02
|
||||
8.425981402E-01 4.338459671E-02 1.117699295E-01 -1.613293774E-02
|
||||
8.426389098E-01 4.358268529E-02 1.170110032E-01 -1.675312035E-02
|
||||
8.426818252E-01 4.379089922E-02 1.224640980E-01 -1.738553867E-02
|
||||
8.427268863E-01 4.400976002E-02 1.281421781E-01 -1.803258061E-02
|
||||
8.427742720E-01 4.423980415E-02 1.340584755E-01 -1.869502291E-02
|
||||
8.428241014E-01 4.448161274E-02 1.402283460E-01 -1.937379129E-02
|
||||
8.428764343E-01 4.473577812E-02 1.466674805E-01 -2.006980963E-02
|
||||
8.429314494E-01 4.500293732E-02 1.533932090E-01 -2.078409120E-02
|
||||
8.429893255E-01 4.528375715E-02 1.604202837E-01 -2.151605673E-02
|
||||
8.430501223E-01 4.557892680E-02 1.677743047E-01 -2.226711996E-02
|
||||
8.431140184E-01 4.588919133E-02 1.754770428E-01 -2.303998917E-02
|
||||
8.431811929E-01 4.621531069E-02 1.835489422E-01 -2.383562177E-02
|
||||
8.432518244E-01 4.655810446E-02 1.920133233E-01 -2.465520613E-02
|
||||
8.433260322E-01 4.691842198E-02 2.008943558E-01 -2.549991757E-02
|
||||
8.434040546E-01 4.729716107E-02 2.102195770E-01 -2.637102455E-02
|
||||
8.434860706E-01 4.769525677E-02 2.200280726E-01 -2.726846375E-02
|
||||
8.435722589E-01 4.811370745E-02 2.303299159E-01 -2.819275856E-02
|
||||
8.436628580E-01 4.855354503E-02 2.411625087E-01 -2.914692648E-02
|
||||
8.437580466E-01 4.901587218E-02 2.525602877E-01 -3.013227135E-02
|
||||
8.438581824E-01 4.950182885E-02 2.645575702E-01 -3.114997409E-02
|
||||
8.439633846E-01 5.001262948E-02 2.771905065E-01 -3.220125288E-02
|
||||
8.440739512E-01 5.054954439E-02 2.905139029E-01 -3.328796849E-02
|
||||
8.441902399E-01 5.111390352E-02 3.045584261E-01 -3.440836817E-02
|
||||
8.443124294E-01 5.170711502E-02 3.193671107E-01 -3.556387872E-02
|
||||
8.444408774E-01 5.233065411E-02 3.349729776E-01 -3.675676882E-02
|
||||
8.445758820E-01 5.298606679E-02 3.514255285E-01 -3.798803315E-02
|
||||
8.447177410E-01 5.367498472E-02 3.687815070E-01 -3.925880417E-02
|
||||
8.448669314E-01 5.439911783E-02 3.871069252E-01 -4.057034850E-02
|
||||
8.450236917E-01 5.516027287E-02 4.064387679E-01 -4.192255437E-02
|
||||
8.451884985E-01 5.596033484E-02 4.268443584E-01 -4.331212118E-02
|
||||
8.453617096E-01 5.680130050E-02 4.483782649E-01 -4.473970085E-02
|
||||
8.455438018E-01 5.768525600E-02 4.710918665E-01 -4.620696604E-02
|
||||
8.457351923E-01 5.861439928E-02 4.950571954E-01 -4.771368206E-02
|
||||
8.459363580E-01 5.959104002E-02 5.203253031E-01 -4.925825074E-02
|
||||
8.461478353E-01 6.061761081E-02 5.469473004E-01 -5.083855242E-02
|
||||
8.463701010E-01 6.169665605E-02 5.749881268E-01 -5.245250091E-02
|
||||
8.466036916E-01 6.283086538E-02 6.045084596E-01 -5.408938229E-02
|
||||
8.468492627E-01 6.402305514E-02 6.355501413E-01 -5.574645847E-02
|
||||
8.471074104E-01 6.527619064E-02 6.681514382E-01 -5.742147192E-02
|
||||
8.473787308E-01 6.659339368E-02 7.023184299E-01 -5.910643563E-02
|
||||
8.476639390E-01 6.797792763E-02 7.380533218E-01 -6.079222262E-02
|
||||
8.479636908E-01 6.943324208E-02 7.753345370E-01 -6.246886402E-02
|
||||
8.482787609E-01 7.096295059E-02 8.141003251E-01 -6.412167102E-02
|
||||
8.486099839E-01 7.257086039E-02 8.540855050E-01 -6.571077555E-02
|
||||
8.489581347E-01 7.426096499E-02 8.950034380E-01 -6.721686572E-02
|
||||
8.493240476E-01 7.603747398E-02 9.364776611E-01 -6.861530989E-02
|
||||
8.497086763E-01 7.790479809E-02 9.778643847E-01 -6.986200064E-02
|
||||
8.501129746E-01 7.986757904E-02 1.018096685E+00 -7.089145482E-02
|
||||
8.505379558E-01 8.193069696E-02 1.055869341E+00 -7.163347304E-02
|
||||
8.509846330E-01 8.409929276E-02 1.089552999E+00 -7.201136649E-02
|
||||
8.514541388E-01 8.637873828E-02 1.115861654E+00 -7.189004868E-02
|
||||
8.519476652E-01 8.877471834E-02 1.134212136E+00 -7.132364064E-02
|
||||
8.524664640E-01 9.129317850E-02 1.145586967E+00 -7.041767240E-02
|
||||
8.530117273E-01 9.394039214E-02 1.151507139E+00 -6.926812232E-02
|
||||
8.535848856E-01 9.672292322E-02 1.153804421E+00 -6.795272976E-02
|
||||
8.541873097E-01 9.964770824E-02 1.154285669E+00 -6.652014703E-02
|
||||
8.548205495E-01 1.027220041E-01 1.154392958E+00 -6.499584764E-02
|
||||
8.554862142E-01 1.059534624E-01 1.154850364E+00 -6.337758899E-02
|
||||
8.561858535E-01 1.093501225E-01 1.155631542E+00 -6.166452914E-02
|
||||
8.569212556E-01 1.129204109E-01 1.156573057E+00 -5.985390022E-02
|
||||
8.576942682E-01 1.166732237E-01 1.157562613E+00 -5.795050785E-02
|
||||
8.585067987E-01 1.206178814E-01 1.158540487E+00 -5.595181510E-02
|
||||
8.593608737E-01 1.247641966E-01 1.159489512E+00 -5.384710059E-02
|
||||
8.602585793E-01 1.291224658E-01 1.160419464E+00 -5.163650215E-02
|
||||
8.612022400E-01 1.337035447E-01 1.161334515E+00 -4.931143671E-02
|
||||
8.621940613E-01 1.385188103E-01 1.162248731E+00 -4.686165974E-02
|
||||
8.632366657E-01 1.435802281E-01 1.163160801E+00 -4.428955540E-02
|
||||
8.643324971E-01 1.489003897E-01 1.164064646E+00 -4.158884287E-02
|
||||
8.654843569E-01 1.544925272E-01 1.164957166E+00 -3.875249624E-02
|
||||
8.666951656E-01 1.603705436E-01 1.165836453E+00 -3.578102589E-02
|
||||
8.679677844E-01 1.665490568E-01 1.166703463E+00 -3.266303986E-02
|
||||
8.693055511E-01 1.730434000E-01 1.167539954E+00 -2.939756960E-02
|
||||
8.707116246E-01 1.798697561E-01 1.168354630E+00 -2.598191053E-02
|
||||
8.721896410E-01 1.870450675E-01 1.169147849E+00 -2.241009101E-02
|
||||
8.737431765E-01 1.945872009E-01 1.169916868E+00 -1.868238859E-02
|
||||
8.753761649E-01 2.025148869E-01 1.170657158E+00 -1.479528844E-02
|
||||
8.770925999E-01 2.108478397E-01 1.171370149E+00 -1.074816193E-02
|
||||
8.788967729E-01 2.196067870E-01 1.172048926E+00 -6.534857210E-03
|
||||
8.807932138E-01 2.288134992E-01 1.172674417E+00 -2.167258877E-03
|
||||
8.827865720E-01 2.384908646E-01 1.173261762E+00 2.361478284E-03
|
||||
8.848817945E-01 2.486629486E-01 1.173804879E+00 7.046997081E-03
|
||||
8.870841861E-01 2.593550384E-01 1.174302220E+00 1.189018413E-02
|
||||
8.893991709E-01 2.705937028E-01 1.174744964E+00 1.688923500E-02
|
||||
8.918324709E-01 2.824069262E-01 1.175136685E+00 2.203599177E-02
|
||||
8.943901658E-01 2.948240042E-01 1.175462842E+00 2.732636966E-02
|
||||
8.970786333E-01 3.078759015E-01 1.175703406E+00 3.273636848E-02
|
||||
8.999045491E-01 3.215950131E-01 1.175871253E+00 3.827232495E-02
|
@ -0,0 +1,201 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# x = x/c
|
||||
# y = y/c
|
||||
# u = (u/Uinf)/0.93
|
||||
# v = (v/Uinf)/0.93
|
||||
# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil)
|
||||
# VARIABLES = "x","y","u","v"
|
||||
# ZONE T="x=.8973"
|
||||
8.973000050E-01 2.680198476E-02 -4.771555177E-05 1.145582792E-05
|
||||
8.973004222E-01 2.680393495E-02 -4.993027542E-04 1.197541933E-04
|
||||
8.973008990E-01 2.680588886E-02 -9.544482455E-04 2.289641707E-04
|
||||
8.973013163E-01 2.680785395E-02 -1.406369964E-03 3.373304789E-04
|
||||
8.973017931E-01 2.680983208E-02 -1.863583224E-03 4.470541026E-04
|
||||
8.973022699E-01 2.681183070E-02 -2.322176937E-03 5.570055800E-04
|
||||
8.973026872E-01 2.681385353E-02 -2.782907337E-03 6.675950717E-04
|
||||
8.973031640E-01 2.681590617E-02 -3.251580754E-03 7.799449377E-04
|
||||
8.973036408E-01 2.681799233E-02 -3.726293333E-03 8.939190884E-04
|
||||
8.973041773E-01 2.682011947E-02 -4.210042767E-03 1.009884174E-03
|
||||
8.973046541E-01 2.682229131E-02 -4.699908663E-03 1.127477619E-03
|
||||
8.973051310E-01 2.682451345E-02 -5.199416541E-03 1.247257227E-03
|
||||
8.973056674E-01 2.682679333E-02 -5.710686557E-03 1.369941514E-03
|
||||
8.973062038E-01 2.682913281E-02 -6.233549211E-03 1.495383447E-03
|
||||
8.973067403E-01 2.683154121E-02 -6.767664570E-03 1.623490010E-03
|
||||
8.973073363E-01 2.683402225E-02 -7.319395896E-03 1.755935256E-03
|
||||
8.973079324E-01 2.683658339E-02 -7.885102183E-03 1.891586347E-03
|
||||
8.973085284E-01 2.683923021E-02 -8.466660976E-03 2.031174256E-03
|
||||
8.973091245E-01 2.684197016E-02 -9.065865539E-03 2.174941823E-03
|
||||
8.973097801E-01 2.684481069E-02 -9.684916586E-03 2.323422814E-03
|
||||
8.973104954E-01 2.684775554E-02 -1.032583602E-02 2.477305243E-03
|
||||
8.973111510E-01 2.685081586E-02 -1.098352112E-02 2.635077341E-03
|
||||
8.973119259E-01 2.685399726E-02 -1.166880876E-02 2.799490234E-03
|
||||
8.973126411E-01 2.685730904E-02 -1.237479877E-02 2.969001420E-03
|
||||
8.973134756E-01 2.686075866E-02 -1.310998201E-02 3.145391587E-03
|
||||
8.973142505E-01 2.686435357E-02 -1.386376005E-02 3.326238832E-03
|
||||
8.973151445E-01 2.686810307E-02 -1.465211343E-02 3.515537130E-03
|
||||
8.973160386E-01 2.687201835E-02 -1.546890382E-02 3.711587982E-03
|
||||
8.973169923E-01 2.687610686E-02 -1.631480269E-02 3.914569505E-03
|
||||
8.973179460E-01 2.688037977E-02 -1.718926989E-02 4.124501254E-03
|
||||
8.973189592E-01 2.688484825E-02 -1.809993573E-02 4.343206063E-03
|
||||
8.973200321E-01 2.688952349E-02 -1.904701442E-02 4.570544232E-03
|
||||
8.973211646E-01 2.689441666E-02 -2.002658136E-02 4.805680830E-03
|
||||
8.973223567E-01 2.689953893E-02 -2.104337513E-02 5.049859174E-03
|
||||
8.973235488E-01 2.690490521E-02 -2.209735475E-02 5.303054117E-03
|
||||
8.973248601E-01 2.691052668E-02 -2.319333516E-02 5.566269159E-03
|
||||
8.973261714E-01 2.691642009E-02 -2.432751097E-02 5.838640500E-03
|
||||
8.973276019E-01 2.692259662E-02 -2.550149523E-02 6.120622624E-03
|
||||
8.973290920E-01 2.692907304E-02 -2.671935782E-02 6.413322873E-03
|
||||
8.973306417E-01 2.693586610E-02 -2.798092552E-02 6.716571748E-03
|
||||
8.973322511E-01 2.694299258E-02 -2.928518318E-02 7.030004635E-03
|
||||
8.973339796E-01 2.695047110E-02 -3.063380346E-02 7.354153320E-03
|
||||
8.973357677E-01 2.695831843E-02 -3.202211112E-02 7.687923498E-03
|
||||
8.973376751E-01 2.696655318E-02 -3.345897049E-02 8.033588529E-03
|
||||
8.973396420E-01 2.697519958E-02 -3.494025022E-02 8.390043862E-03
|
||||
8.973417282E-01 2.698427625E-02 -3.646525368E-02 8.757049218E-03
|
||||
8.973439336E-01 2.699380741E-02 -3.803467751E-02 9.134807624E-03
|
||||
8.973461986E-01 2.700381540E-02 -3.963647410E-02 9.520540945E-03
|
||||
8.973485827E-01 2.701432630E-02 -4.127786309E-02 9.916027077E-03
|
||||
8.973511457E-01 2.702536434E-02 -4.296073318E-02 1.032182574E-02
|
||||
8.973537683E-01 2.703695931E-02 -4.467640817E-02 1.073577348E-02
|
||||
8.973565698E-01 2.704913914E-02 -4.642220587E-02 1.115717553E-02
|
||||
8.973594904E-01 2.706193365E-02 -4.819149897E-02 1.158453431E-02
|
||||
8.973625898E-01 2.707537636E-02 -4.996500537E-02 1.201338507E-02
|
||||
8.973658085E-01 2.708949894E-02 -5.174296349E-02 1.244382281E-02
|
||||
8.973692060E-01 2.710433677E-02 -5.352432281E-02 1.287578046E-02
|
||||
8.973727822E-01 2.711992711E-02 -5.529298261E-02 1.330534089E-02
|
||||
8.973765373E-01 2.713630907E-02 -5.703230947E-02 1.372855809E-02
|
||||
8.973804712E-01 2.715352364E-02 -5.872315168E-02 1.414092258E-02
|
||||
8.973845840E-01 2.717161179E-02 -6.033696979E-02 1.453585364E-02
|
||||
8.973889351E-01 2.719062194E-02 -6.184389070E-02 1.490637287E-02
|
||||
8.973935246E-01 2.721059695E-02 -6.324317306E-02 1.525239833E-02
|
||||
8.973983526E-01 2.723159082E-02 -6.451503187E-02 1.556931343E-02
|
||||
8.974033594E-01 2.725365385E-02 -6.563524902E-02 1.585141011E-02
|
||||
8.974086642E-01 2.727684006E-02 -6.658013910E-02 1.609318703E-02
|
||||
8.974142671E-01 2.730120905E-02 -6.734275818E-02 1.629316807E-02
|
||||
8.974201083E-01 2.732681856E-02 -6.788506359E-02 1.644255966E-02
|
||||
8.974263072E-01 2.735373750E-02 -6.824038178E-02 1.654937491E-02
|
||||
8.974327445E-01 2.738202736E-02 -6.843531877E-02 1.661996543E-02
|
||||
8.974395990E-01 2.741176262E-02 -6.847936660E-02 1.665674523E-02
|
||||
8.974467516E-01 2.744301409E-02 -6.838446856E-02 1.666267030E-02
|
||||
8.974542618E-01 2.747586183E-02 -6.816309690E-02 1.664092764E-02
|
||||
8.974621296E-01 2.751038596E-02 -6.783687323E-02 1.659669913E-02
|
||||
8.974704742E-01 2.754667401E-02 -6.740797311E-02 1.653083228E-02
|
||||
8.974791765E-01 2.758481540E-02 -6.690272689E-02 1.644952595E-02
|
||||
8.974883556E-01 2.762490511E-02 -6.633067876E-02 1.635507494E-02
|
||||
8.974980116E-01 2.766704373E-02 -6.569237262E-02 1.624783874E-02
|
||||
8.975081444E-01 2.771133557E-02 -6.498748809E-02 1.612800919E-02
|
||||
8.975188136E-01 2.775789052E-02 -6.421613693E-02 1.599585824E-02
|
||||
8.975300193E-01 2.780682407E-02 -6.338016689E-02 1.585193723E-02
|
||||
8.975417614E-01 2.785825916E-02 -6.247484311E-02 1.569550298E-02
|
||||
8.975541592E-01 2.791232243E-02 -6.150236353E-02 1.552716270E-02
|
||||
8.975671530E-01 2.796914987E-02 -6.046321988E-02 1.534709148E-02
|
||||
8.975808024E-01 2.802888118E-02 -5.935269594E-02 1.515453681E-02
|
||||
8.975951672E-01 2.809166722E-02 -5.816427991E-02 1.494849287E-02
|
||||
8.976103067E-01 2.815766446E-02 -5.689582974E-02 1.472873427E-02
|
||||
8.976261616E-01 2.822703496E-02 -5.554567650E-02 1.449510641E-02
|
||||
8.976428509E-01 2.829995193E-02 -5.410831049E-02 1.424693130E-02
|
||||
8.976604342E-01 2.837659605E-02 -5.258376524E-02 1.398436259E-02
|
||||
8.976788521E-01 2.845716104E-02 -5.097160116E-02 1.370747201E-02
|
||||
8.976982236E-01 2.854184620E-02 -4.926770180E-02 1.341578923E-02
|
||||
8.977186084E-01 2.863086015E-02 -4.746347293E-02 1.310828142E-02
|
||||
8.977400064E-01 2.872442640E-02 -4.555944726E-02 1.278525405E-02
|
||||
8.977625370E-01 2.882277966E-02 -4.355259985E-02 1.244659629E-02
|
||||
8.977862000E-01 2.892616019E-02 -4.144047201E-02 1.209257916E-02
|
||||
8.978110552E-01 2.903482877E-02 -3.922089189E-02 1.172297075E-02
|
||||
8.978372216E-01 2.914905362E-02 -3.689230606E-02 1.133787073E-02
|
||||
8.978646994E-01 2.926912159E-02 -3.445192799E-02 1.093725022E-02
|
||||
8.978936076E-01 2.939532883E-02 -3.189131990E-02 1.052054018E-02
|
||||
8.979239464E-01 2.952799201E-02 -2.921122126E-02 1.008822024E-02
|
||||
8.979558945E-01 2.966743894E-02 -2.640886232E-02 9.640666656E-03
|
||||
8.979893923E-01 2.981401980E-02 -2.348390408E-02 9.179055691E-03
|
||||
8.980246782E-01 2.996809594E-02 -2.043056116E-02 8.702498861E-03
|
||||
8.980617523E-01 3.013005294E-02 -1.724514551E-02 8.211117238E-03
|
||||
8.981007338E-01 3.030029312E-02 -1.392415725E-02 7.705038413E-03
|
||||
8.981416821E-01 3.047923930E-02 -1.046078652E-02 7.184183691E-03
|
||||
8.981847167E-01 3.066734038E-02 -6.851178594E-03 6.648659240E-03
|
||||
8.982300162E-01 3.086506017E-02 -3.091179300E-03 6.099138409E-03
|
||||
8.982775807E-01 3.107289411E-02 8.228528313E-04 5.536815617E-03
|
||||
8.983275890E-01 3.129135817E-02 4.903591704E-03 4.959572107E-03
|
||||
8.983801007E-01 3.152099252E-02 9.161534719E-03 4.366959445E-03
|
||||
8.984353542E-01 3.176237643E-02 1.360891201E-02 3.758366685E-03
|
||||
8.984934688E-01 3.201610595E-02 1.825011522E-02 3.133472521E-03
|
||||
8.985545039E-01 3.228281066E-02 2.310092375E-02 2.491416177E-03
|
||||
8.986186385E-01 3.256316110E-02 2.817438729E-02 1.832217909E-03
|
||||
8.986861110E-01 3.285784647E-02 3.348601609E-02 1.155976439E-03
|
||||
8.987570405E-01 3.316760808E-02 3.905562311E-02 4.596301587E-04
|
||||
8.988315463E-01 3.349320963E-02 4.491058737E-02 -2.582433517E-04
|
||||
8.989098668E-01 3.383547068E-02 5.106254667E-02 -9.985660436E-04
|
||||
8.989922404E-01 3.419523314E-02 5.752998963E-02 -1.762489090E-03
|
||||
8.990787864E-01 3.457339853E-02 6.433264166E-02 -2.551233862E-03
|
||||
8.991697431E-01 3.497090563E-02 7.150192559E-02 -3.365361365E-03
|
||||
8.992654085E-01 3.538874909E-02 7.906910032E-02 -4.205409437E-03
|
||||
8.993659616E-01 3.582796082E-02 8.707220107E-02 -5.074826069E-03
|
||||
8.994716406E-01 3.628963605E-02 9.553006291E-02 -5.974610802E-03
|
||||
8.995826840E-01 3.677492961E-02 1.044747531E-01 -6.906094495E-03
|
||||
8.996994495E-01 3.728504479E-02 1.139407083E-01 -7.870590314E-03
|
||||
8.998221755E-01 3.782124817E-02 1.239644587E-01 -8.869396523E-03
|
||||
8.999512196E-01 3.838488087E-02 1.345902085E-01 -9.902575985E-03
|
||||
9.000868201E-01 3.897734359E-02 1.458865702E-01 -1.097090915E-02
|
||||
9.002293348E-01 3.960010782E-02 1.578770727E-01 -1.207719464E-02
|
||||
9.003791809E-01 4.025473073E-02 1.706071645E-01 -1.322217472E-02
|
||||
9.005366564E-01 4.094283283E-02 1.841276586E-01 -1.440677885E-02
|
||||
9.007022381E-01 4.166613147E-02 1.984930634E-01 -1.563186385E-02
|
||||
9.008762836E-01 4.242642596E-02 2.137792557E-01 -1.689832844E-02
|
||||
9.010591507E-01 4.322560877E-02 2.300540358E-01 -1.820458472E-02
|
||||
9.012514353E-01 4.406566918E-02 2.473911941E-01 -1.954940893E-02
|
||||
9.014535546E-01 4.494870082E-02 2.658344209E-01 -2.093546838E-02
|
||||
9.016660452E-01 4.587689787E-02 2.854475975E-01 -2.236248553E-02
|
||||
9.018893242E-01 4.685257003E-02 3.063287735E-01 -2.383007295E-02
|
||||
9.021241069E-01 4.787814617E-02 3.285513222E-01 -2.533731423E-02
|
||||
9.023708105E-01 4.895618185E-02 3.521876037E-01 -2.688296139E-02
|
||||
9.026302099E-01 5.008935928E-02 3.773518503E-01 -2.846121229E-02
|
||||
9.029028416E-01 5.128049478E-02 4.041396677E-01 -3.006730601E-02
|
||||
9.031894207E-01 5.253255740E-02 4.326296747E-01 -3.170273453E-02
|
||||
9.034906626E-01 5.384866521E-02 4.628791511E-01 -3.336365148E-02
|
||||
9.038073421E-01 5.523208529E-02 4.949682653E-01 -3.504559025E-02
|
||||
9.041401744E-01 5.668627098E-02 5.289817452E-01 -3.674450517E-02
|
||||
9.044900537E-01 5.821483582E-02 5.649995804E-01 -3.845211864E-02
|
||||
9.048578143E-01 5.982158706E-02 6.030976176E-01 -4.015090689E-02
|
||||
9.052444100E-01 6.151052192E-02 6.432717443E-01 -4.182725772E-02
|
||||
9.056507349E-01 6.328584254E-02 6.854920983E-01 -4.347782582E-02
|
||||
9.060778618E-01 6.515197456E-02 7.297167182E-01 -4.508745670E-02
|
||||
9.065268636E-01 6.711355597E-02 7.758169174E-01 -4.663786292E-02
|
||||
9.069988132E-01 6.917546690E-02 8.235635161E-01 -4.810755700E-02
|
||||
9.074949026E-01 7.134284824E-02 8.726020455E-01 -4.946869612E-02
|
||||
9.080163240E-01 7.362108678E-02 9.219199419E-01 -5.065112934E-02
|
||||
9.085645080E-01 7.601585984E-02 9.698850513E-01 -5.157563090E-02
|
||||
9.091406465E-01 7.853312045E-02 1.014803052E+00 -5.218906701E-02
|
||||
9.097462893E-01 8.117914200E-02 1.054447174E+00 -5.242966115E-02
|
||||
9.103829265E-01 8.396050334E-02 1.086676717E+00 -5.227099359E-02
|
||||
9.110521078E-01 8.688412607E-02 1.110342026E+00 -5.174497142E-02
|
||||
9.117555022E-01 8.995729685E-02 1.125081539E+00 -5.092252046E-02
|
||||
9.124948978E-01 9.318765253E-02 1.131447315E+00 -4.989552498E-02
|
||||
9.132721424E-01 9.658323973E-02 1.133359790E+00 -4.875631630E-02
|
||||
9.140890837E-01 1.001525149E-01 1.133469462E+00 -4.751718417E-02
|
||||
9.149478674E-01 1.039043516E-01 1.133120656E+00 -4.616335779E-02
|
||||
9.158505201E-01 1.078480929E-01 1.133012772E+00 -4.468433186E-02
|
||||
9.167993665E-01 1.119935513E-01 1.133343935E+00 -4.306765273E-02
|
||||
9.177967310E-01 1.163510531E-01 1.133986235E+00 -4.131393507E-02
|
||||
9.188451171E-01 1.209314391E-01 1.134735942E+00 -3.942473978E-02
|
||||
9.199471474E-01 1.257461011E-01 1.135467529E+00 -3.740723059E-02
|
||||
9.211055636E-01 1.308070421E-01 1.136170626E+00 -3.525864705E-02
|
||||
9.223231673E-01 1.361268312E-01 1.136861205E+00 -3.297007456E-02
|
||||
9.236031175E-01 1.417187452E-01 1.137553811E+00 -3.053658642E-02
|
||||
9.249485135E-01 1.475966722E-01 1.138262868E+00 -2.795063518E-02
|
||||
9.263626933E-01 1.537752450E-01 1.138991594E+00 -2.520756423E-02
|
||||
9.278492332E-01 1.602698565E-01 1.139738917E+00 -2.230156958E-02
|
||||
9.294118285E-01 1.670966595E-01 1.140502453E+00 -1.923439838E-02
|
||||
9.310543537E-01 1.742726564E-01 1.141282916E+00 -1.600370929E-02
|
||||
9.327808619E-01 1.818156838E-01 1.142079592E+00 -1.260909904E-02
|
||||
9.345956445E-01 1.897445470E-01 1.142891049E+00 -9.049088694E-03
|
||||
9.365033507E-01 1.980789751E-01 1.143717408E+00 -5.323003046E-03
|
||||
9.385085702E-01 2.068396956E-01 1.144555688E+00 -1.430912991E-03
|
||||
9.406163692E-01 2.160485089E-01 1.145396113E+00 2.619898180E-03
|
||||
9.428319335E-01 2.257283628E-01 1.146239758E+00 6.828776095E-03
|
||||
9.451608658E-01 2.359033376E-01 1.147084475E+00 1.119514462E-02
|
||||
9.476089478E-01 2.465987504E-01 1.147924423E+00 1.571526378E-02
|
||||
9.501821995E-01 2.578412294E-01 1.148754716E+00 2.038705908E-02
|
||||
9.528871179E-01 2.696587443E-01 1.149573326E+00 2.520260029E-02
|
||||
9.557303786E-01 2.820807397E-01 1.150367379E+00 3.015901521E-02
|
||||
9.587190151E-01 2.951380908E-01 1.151115417E+00 3.522908688E-02
|
||||
9.618605971E-01 3.088633418E-01 1.151822329E+00 4.042499512E-02
|
@ -0,0 +1,201 @@
|
||||
# NACA 4412, alpha=13.87, Re=1.52 million, 897x257 grid, CFL3D with SA model
|
||||
# x = x/c
|
||||
# y = y/c
|
||||
# u = (u/Uinf)/0.93
|
||||
# v = (v/Uinf)/0.93
|
||||
# (0.93 needed to put normalization in terms of experimental ref location below and behind airfoil)
|
||||
# VARIABLES = "x","y","u","v"
|
||||
# ZONE T="x=.9528"
|
||||
9.527999759E-01 1.286614314E-02 -2.247451084E-05 5.897508800E-06
|
||||
9.528004527E-01 1.286808401E-02 -5.175634287E-04 1.358887093E-04
|
||||
9.528009892E-01 1.287003048E-02 -1.017235336E-03 2.670623362E-04
|
||||
9.528014660E-01 1.287198626E-02 -1.514200238E-03 3.975685977E-04
|
||||
9.528019428E-01 1.287395693E-02 -2.014070051E-03 5.287991371E-04
|
||||
9.528024197E-01 1.287594624E-02 -2.519807080E-03 6.616348401E-04
|
||||
9.528029561E-01 1.287796069E-02 -3.033302259E-03 7.964470424E-04
|
||||
9.528034329E-01 1.288000401E-02 -3.548922716E-03 9.319111123E-04
|
||||
9.528039694E-01 1.288208272E-02 -4.074405413E-03 1.069870777E-03
|
||||
9.528044462E-01 1.288420055E-02 -4.606716800E-03 1.209751819E-03
|
||||
9.528049827E-01 1.288636308E-02 -5.150246900E-03 1.352451858E-03
|
||||
9.528055787E-01 1.288857684E-02 -5.711396690E-03 1.499924227E-03
|
||||
9.528061152E-01 1.289084554E-02 -6.278944667E-03 1.648988342E-03
|
||||
9.528067112E-01 1.289317571E-02 -6.865408737E-03 1.803093008E-03
|
||||
9.528073072E-01 1.289557386E-02 -7.464735303E-03 1.960579539E-03
|
||||
9.528079033E-01 1.289804559E-02 -8.080391213E-03 2.122325590E-03
|
||||
9.528085589E-01 1.290059555E-02 -8.719536476E-03 2.290351316E-03
|
||||
9.528092146E-01 1.290323213E-02 -9.374934249E-03 2.462534001E-03
|
||||
9.528098702E-01 1.290596090E-02 -1.005251799E-02 2.640661318E-03
|
||||
9.528105855E-01 1.290878933E-02 -1.075287163E-02 2.824781463E-03
|
||||
9.528113008E-01 1.291172300E-02 -1.147582661E-02 3.014775924E-03
|
||||
9.528120756E-01 1.291477121E-02 -1.223086659E-02 3.213340882E-03
|
||||
9.528128505E-01 1.291793957E-02 -1.300925110E-02 3.418009263E-03
|
||||
9.528136253E-01 1.292123739E-02 -1.381504536E-02 3.629853018E-03
|
||||
9.528145194E-01 1.292467210E-02 -1.465842221E-02 3.851712449E-03
|
||||
9.528154135E-01 1.292825304E-02 -1.553210802E-02 4.081529565E-03
|
||||
9.528163075E-01 1.293198857E-02 -1.643813774E-02 4.319792148E-03
|
||||
9.528172612E-01 1.293588802E-02 -1.738570444E-02 4.569130018E-03
|
||||
9.528182745E-01 1.293996070E-02 -1.837086305E-02 4.828414880E-03
|
||||
9.528193474E-01 1.294421777E-02 -1.939724758E-02 5.098461639E-03
|
||||
9.528204203E-01 1.294866856E-02 -2.046489716E-02 5.379428621E-03
|
||||
9.528216124E-01 1.295332517E-02 -2.158296481E-02 5.673801526E-03
|
||||
9.528228045E-01 1.295819879E-02 -2.274354734E-02 5.979428533E-03
|
||||
9.528240561E-01 1.296330243E-02 -2.395179868E-02 6.297524553E-03
|
||||
9.528253675E-01 1.296864729E-02 -2.521244064E-02 6.629490294E-03
|
||||
9.528267980E-01 1.297424734E-02 -2.653431520E-02 6.977754645E-03
|
||||
9.528282285E-01 1.298011746E-02 -2.790686674E-02 7.339460775E-03
|
||||
9.528297782E-01 1.298627071E-02 -2.933994308E-02 7.717111148E-03
|
||||
9.528313279E-01 1.299272291E-02 -3.082927503E-02 8.109607734E-03
|
||||
9.528330564E-01 1.299949083E-02 -3.238916397E-02 8.520858362E-03
|
||||
9.528347850E-01 1.300659031E-02 -3.401210159E-02 8.948907256E-03
|
||||
9.528366327E-01 1.301403996E-02 -3.570345789E-02 9.395148605E-03
|
||||
9.528385997E-01 1.302185748E-02 -3.746584803E-02 9.860167280E-03
|
||||
9.528406262E-01 1.303006243E-02 -3.929745406E-02 1.034351718E-02
|
||||
9.528427124E-01 1.303867623E-02 -4.120213166E-02 1.084632333E-02
|
||||
9.528449774E-01 1.304771937E-02 -4.319069535E-02 1.137157623E-02
|
||||
9.528473616E-01 1.305721514E-02 -4.525720328E-02 1.191763114E-02
|
||||
9.528498054E-01 1.306718681E-02 -4.739797115E-02 1.248353813E-02
|
||||
9.528523684E-01 1.307765860E-02 -4.961820319E-02 1.307050232E-02
|
||||
9.528551102E-01 1.308865752E-02 -5.192365497E-02 1.368024666E-02
|
||||
9.528579712E-01 1.310020965E-02 -5.431203172E-02 1.431225613E-02
|
||||
9.528610110E-01 1.311234571E-02 -5.678853393E-02 1.496802457E-02
|
||||
9.528641701E-01 1.312509459E-02 -5.933764577E-02 1.564341411E-02
|
||||
9.528674483E-01 1.313848794E-02 -6.195877492E-02 1.633830927E-02
|
||||
9.528709650E-01 1.315255929E-02 -6.465829164E-02 1.705422252E-02
|
||||
9.528746009E-01 1.316734497E-02 -6.742743403E-02 1.778905839E-02
|
||||
9.528784752E-01 1.318287943E-02 -7.026484609E-02 1.854254119E-02
|
||||
9.528825283E-01 1.319920365E-02 -7.316383719E-02 1.931318268E-02
|
||||
9.528867602E-01 1.321635675E-02 -7.610974461E-02 2.009700239E-02
|
||||
9.528912306E-01 1.323438156E-02 -7.907503843E-02 2.088687941E-02
|
||||
9.528959394E-01 1.325332373E-02 -8.205639571E-02 2.168180421E-02
|
||||
9.529008269E-01 1.327323075E-02 -8.503332734E-02 2.247645147E-02
|
||||
9.529060125E-01 1.329415012E-02 -8.798781782E-02 2.326629870E-02
|
||||
9.529114962E-01 1.331613585E-02 -9.089272469E-02 2.404435910E-02
|
||||
9.529172182E-01 1.333924290E-02 -9.371516854E-02 2.480212599E-02
|
||||
9.529232383E-01 1.336352713E-02 -9.638666362E-02 2.552156709E-02
|
||||
9.529295564E-01 1.338905096E-02 -9.887127578E-02 2.619329654E-02
|
||||
9.529361725E-01 1.341587584E-02 -1.011638120E-01 2.681578696E-02
|
||||
9.529431462E-01 1.344406977E-02 -1.032429785E-01 2.738369070E-02
|
||||
9.529505372E-01 1.347370353E-02 -1.050937399E-01 2.789314650E-02
|
||||
9.529582262E-01 1.350484975E-02 -1.067062914E-01 2.834164910E-02
|
||||
9.529663324E-01 1.353758667E-02 -1.080815047E-01 2.872947417E-02
|
||||
9.529748559E-01 1.357199531E-02 -1.091862693E-01 2.904793993E-02
|
||||
9.529837966E-01 1.360816229E-02 -1.100741774E-01 2.931110933E-02
|
||||
9.529932141E-01 1.364617702E-02 -1.107779294E-01 2.952762693E-02
|
||||
9.530031085E-01 1.368613355E-02 -1.113157272E-01 2.970238961E-02
|
||||
9.530135393E-01 1.372813247E-02 -1.117048115E-01 2.983999811E-02
|
||||
9.530244470E-01 1.377227716E-02 -1.119607836E-01 2.994458750E-02
|
||||
9.530359507E-01 1.381867938E-02 -1.120976061E-01 3.001989797E-02
|
||||
9.530480504E-01 1.386745274E-02 -1.121102348E-01 3.006472625E-02
|
||||
9.530607462E-01 1.391872019E-02 -1.120264083E-01 3.008644097E-02
|
||||
9.530740976E-01 1.397260837E-02 -1.118540987E-01 3.008729406E-02
|
||||
9.530881047E-01 1.402925141E-02 -1.115971357E-01 3.006836213E-02
|
||||
9.531028867E-01 1.408879180E-02 -1.112579331E-01 3.003042564E-02
|
||||
9.531183839E-01 1.415137574E-02 -1.108380631E-01 2.997395396E-02
|
||||
9.531346560E-01 1.421716064E-02 -1.103381366E-01 2.989919856E-02
|
||||
9.531518221E-01 1.428631041E-02 -1.097485647E-01 2.980392240E-02
|
||||
9.531698227E-01 1.435899641E-02 -1.090786979E-01 2.969081141E-02
|
||||
9.531887174E-01 1.443539932E-02 -1.083278283E-01 2.955983765E-02
|
||||
9.532086253E-01 1.451571006E-02 -1.074943468E-01 2.941072732E-02
|
||||
9.532295465E-01 1.460012887E-02 -1.065765992E-01 2.924323454E-02
|
||||
9.532515407E-01 1.468886621E-02 -1.055726707E-01 2.905705757E-02
|
||||
9.532746673E-01 1.478214189E-02 -1.044809073E-01 2.885176428E-02
|
||||
9.532989264E-01 1.488018874E-02 -1.032930017E-01 2.862571180E-02
|
||||
9.533244371E-01 1.498325076E-02 -1.020131558E-01 2.838056907E-02
|
||||
9.533513188E-01 1.509158500E-02 -1.006395668E-01 2.811587229E-02
|
||||
9.533795118E-01 1.520546060E-02 -9.917023033E-02 2.783137932E-02
|
||||
9.534091353E-01 1.532516256E-02 -9.760265052E-02 2.752678841E-02
|
||||
9.534403086E-01 1.545098703E-02 -9.593429416E-02 2.720181085E-02
|
||||
9.534730911E-01 1.558324881E-02 -9.416310489E-02 2.685600333E-02
|
||||
9.535075426E-01 1.572227664E-02 -9.228403866E-02 2.648901194E-02
|
||||
9.535437226E-01 1.586841606E-02 -9.029766172E-02 2.610149607E-02
|
||||
9.535818100E-01 1.602203213E-02 -8.820156753E-02 2.569307759E-02
|
||||
9.536218047E-01 1.618350670E-02 -8.599332720E-02 2.526362427E-02
|
||||
9.536638260E-01 1.635324210E-02 -8.367012441E-02 2.481297031E-02
|
||||
9.537080526E-01 1.653166115E-02 -8.122896403E-02 2.434095182E-02
|
||||
9.537544847E-01 1.671920903E-02 -7.866755873E-02 2.384755388E-02
|
||||
9.538033605E-01 1.691635139E-02 -7.598356158E-02 2.333348244E-02
|
||||
9.538546801E-01 1.712357812E-02 -7.317390293E-02 2.279817127E-02
|
||||
9.539086223E-01 1.734140888E-02 -7.023539394E-02 2.224166505E-02
|
||||
9.539653659E-01 1.757038198E-02 -6.716445833E-02 2.166390978E-02
|
||||
9.540249705E-01 1.781107113E-02 -6.395723671E-02 2.106484026E-02
|
||||
9.540876746E-01 1.806407236E-02 -6.060894951E-02 2.044427022E-02
|
||||
9.541535378E-01 1.833001897E-02 -5.711350590E-02 1.980271004E-02
|
||||
9.542227983E-01 1.860957034E-02 -5.347073078E-02 1.914148405E-02
|
||||
9.542955756E-01 1.890342496E-02 -4.967083409E-02 1.845791750E-02
|
||||
9.543721080E-01 1.921231300E-02 -4.570409283E-02 1.775172353E-02
|
||||
9.544525146E-01 1.953700557E-02 -4.156119376E-02 1.702219062E-02
|
||||
9.545370936E-01 1.987830736E-02 -3.723121807E-02 1.626840048E-02
|
||||
9.546259642E-01 2.023707330E-02 -3.269896656E-02 1.548981201E-02
|
||||
9.547193646E-01 2.061419189E-02 -2.795275487E-02 1.468522567E-02
|
||||
9.548175931E-01 2.101060562E-02 -2.297769859E-02 1.385513693E-02
|
||||
9.549208283E-01 2.142730169E-02 -1.775350235E-02 1.299567241E-02
|
||||
9.550293088E-01 2.186531574E-02 -1.226334367E-02 1.210491545E-02
|
||||
9.551433921E-01 2.232573926E-02 -6.484589539E-03 1.118133217E-02
|
||||
9.552632570E-01 2.280971967E-02 -3.871272202E-04 1.022384036E-02
|
||||
9.553893209E-01 2.331846021E-02 6.049024407E-03 9.229921736E-03
|
||||
9.555217624E-01 2.385322936E-02 1.285274606E-02 8.198110387E-03
|
||||
9.556609988E-01 2.441535890E-02 2.006549202E-02 7.128160447E-03
|
||||
9.558073878E-01 2.500624955E-02 2.771308459E-02 6.016038358E-03
|
||||
9.559612870E-01 2.562736906E-02 3.583754227E-02 4.860233050E-03
|
||||
9.561229944E-01 2.628026716E-02 4.447726905E-02 3.658801550E-03
|
||||
9.562930465E-01 2.696656995E-02 5.367071182E-02 2.409649314E-03
|
||||
9.564717412E-01 2.768798359E-02 6.345703453E-02 1.110834768E-03
|
||||
9.566595554E-01 2.844630741E-02 7.389888167E-02 -2.383130050E-04
|
||||
9.568570256E-01 2.924342826E-02 8.508701622E-02 -1.636554371E-03
|
||||
9.570646286E-01 3.008133359E-02 9.705948085E-02 -3.087454475E-03
|
||||
9.572827816E-01 3.096210584E-02 1.098750606E-01 -4.593732301E-03
|
||||
9.575121403E-01 3.188794106E-02 1.236038432E-01 -6.155729759E-03
|
||||
9.577532411E-01 3.286114335E-02 1.383197159E-01 -7.772476878E-03
|
||||
9.580066800E-01 3.388413787E-02 1.541205347E-01 -9.443466552E-03
|
||||
9.582730532E-01 3.495947272E-02 1.711107939E-01 -1.116646733E-02
|
||||
9.585530758E-01 3.608982265E-02 1.894332916E-01 -1.293540467E-02
|
||||
9.588474035E-01 3.727800399E-02 2.091338933E-01 -1.475286298E-02
|
||||
9.591568112E-01 3.852697462E-02 2.303297967E-01 -1.661576517E-02
|
||||
9.594820142E-01 3.983984888E-02 2.531565130E-01 -1.852010749E-02
|
||||
9.598239064E-01 4.121989012E-02 2.777135074E-01 -2.046164684E-02
|
||||
9.601832628E-01 4.267053679E-02 3.041249514E-01 -2.243480273E-02
|
||||
9.605610371E-01 4.419540241E-02 3.325777352E-01 -2.442752570E-02
|
||||
9.609580636E-01 4.579828680E-02 3.633176386E-01 -2.642520145E-02
|
||||
9.613754749E-01 4.748317599E-02 3.963423669E-01 -2.842622995E-02
|
||||
9.618142247E-01 4.925426841E-02 4.317822158E-01 -3.041890077E-02
|
||||
9.622753859E-01 5.111597478E-02 4.697780013E-01 -3.239087015E-02
|
||||
9.627602100E-01 5.307292938E-02 5.104573369E-01 -3.432847187E-02
|
||||
9.632697701E-01 5.513000488E-02 5.538908839E-01 -3.621640056E-02
|
||||
9.638054371E-01 5.729232728E-02 6.001932025E-01 -3.802413866E-02
|
||||
9.643685222E-01 5.956527963E-02 6.493836045E-01 -3.971987218E-02
|
||||
9.649603963E-01 6.195452437E-02 7.012466788E-01 -4.130186886E-02
|
||||
9.655825496E-01 6.446600705E-02 7.555276155E-01 -4.273841903E-02
|
||||
9.662365317E-01 6.710597873E-02 8.117366433E-01 -4.399082810E-02
|
||||
9.669239521E-01 6.988102198E-02 8.689808249E-01 -4.500556737E-02
|
||||
9.676465988E-01 7.279804349E-02 9.259084463E-01 -4.571373388E-02
|
||||
9.684061408E-01 7.586430013E-02 9.794876575E-01 -4.598145559E-02
|
||||
9.692046046E-01 7.908744365E-02 1.025662303E+00 -4.571823776E-02
|
||||
9.700438976E-01 8.247548342E-02 1.062613487E+00 -4.498505592E-02
|
||||
9.709261656E-01 8.603686839E-02 1.088867545E+00 -4.385472834E-02
|
||||
9.718535542E-01 8.978045732E-02 1.104904294E+00 -4.242994264E-02
|
||||
9.728283882E-01 9.371558577E-02 1.112358928E+00 -4.080991820E-02
|
||||
9.738530517E-01 9.785203636E-02 1.113987327E+00 -3.906219453E-02
|
||||
9.749301672E-01 1.022001207E-01 1.112861633E+00 -3.718847409E-02
|
||||
9.760624170E-01 1.067706645E-01 1.111576796E+00 -3.516165912E-02
|
||||
9.772526026E-01 1.115750521E-01 1.110834360E+00 -3.296119347E-02
|
||||
9.785036445E-01 1.166252345E-01 1.110678673E+00 -3.059036657E-02
|
||||
9.798187017E-01 1.219338030E-01 1.110953331E+00 -2.805960923E-02
|
||||
9.812010527E-01 1.275139749E-01 1.111446142E+00 -2.538319305E-02
|
||||
9.826540947E-01 1.333796233E-01 1.112009048E+00 -2.257225290E-02
|
||||
9.841815233E-01 1.395453960E-01 1.112594128E+00 -1.963485964E-02
|
||||
9.857870936E-01 1.460266113E-01 1.113226295E+00 -1.656613871E-02
|
||||
9.874747992E-01 1.528394222E-01 1.113925934E+00 -1.336478721E-02
|
||||
9.892488122E-01 1.600008011E-01 1.114702940E+00 -1.002925355E-02
|
||||
9.911136031E-01 1.675285548E-01 1.115558743E+00 -6.560289767E-03
|
||||
9.930738211E-01 1.754414588E-01 1.116492748E+00 -2.957872581E-03
|
||||
9.951343536E-01 1.837592125E-01 1.117494822E+00 7.756965351E-04
|
||||
9.973002672E-01 1.925025135E-01 1.118558884E+00 4.625072237E-03
|
||||
9.995770454E-01 2.016931474E-01 1.119675994E+00 8.599760942E-03
|
||||
1.001970291E+00 2.113540024E-01 1.120841026E+00 1.269780658E-02
|
||||
1.004485965E+00 2.215091139E-01 1.122047544E+00 1.691865176E-02
|
||||
1.007130265E+00 2.321837991E-01 1.123286963E+00 2.125987411E-02
|
||||
1.009909987E+00 2.434046268E-01 1.124554276E+00 2.571963146E-02
|
||||
1.012831807E+00 2.551995218E-01 1.125836015E+00 3.029074892E-02
|
||||
1.015903234E+00 2.675978839E-01 1.127111316E+00 3.495529294E-02
|
||||
1.019131780E+00 2.806305885E-01 1.128380537E+00 3.972667083E-02
|
||||
1.022525430E+00 2.943300605E-01 1.129636526E+00 4.460107908E-02
|
@ -0,0 +1,55 @@
|
||||
# experimental surface pressure coefficient data from Coles & Wadcock NACA 4412 experiment
|
||||
# alpha=13.87, Re=1.52 million
|
||||
# x and y have been normalized by chord
|
||||
# variables="x","y","cp"
|
||||
1.000000E+00 -2.000000E-04 -3.490138E-01
|
||||
9.914000E-01 -1.300000E-03 -2.554269E-01
|
||||
9.118000E-01 -2.000000E-03 -2.505875E-02
|
||||
8.187000E-01 -3.500000E-03 9.012508E-02
|
||||
7.647000E-01 -4.700000E-03 1.261201E-01
|
||||
6.596000E-01 -7.800000E-03 1.837125E-01
|
||||
5.876000E-01 -1.040000E-02 2.341051E-01
|
||||
5.166000E-01 -1.330000E-02 2.772994E-01
|
||||
4.456000E-01 -1.650000E-02 3.204932E-01
|
||||
3.764000E-01 -1.900000E-02 3.636870E-01
|
||||
3.064000E-01 -2.230000E-02 4.212794E-01
|
||||
2.708000E-01 -2.410000E-02 4.500751E-01
|
||||
2.394000E-01 -2.560000E-02 4.788713E-01
|
||||
2.074000E-01 -2.700000E-02 5.076675E-01
|
||||
1.596000E-01 -2.860000E-02 5.724578E-01
|
||||
1.280000E-01 -2.900000E-02 6.372490E-01
|
||||
8.100000E-02 -2.780000E-02 7.884283E-01
|
||||
5.060000E-02 -2.490000E-02 9.180102E-01
|
||||
2.830000E-02 -2.040000E-02 9.900002E-01
|
||||
8.200000E-03 -1.160000E-02 1.693139E-01
|
||||
-3.000000E-04 3.100000E-03 -6.209000E+00
|
||||
1.450000E-02 2.620000E-02 -5.121951E+00
|
||||
2.960000E-02 3.670000E-02 -3.682151E+00
|
||||
4.890000E-02 4.680000E-02 -3.408589E+00
|
||||
7.520000E-02 5.770000E-02 -3.077435E+00
|
||||
1.009000E-01 6.630000E-02 -2.767878E+00
|
||||
1.283000E-01 7.380000E-02 -2.559107E+00
|
||||
1.524000E-01 7.940000E-02 -2.422326E+00
|
||||
1.832000E-01 8.530000E-02 -2.235152E+00
|
||||
2.145000E-01 9.000000E-02 -2.098371E+00
|
||||
2.482000E-01 9.390000E-02 -1.947192E+00
|
||||
2.827000E-01 9.660000E-02 -1.817610E+00
|
||||
3.189000E-01 9.830000E-02 -1.680829E+00
|
||||
3.508000E-01 9.880000E-02 -1.558445E+00
|
||||
3.899000E-01 9.840000E-02 -1.392869E+00
|
||||
4.251000E-01 9.689999E-02 -1.256088E+00
|
||||
4.602000E-01 9.490000E-02 -1.133705E+00
|
||||
4.941000E-01 9.240000E-02 -1.018521E+00
|
||||
5.297000E-01 8.920000E-02 -8.961382E-01
|
||||
5.663000E-01 8.540000E-02 -7.953520E-01
|
||||
5.971000E-01 8.180001E-02 -7.017651E-01
|
||||
6.283000E-01 7.770000E-02 -6.297750E-01
|
||||
6.590000E-01 7.330000E-02 -5.721827E-01
|
||||
7.198001E-01 6.370000E-02 -4.929938E-01
|
||||
7.893000E-01 5.090000E-02 -4.426007E-01
|
||||
8.878000E-01 2.990000E-02 -4.066057E-01
|
||||
9.307000E-01 1.950000E-02 -4.066057E-01
|
||||
9.509000E-01 1.440000E-02 -4.066057E-01
|
||||
9.741001E-01 8.300000E-03 -3.994069E-01
|
||||
9.856000E-01 5.200000E-03 -3.994069E-01
|
||||
1.000000E+00 -2.000000E-04 -3.562126E-01
|
@ -0,0 +1,158 @@
|
||||
# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case
|
||||
# The lines were drawn by hand to be "visually" normal to the airfoil surface;
|
||||
# however, whether it is normal or not does not matter because the CFD is compared along the same lines.
|
||||
#
|
||||
# In these lines, experimental data were interpolated via Tecplot software onto
|
||||
# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002
|
||||
# (except at the last station, where the points start at d/c=.006 off the surface)
|
||||
# Points were also added AT the surface, with u=v=uv=0
|
||||
#
|
||||
# x and y are normalized by chord
|
||||
# u and v are each normalized by Uref
|
||||
# uv = u'v' is normalized by Uref^2
|
||||
# Uref is the reference velocity, located about 1 chord below and behind the airfoil
|
||||
# (from CFD tests, Uref is roughly 0.93*Uinf)
|
||||
#
|
||||
# VARIABLES = "x","y","u","v","uv"
|
||||
# ZONE T="x=.6753"
|
||||
6.753000021E-01 7.061254978E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00
|
||||
6.759567857E-01 7.461255044E-02 3.766300082E-01 -3.263309970E-02 -4.801076837E-03
|
||||
6.762852073E-01 7.661254704E-02 4.497177601E-01 -4.193454981E-02 -5.804286338E-03
|
||||
6.766136289E-01 7.861255109E-02 5.290364027E-01 -4.912014678E-02 -6.435789634E-03
|
||||
6.769419909E-01 8.061254770E-02 6.116222739E-01 -5.543234572E-02 -6.822993979E-03
|
||||
6.772704124E-01 8.261255175E-02 6.947275996E-01 -6.078020111E-02 -7.014558651E-03
|
||||
6.775988340E-01 8.461254835E-02 7.794129252E-01 -6.561090797E-02 -6.971711293E-03
|
||||
6.779271960E-01 8.661255240E-02 8.637731671E-01 -7.025842369E-02 -6.684282329E-03
|
||||
6.782556176E-01 8.861254901E-02 9.457306266E-01 -7.522905618E-02 -6.185996812E-03
|
||||
6.785839796E-01 9.061254561E-02 1.023281574E+00 -7.897278666E-02 -5.280557089E-03
|
||||
6.789124012E-01 9.261254966E-02 1.095219851E+00 -8.141420782E-02 -4.228893202E-03
|
||||
6.792408228E-01 9.461254627E-02 1.150194645E+00 -8.326884359E-02 -3.101346781E-03
|
||||
6.795691848E-01 9.661255032E-02 1.191896200E+00 -8.425498754E-02 -2.130608307E-03
|
||||
6.798976064E-01 9.861254692E-02 1.219955206E+00 -8.388996124E-02 -1.357913134E-03
|
||||
6.802260280E-01 1.006125510E-01 1.235602975E+00 -8.263828605E-02 -7.938637864E-04
|
||||
6.805543900E-01 1.026125476E-01 1.243665457E+00 -8.130621910E-02 -4.584156268E-04
|
||||
6.808828115E-01 1.046125516E-01 1.247490883E+00 -7.935258746E-02 -2.817256027E-04
|
||||
6.812112331E-01 1.066125482E-01 1.249961734E+00 -7.761543989E-02 -1.891786815E-04
|
||||
6.815395951E-01 1.086125523E-01 1.250074744E+00 -7.540167123E-02 -1.591265900E-04
|
||||
6.818680167E-01 1.106125489E-01 1.249999404E+00 -7.125055045E-02 -1.356313587E-04
|
||||
6.821964383E-01 1.126125455E-01 1.250255942E+00 -6.774529815E-02 -1.227829489E-04
|
||||
6.825248003E-01 1.146125495E-01 1.250752449E+00 -6.415303797E-02 -1.142631008E-04
|
||||
6.828532219E-01 1.166125461E-01 1.251266003E+00 -6.126778945E-02 -1.079964713E-04
|
||||
6.831816435E-01 1.186125502E-01 1.251625419E+00 -5.857495964E-02 -1.000038101E-04
|
||||
6.835100055E-01 1.206125468E-01 1.251910686E+00 -5.614645779E-02 -9.383133147E-05
|
||||
6.838384271E-01 1.226125509E-01 1.252184391E+00 -5.421170965E-02 -9.196456813E-05
|
||||
6.841668487E-01 1.246125475E-01 1.252166510E+00 -5.338876694E-02 -8.963276923E-05
|
||||
6.844952106E-01 1.266125441E-01 1.252107024E+00 -5.196940526E-02 -8.348586562E-05
|
||||
6.848236322E-01 1.286125481E-01 1.252179861E+00 -5.017524213E-02 -8.323506336E-05
|
||||
6.851519942E-01 1.306125522E-01 1.252390146E+00 -4.831943288E-02 -8.298431203E-05
|
||||
6.854804158E-01 1.326125562E-01 1.252336264E+00 -4.670364410E-02 -8.236675785E-05
|
||||
6.858088374E-01 1.346125454E-01 1.251928568E+00 -4.551243037E-02 -8.199999866E-05
|
||||
6.861371994E-01 1.366125494E-01 1.251515985E+00 -4.418617114E-02 -8.199999866E-05
|
||||
6.864656210E-01 1.386125535E-01 1.251138926E+00 -4.270188138E-02 -7.769648073E-05
|
||||
6.867940426E-01 1.406125426E-01 1.250664949E+00 -4.123624042E-02 -7.352599641E-05
|
||||
6.871224046E-01 1.426125467E-01 1.250204563E+00 -3.983714804E-02 -7.352599641E-05
|
||||
6.874508262E-01 1.446125507E-01 1.250038981E+00 -3.843194619E-02 -7.352599641E-05
|
||||
6.877792478E-01 1.466125548E-01 1.249919891E+00 -3.706405312E-02 -7.352599641E-05
|
||||
6.881076097E-01 1.486125439E-01 1.249816656E+00 -3.565491736E-02 -7.344602636E-05
|
||||
6.884360313E-01 1.506125480E-01 1.250089645E+00 -3.423605487E-02 -7.178880333E-05
|
||||
6.887644529E-01 1.526125520E-01 1.250525355E+00 -3.283983096E-02 -7.086448022E-05
|
||||
6.890928149E-01 1.546125561E-01 1.250617385E+00 -3.140464053E-02 -7.048834959E-05
|
||||
6.894212365E-01 1.566125453E-01 1.250682354E+00 -3.005442955E-02 -7.011215348E-05
|
||||
6.897496581E-01 1.586125493E-01 1.250884056E+00 -2.868286707E-02 -6.504116027E-05
|
||||
6.900780201E-01 1.606125534E-01 1.251155138E+00 -2.726954408E-02 -6.081500032E-05
|
||||
6.904064417E-01 1.626125425E-01 1.251343131E+00 -2.587703057E-02 -6.081500032E-05
|
||||
6.907348633E-01 1.646125466E-01 1.251399398E+00 -2.454965189E-02 -5.987461554E-05
|
||||
6.910632253E-01 1.666125506E-01 1.251170278E+00 -2.339009196E-02 -5.728520046E-05
|
||||
6.913916469E-01 1.686125547E-01 1.251250505E+00 -2.218569443E-02 -5.703440183E-05
|
||||
6.917200685E-01 1.706125438E-01 1.251213670E+00 -2.091247775E-02 -5.678360321E-05
|
||||
6.920484304E-01 1.726125479E-01 1.251176834E+00 -1.977118477E-02 -5.307559331E-05
|
||||
6.923768520E-01 1.746125519E-01 1.251139998E+00 -1.853161678E-02 -5.234100172E-05
|
||||
6.927052140E-01 1.766125560E-01 1.251144409E+00 -1.733308472E-02 -5.234100172E-05
|
||||
6.930336356E-01 1.786125451E-01 1.251220703E+00 -1.606158353E-02 -5.234100172E-05
|
||||
6.933620572E-01 1.806125492E-01 1.251216292E+00 -1.476513501E-02 -5.234100172E-05
|
||||
6.936904192E-01 1.826125532E-01 1.251052141E+00 -1.349520870E-02 -5.234100172E-05
|
||||
6.940188408E-01 1.846125424E-01 1.250876188E+00 -1.227628719E-02 -5.135105675E-05
|
||||
6.943472624E-01 1.866125464E-01 1.250779152E+00 -1.115044765E-02 -4.630334661E-05
|
||||
6.946756244E-01 1.886125505E-01 1.250591874E+00 -1.001649257E-02 -4.605259164E-05
|
||||
6.950040460E-01 1.906125546E-01 1.250431061E+00 -8.911981247E-03 -4.580179302E-05
|
||||
6.953324676E-01 1.926125437E-01 1.250260472E+00 -7.840353064E-03 -4.555099440E-05
|
||||
6.956608295E-01 1.946125478E-01 1.250073671E+00 -6.714500021E-03 -4.458361946E-05
|
||||
6.959892511E-01 1.966125518E-01 1.249873638E+00 -5.658250302E-03 -4.386699948E-05
|
||||
6.963176727E-01 1.986125559E-01 1.249753833E+00 -4.582621623E-03 -4.386699948E-05
|
||||
6.966460347E-01 2.006125450E-01 1.249698162E+00 -3.426744370E-03 -4.386699948E-05
|
||||
6.969744563E-01 2.026125491E-01 1.249594688E+00 -2.293128287E-03 -3.981473492E-05
|
||||
6.973028779E-01 2.046125531E-01 1.249399543E+00 -1.274837065E-03 -3.129046672E-05
|
||||
6.976312399E-01 2.066125423E-01 1.249235392E+00 -2.728465770E-04 -3.115599975E-05
|
||||
6.979596615E-01 2.086125463E-01 1.249210119E+00 5.500707775E-04 -3.115599975E-05
|
||||
6.982880831E-01 2.106125504E-01 1.249184132E+00 1.473983401E-03 -3.115599975E-05
|
||||
6.986164451E-01 2.126125544E-01 1.249028683E+00 2.314922633E-03 -3.115599975E-05
|
||||
6.989448667E-01 2.146125436E-01 1.248878837E+00 3.317159368E-03 -3.115599975E-05
|
||||
6.992732286E-01 2.166125476E-01 1.248820424E+00 4.258651752E-03 -3.115599975E-05
|
||||
6.996016502E-01 2.186125517E-01 1.248879075E+00 5.208074581E-03 -3.115599975E-05
|
||||
6.999300718E-01 2.206125557E-01 1.248857975E+00 6.185388193E-03 -3.115599975E-05
|
||||
7.002584338E-01 2.226125449E-01 1.248730063E+00 7.181296591E-03 -3.115599975E-05
|
||||
7.005868554E-01 2.246125489E-01 1.248631597E+00 8.153270930E-03 -3.115599975E-05
|
||||
7.009152770E-01 2.266125530E-01 1.248593092E+00 9.026516229E-03 -3.115599975E-05
|
||||
7.012436390E-01 2.286125422E-01 1.248432040E+00 9.966412559E-03 -3.115599975E-05
|
||||
7.015720606E-01 2.306125462E-01 1.248270988E+00 1.082430407E-02 -3.115599975E-05
|
||||
7.019004822E-01 2.326125503E-01 1.248163342E+00 1.168878563E-02 -2.841017886E-05
|
||||
7.022288442E-01 2.346125543E-01 1.248018622E+00 1.252854988E-02 -2.757356015E-05
|
||||
7.025572658E-01 2.366125435E-01 1.248081446E+00 1.319059264E-02 -2.410537127E-05
|
||||
7.028856874E-01 2.386125475E-01 1.247992396E+00 1.384142227E-02 -2.268199933E-05
|
||||
7.032140493E-01 2.406125516E-01 1.247757077E+00 1.455561072E-02 -2.268199933E-05
|
||||
7.035424709E-01 2.426125556E-01 1.247602701E+00 1.517212950E-02 -2.268199933E-05
|
||||
7.038708925E-01 2.446125448E-01 1.247520089E+00 1.565044560E-02 -2.268199933E-05
|
||||
7.041992545E-01 2.466125488E-01 1.247378588E+00 1.623137295E-02 -2.268199933E-05
|
||||
7.045276761E-01 2.486125529E-01 1.247200131E+00 1.679132320E-02 -2.268199933E-05
|
||||
7.048560977E-01 2.506125569E-01 1.247149348E+00 1.737648249E-02 -2.268199933E-05
|
||||
7.051844597E-01 2.526125610E-01 1.247046113E+00 1.799358800E-02 -2.268199933E-05
|
||||
7.055128813E-01 2.546125352E-01 1.246988654E+00 1.857863739E-02 -1.754675395E-05
|
||||
7.058413029E-01 2.566125393E-01 1.246857762E+00 1.925368421E-02 -1.634089494E-05
|
||||
7.061696649E-01 2.586125433E-01 1.246657610E+00 2.010379359E-02 -1.609013998E-05
|
||||
7.064980865E-01 2.606125474E-01 1.246499062E+00 2.074785158E-02 -1.502366922E-05
|
||||
7.068264484E-01 2.626125515E-01 1.246416450E+00 2.116585337E-02 -1.420799981E-05
|
||||
7.071548700E-01 2.646125555E-01 1.246346712E+00 2.160292305E-02 -1.420799981E-05
|
||||
7.074832916E-01 2.666125596E-01 1.246179461E+00 2.203149535E-02 -1.420799981E-05
|
||||
7.078116536E-01 2.686125636E-01 1.246009707E+00 2.256400511E-02 -1.420799981E-05
|
||||
7.081400752E-01 2.706125379E-01 1.245705009E+00 2.317809872E-02 -1.420799981E-05
|
||||
7.084684968E-01 2.726125419E-01 1.245254159E+00 2.406087331E-02 -1.420799981E-05
|
||||
7.087968588E-01 2.746125460E-01 1.244800925E+00 2.503712103E-02 -1.420799981E-05
|
||||
7.091252804E-01 2.766125500E-01 1.244457245E+00 2.559790015E-02 -1.420799981E-05
|
||||
7.094537020E-01 2.786125541E-01 1.244137883E+00 2.618719824E-02 -1.420799981E-05
|
||||
7.097820640E-01 2.806125581E-01 1.243744969E+00 2.671771124E-02 -1.420799981E-05
|
||||
7.101104856E-01 2.826125622E-01 1.243348718E+00 2.727422304E-02 -1.420799981E-05
|
||||
7.104389071E-01 2.846125364E-01 1.242988467E+00 2.791864797E-02 -1.599454845E-05
|
||||
7.107672691E-01 2.866125405E-01 1.242527604E+00 2.871193364E-02 -2.105317253E-05
|
||||
7.110956907E-01 2.886125445E-01 1.241964817E+00 2.990373969E-02 -2.080237209E-05
|
||||
7.114241123E-01 2.906125486E-01 1.241626859E+00 3.058674932E-02 -2.055157347E-05
|
||||
7.117524743E-01 2.926125526E-01 1.241206765E+00 3.085537255E-02 -2.030082032E-05
|
||||
7.120808959E-01 2.946125567E-01 1.240858912E+00 3.126307204E-02 -2.005002170E-05
|
||||
7.124093175E-01 2.966125607E-01 1.240563869E+00 3.138681874E-02 -1.979922308E-05
|
||||
7.127376795E-01 2.986125350E-01 1.240352511E+00 3.154996783E-02 -1.954846994E-05
|
||||
7.130661011E-01 3.006125391E-01 1.240061402E+00 3.186630458E-02 -1.929766950E-05
|
||||
7.133944631E-01 3.026125431E-01 1.239678741E+00 3.255941346E-02 -1.904691635E-05
|
||||
7.137228847E-01 3.046125472E-01 1.239280343E+00 3.347361088E-02 -1.879611773E-05
|
||||
7.140513062E-01 3.066125512E-01 1.238976598E+00 3.440975025E-02 -1.854531911E-05
|
||||
7.143796682E-01 3.086125553E-01 1.238660216E+00 3.472363576E-02 -1.784463166E-05
|
||||
7.147080898E-01 3.106125593E-01 1.238139391E+00 3.458727151E-02 -1.423917911E-05
|
||||
7.150365114E-01 3.126125634E-01 1.237634063E+00 3.443295136E-02 -1.740539119E-05
|
||||
7.153648734E-01 3.146125376E-01 1.237103462E+00 3.478360921E-02 -1.754221375E-05
|
||||
7.156932950E-01 3.166125417E-01 1.236680388E+00 3.544282168E-02 -1.729141513E-05
|
||||
7.160217166E-01 3.186125457E-01 1.236329079E+00 3.660459444E-02 -1.562430771E-05
|
||||
7.163500786E-01 3.206125498E-01 1.236015797E+00 3.821304440E-02 -1.420799981E-05
|
||||
7.166785002E-01 3.226125538E-01 1.235740304E+00 3.985913843E-02 -1.420799981E-05
|
||||
7.170069218E-01 3.246125579E-01 1.235491753E+00 4.132989049E-02 -1.420799981E-05
|
||||
7.173352838E-01 3.266125619E-01 1.235219598E+00 4.215421155E-02 -1.420799981E-05
|
||||
7.176637053E-01 3.286125362E-01 1.234634042E+00 4.176226258E-02 -1.420799981E-05
|
||||
7.179921269E-01 3.306125402E-01 1.233951449E+00 4.127880558E-02 -1.420799981E-05
|
||||
7.183204889E-01 3.326125443E-01 1.233115077E+00 4.093660042E-02 -1.420799981E-05
|
||||
7.186489105E-01 3.346125484E-01 1.232524276E+00 4.023338482E-02 -1.420799981E-05
|
||||
7.189773321E-01 3.366125524E-01 1.232059956E+00 4.003284499E-02 -1.420799981E-05
|
||||
7.193056941E-01 3.386125565E-01 1.231920838E+00 4.082088172E-02 -1.420799981E-05
|
||||
7.196341157E-01 3.406125605E-01 1.231912613E+00 4.226571321E-02 -1.420799981E-05
|
||||
7.199625373E-01 3.426125348E-01 1.231987953E+00 4.408393800E-02 -1.420799981E-05
|
||||
7.202908993E-01 3.446125388E-01 1.232033968E+00 4.569632933E-02 -1.420799981E-05
|
||||
7.206193209E-01 3.466125429E-01 1.231737137E+00 4.678410664E-02 -1.420799981E-05
|
||||
7.209476829E-01 3.486125469E-01 1.230995536E+00 4.773338512E-02 -1.420799981E-05
|
||||
7.212761045E-01 3.506125510E-01 1.230722189E+00 4.811954126E-02 -1.420799981E-05
|
||||
7.216045260E-01 3.526125550E-01 1.230178952E+00 4.850462824E-02 -1.420799981E-05
|
@ -0,0 +1,158 @@
|
||||
# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case
|
||||
# The lines were drawn by hand to be "visually" normal to the airfoil surface;
|
||||
# however, whether it is normal or not does not matter because the CFD is compared along the same lines.
|
||||
#
|
||||
# In these lines, experimental data were interpolated via Tecplot software onto
|
||||
# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002
|
||||
# (except at the last station, where the points start at d/c=.006 off the surface)
|
||||
# Points were also added AT the surface, with u=v=uv=0
|
||||
#
|
||||
# x and y are normalized by chord
|
||||
# u and v are each normalized by Uref
|
||||
# uv = u'v' is normalized by Uref^2
|
||||
# Uref is the reference velocity, located about 1 chord below and behind the airfoil
|
||||
# (from CFD tests, Uref is roughly 0.93*Uinf)
|
||||
#
|
||||
# VARIABLES = "x","y","u","v","uv"
|
||||
# ZONE T="x=.7308"
|
||||
7.307999730E-01 6.140028313E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00
|
||||
7.315027714E-01 6.540028006E-02 2.460389435E-01 -1.118231285E-02 -4.866447765E-03
|
||||
7.318542004E-01 6.740028411E-02 3.027755022E-01 -1.887738332E-02 -6.025253795E-03
|
||||
7.322056293E-01 6.940028071E-02 3.632766604E-01 -2.641601302E-02 -6.996803917E-03
|
||||
7.325569987E-01 7.140028477E-02 4.275860488E-01 -3.310875595E-02 -7.790642790E-03
|
||||
7.329084277E-01 7.340028137E-02 4.947403371E-01 -3.962697461E-02 -8.393688127E-03
|
||||
7.332597971E-01 7.540028542E-02 5.663315058E-01 -4.633923620E-02 -8.812271059E-03
|
||||
7.336112261E-01 7.740028203E-02 6.380730271E-01 -5.073582008E-02 -9.012225084E-03
|
||||
7.339625955E-01 7.940028608E-02 7.108792663E-01 -5.527078360E-02 -8.980887942E-03
|
||||
7.343140244E-01 8.140028268E-02 7.881935835E-01 -5.939846113E-02 -8.746957406E-03
|
||||
7.346653938E-01 8.340028673E-02 8.631260395E-01 -6.324747205E-02 -8.300439455E-03
|
||||
7.350168228E-01 8.540028334E-02 9.318752289E-01 -6.641685218E-02 -7.553379983E-03
|
||||
7.353681922E-01 8.740027994E-02 9.950000048E-01 -6.861566752E-02 -6.594378036E-03
|
||||
7.357196212E-01 8.940028399E-02 1.052679420E+00 -7.027729601E-02 -5.525717512E-03
|
||||
7.360709906E-01 9.140028059E-02 1.101194501E+00 -7.179231942E-02 -4.366827197E-03
|
||||
7.364224195E-01 9.340028465E-02 1.140115857E+00 -7.191567868E-02 -3.231036942E-03
|
||||
7.367737889E-01 9.540028125E-02 1.168442965E+00 -7.182988524E-02 -2.363423351E-03
|
||||
7.371252179E-01 9.740028530E-02 1.187021255E+00 -7.021193951E-02 -1.593506313E-03
|
||||
7.374765873E-01 9.940028191E-02 1.199545503E+00 -6.875113398E-02 -1.074227272E-03
|
||||
7.378280163E-01 1.014002860E-01 1.205913186E+00 -6.667427719E-02 -7.031608839E-04
|
||||
7.381793857E-01 1.034002826E-01 1.209588051E+00 -6.339611858E-02 -4.339116567E-04
|
||||
7.385308146E-01 1.054002866E-01 1.212179780E+00 -6.015462056E-02 -2.837763459E-04
|
||||
7.388821840E-01 1.074002832E-01 1.213817477E+00 -5.666319281E-02 -1.937195630E-04
|
||||
7.392336130E-01 1.094002873E-01 1.214875817E+00 -5.302368477E-02 -1.247844921E-04
|
||||
7.395849824E-01 1.114002839E-01 1.215988994E+00 -5.001813546E-02 -7.487426774E-05
|
||||
7.399364114E-01 1.134002805E-01 1.216803074E+00 -4.696431756E-02 -6.154076982E-05
|
||||
7.402877808E-01 1.154002845E-01 1.217205882E+00 -4.505649954E-02 -5.359080751E-05
|
||||
7.406392097E-01 1.174002811E-01 1.217390299E+00 -4.318412393E-02 -5.983356095E-05
|
||||
7.409905791E-01 1.194002852E-01 1.217800260E+00 -4.142305627E-02 -6.045844202E-05
|
||||
7.413420081E-01 1.214002818E-01 1.217967629E+00 -4.038942978E-02 -4.886287570E-05
|
||||
7.416933775E-01 1.234002858E-01 1.218205333E+00 -3.909044713E-02 -3.619287963E-05
|
||||
7.420448065E-01 1.254002899E-01 1.218478084E+00 -3.759451210E-02 -3.101808397E-05
|
||||
7.423961759E-01 1.274002790E-01 1.218686104E+00 -3.616545722E-02 -2.676284566E-05
|
||||
7.427476048E-01 1.294002831E-01 1.218880177E+00 -3.495412320E-02 -2.475433030E-05
|
||||
7.430989742E-01 1.314002872E-01 1.219096780E+00 -3.386140987E-02 -2.936207238E-05
|
||||
7.434504032E-01 1.334002763E-01 1.219152212E+00 -3.259103000E-02 -2.882533227E-05
|
||||
7.438017726E-01 1.354002804E-01 1.219405532E+00 -3.134607524E-02 -2.828868310E-05
|
||||
7.441532016E-01 1.374002844E-01 1.219372511E+00 -2.997978963E-02 -2.775194298E-05
|
||||
7.445046306E-01 1.394002885E-01 1.219471097E+00 -2.874771692E-02 -2.721520286E-05
|
||||
7.448559999E-01 1.414002776E-01 1.219464064E+00 -2.749080025E-02 -2.667855551E-05
|
||||
7.452074289E-01 1.434002817E-01 1.219615698E+00 -2.618347108E-02 -2.614181540E-05
|
||||
7.455587983E-01 1.454002857E-01 1.219648838E+00 -2.491835319E-02 -2.699287506E-05
|
||||
7.459102273E-01 1.474002898E-01 1.219619870E+00 -2.370466478E-02 -2.811221202E-05
|
||||
7.462615967E-01 1.494002789E-01 1.219560623E+00 -2.249744534E-02 -2.784388744E-05
|
||||
7.466130257E-01 1.514002830E-01 1.219444513E+00 -2.125034481E-02 -2.757551738E-05
|
||||
7.469643950E-01 1.534002870E-01 1.219368100E+00 -1.996828802E-02 -2.730719461E-05
|
||||
7.473158240E-01 1.554002762E-01 1.219339132E+00 -1.873773523E-02 -2.703882456E-05
|
||||
7.476671934E-01 1.574002802E-01 1.219310284E+00 -1.766919158E-02 -2.677049997E-05
|
||||
7.480186224E-01 1.594002843E-01 1.219281316E+00 -1.664281078E-02 -2.650212991E-05
|
||||
7.483699918E-01 1.614002883E-01 1.219406843E+00 -1.560051925E-02 -2.623380533E-05
|
||||
7.487214208E-01 1.634002775E-01 1.219536781E+00 -1.453834306E-02 -2.596543527E-05
|
||||
7.490727901E-01 1.654002815E-01 1.219732761E+00 -1.350229140E-02 -2.569711069E-05
|
||||
7.494242191E-01 1.674002856E-01 1.219777584E+00 -1.269754115E-02 -2.542874063E-05
|
||||
7.497755885E-01 1.694002897E-01 1.219699740E+00 -1.196465455E-02 -2.516041604E-05
|
||||
7.501270175E-01 1.714002788E-01 1.219706059E+00 -1.099174842E-02 -2.251598926E-05
|
||||
7.504783869E-01 1.734002829E-01 1.219819784E+00 -9.961096570E-03 -1.614972280E-05
|
||||
7.508298159E-01 1.754002869E-01 1.219855309E+00 -8.941970766E-03 -1.588135274E-05
|
||||
7.511811852E-01 1.774002910E-01 1.220090508E+00 -8.102357388E-03 -1.561302815E-05
|
||||
7.515326142E-01 1.794002801E-01 1.220225811E+00 -7.173030637E-03 -1.534465810E-05
|
||||
7.518839836E-01 1.814002842E-01 1.220465422E+00 -6.004220806E-03 -1.507633351E-05
|
||||
7.522354126E-01 1.834002882E-01 1.220620513E+00 -5.049886648E-03 -1.480796345E-05
|
||||
7.525867820E-01 1.854002774E-01 1.220677018E+00 -4.216141533E-03 -1.453963887E-05
|
||||
7.529382110E-01 1.874002814E-01 1.220602393E+00 -3.328544321E-03 -1.427126881E-05
|
||||
7.532895803E-01 1.894002855E-01 1.220596552E+00 -2.435279544E-03 -1.405420880E-05
|
||||
7.536410093E-01 1.914002895E-01 1.220758677E+00 -1.587175298E-03 -1.420799981E-05
|
||||
7.539923787E-01 1.934002787E-01 1.220915437E+00 -6.937219296E-04 -1.420799981E-05
|
||||
7.543438077E-01 1.954002827E-01 1.221076846E+00 1.321993623E-04 -1.420799981E-05
|
||||
7.546951771E-01 1.974002868E-01 1.221238375E+00 9.685960249E-04 -1.420799981E-05
|
||||
7.550466061E-01 1.994002908E-01 1.221547723E+00 1.608561375E-03 -1.420799981E-05
|
||||
7.553979754E-01 2.014002800E-01 1.221820354E+00 2.096764743E-03 -1.420799981E-05
|
||||
7.557494044E-01 2.034002841E-01 1.221896648E+00 2.554768464E-03 -1.264537696E-05
|
||||
7.561007738E-01 2.054002881E-01 1.222003222E+00 3.114351304E-03 -1.068026904E-05
|
||||
7.564522028E-01 2.074002773E-01 1.221994042E+00 3.803295782E-03 -1.027771668E-05
|
||||
7.568036318E-01 2.094002813E-01 1.221975684E+00 4.496234935E-03 -1.204158161E-05
|
||||
7.571550012E-01 2.114002854E-01 1.222013593E+00 5.194058176E-03 -1.420799981E-05
|
||||
7.575064301E-01 2.134002894E-01 1.222116470E+00 5.938077345E-03 -1.420799981E-05
|
||||
7.578577995E-01 2.154002786E-01 1.222182751E+00 6.821295246E-03 -1.353347670E-05
|
||||
7.582092285E-01 2.174002826E-01 1.222038865E+00 7.726217154E-03 -8.265089491E-06
|
||||
7.585605979E-01 2.194002867E-01 1.222190142E+00 8.147190325E-03 -7.862604434E-06
|
||||
7.589120269E-01 2.214002907E-01 1.222269058E+00 8.727948181E-03 -7.460052075E-06
|
||||
7.592633963E-01 2.234002799E-01 1.222164750E+00 9.276836179E-03 -7.057567473E-06
|
||||
7.596148252E-01 2.254002839E-01 1.222114205E+00 9.914755821E-03 -6.655014658E-06
|
||||
7.599661946E-01 2.274002880E-01 1.222057581E+00 1.063147187E-02 -6.252530056E-06
|
||||
7.603176236E-01 2.294002771E-01 1.221931696E+00 1.137802377E-02 -5.849977242E-06
|
||||
7.606689930E-01 2.314002812E-01 1.221827865E+00 1.222699415E-02 -3.472246362E-06
|
||||
7.610204220E-01 2.334002852E-01 1.221891880E+00 1.330427919E-02 -1.496999971E-06
|
||||
7.613717914E-01 2.354002893E-01 1.221894383E+00 1.423600502E-02 -1.496999971E-06
|
||||
7.617232203E-01 2.374002784E-01 1.221896648E+00 1.413048245E-02 -1.496999971E-06
|
||||
7.620745897E-01 2.394002825E-01 1.221899033E+00 1.456649043E-02 -1.496999971E-06
|
||||
7.624260187E-01 2.414002866E-01 1.221643090E+00 1.519760117E-02 -1.496999971E-06
|
||||
7.627773881E-01 2.434002906E-01 1.221474886E+00 1.559697464E-02 -2.264690465E-06
|
||||
7.631288171E-01 2.454002798E-01 1.221132398E+00 1.572621241E-02 -2.629828259E-06
|
||||
7.634801865E-01 2.474002838E-01 1.220851541E+00 1.606504060E-02 -2.227343657E-06
|
||||
7.638316154E-01 2.494002879E-01 1.220758796E+00 1.657165401E-02 -1.824790957E-06
|
||||
7.641829848E-01 2.514002919E-01 1.220703244E+00 1.717803627E-02 -1.496999971E-06
|
||||
7.645344138E-01 2.534002960E-01 1.220518231E+00 1.806732267E-02 -1.496999971E-06
|
||||
7.648857832E-01 2.554002702E-01 1.220243573E+00 1.898442395E-02 -2.703593282E-06
|
||||
7.652372122E-01 2.574002743E-01 1.219979048E+00 1.920063421E-02 -1.273061025E-05
|
||||
7.655885816E-01 2.594002783E-01 1.219443798E+00 2.064314485E-02 -1.929957079E-06
|
||||
7.659400105E-01 2.614002824E-01 1.219147563E+00 2.099686675E-02 -1.496999971E-06
|
||||
7.662913799E-01 2.634002864E-01 1.218620658E+00 2.197328582E-02 -1.496999971E-06
|
||||
7.666428089E-01 2.654002905E-01 1.218471169E+00 2.206146531E-02 -1.496999971E-06
|
||||
7.669941783E-01 2.674002945E-01 1.218521476E+00 2.242718637E-02 -1.496999971E-06
|
||||
7.673456073E-01 2.694002688E-01 1.218592167E+00 2.283777483E-02 -1.496999971E-06
|
||||
7.676969767E-01 2.714002728E-01 1.218697906E+00 2.305546403E-02 -1.496999971E-06
|
||||
7.680484056E-01 2.734002769E-01 1.218834877E+00 2.360500582E-02 -1.496999971E-06
|
||||
7.683997750E-01 2.754002810E-01 1.218721986E+00 2.469158918E-02 -1.496999971E-06
|
||||
7.687512040E-01 2.774002850E-01 1.218567133E+00 2.598791383E-02 -1.496999971E-06
|
||||
7.691026330E-01 2.794002891E-01 1.218316317E+00 2.717596106E-02 -1.496999971E-06
|
||||
7.694540024E-01 2.814002931E-01 1.218169570E+00 2.831859328E-02 -1.496999971E-06
|
||||
7.698054314E-01 2.834002972E-01 1.217861772E+00 2.925542183E-02 -1.496999971E-06
|
||||
7.701568007E-01 2.854002714E-01 1.217632771E+00 2.970728278E-02 -1.496999971E-06
|
||||
7.705082297E-01 2.874002755E-01 1.217363358E+00 3.020265885E-02 -1.496999971E-06
|
||||
7.708595991E-01 2.894002795E-01 1.217144251E+00 3.070632368E-02 -1.496999971E-06
|
||||
7.712110281E-01 2.914002836E-01 1.217005730E+00 3.121411800E-02 -1.496999971E-06
|
||||
7.715623975E-01 2.934002876E-01 1.216778755E+00 3.190691024E-02 -1.496999971E-06
|
||||
7.719138265E-01 2.954002917E-01 1.216706991E+00 3.293456510E-02 -2.468998446E-06
|
||||
7.722651958E-01 2.974002957E-01 1.216711640E+00 3.384362534E-02 -4.875293598E-06
|
||||
7.726166248E-01 2.994002700E-01 1.216638207E+00 3.465225175E-02 -4.472738510E-06
|
||||
7.729679942E-01 3.014002740E-01 1.216553211E+00 3.542314097E-02 -4.070251634E-06
|
||||
7.733194232E-01 3.034002781E-01 1.216303945E+00 3.585704044E-02 -3.667697001E-06
|
||||
7.736707926E-01 3.054002821E-01 1.215957999E+00 3.630624339E-02 -3.265210353E-06
|
||||
7.740222216E-01 3.074002862E-01 1.215739012E+00 3.680217639E-02 -2.862655265E-06
|
||||
7.743735909E-01 3.094002903E-01 1.215579391E+00 3.739678487E-02 -2.460168616E-06
|
||||
7.747250199E-01 3.114002943E-01 1.215425134E+00 3.812785074E-02 -2.057613756E-06
|
||||
7.750763893E-01 3.134002984E-01 1.215332627E+00 3.893785551E-02 -1.655126994E-06
|
||||
7.754278183E-01 3.154002726E-01 1.215278029E+00 3.967872635E-02 -1.496999971E-06
|
||||
7.757791877E-01 3.174002767E-01 1.215354800E+00 4.071223363E-02 -1.496999971E-06
|
||||
7.761306167E-01 3.194002807E-01 1.215292096E+00 4.171522707E-02 -1.496999971E-06
|
||||
7.764819860E-01 3.214002848E-01 1.215496898E+00 4.259167612E-02 -1.496999971E-06
|
||||
7.768334150E-01 3.234002888E-01 1.215539336E+00 4.343511909E-02 -1.496999971E-06
|
||||
7.771847844E-01 3.254002929E-01 1.215452433E+00 4.423473775E-02 -1.496999971E-06
|
||||
7.775362134E-01 3.274002969E-01 1.215380907E+00 4.496581480E-02 -1.496999971E-06
|
||||
7.778875828E-01 3.294002712E-01 1.215216756E+00 4.564724490E-02 -1.496999971E-06
|
||||
7.782390118E-01 3.314002752E-01 1.215082884E+00 4.628736153E-02 -1.496999971E-06
|
||||
7.785903811E-01 3.334002793E-01 1.215233564E+00 4.692546651E-02 -1.496999971E-06
|
||||
7.789418101E-01 3.354002833E-01 1.215546846E+00 4.770669714E-02 -1.496999971E-06
|
||||
7.792931795E-01 3.374002874E-01 1.215602636E+00 4.872192070E-02 -1.496999971E-06
|
||||
7.796446085E-01 3.394002914E-01 1.215620518E+00 4.957959801E-02 -1.496999971E-06
|
||||
7.799959779E-01 3.414002955E-01 1.215925336E+00 5.043838918E-02 -1.496999971E-06
|
||||
7.803474069E-01 3.434002697E-01 1.215590715E+00 5.126076937E-02 -1.496999971E-06
|
@ -0,0 +1,158 @@
|
||||
# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case
|
||||
# The lines were drawn by hand to be "visually" normal to the airfoil surface;
|
||||
# however, whether it is normal or not does not matter because the CFD is compared along the same lines.
|
||||
#
|
||||
# In these lines, experimental data were interpolated via Tecplot software onto
|
||||
# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002
|
||||
# (except at the last station, where the points start at d/c=.006 off the surface)
|
||||
# Points were also added AT the surface, with u=v=uv=0
|
||||
#
|
||||
# x and y are normalized by chord
|
||||
# u and v are each normalized by Uref
|
||||
# uv = u'v' is normalized by Uref^2
|
||||
# Uref is the reference velocity, located about 1 chord below and behind the airfoil
|
||||
# (from CFD tests, Uref is roughly 0.93*Uinf)
|
||||
#
|
||||
# VARIABLES = "x","y","u","v","uv"
|
||||
# ZONE T="x=.7863"
|
||||
7.863000035E-01 5.103440955E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00
|
||||
7.870670557E-01 5.503441021E-02 1.104046404E-01 6.222463213E-03 -4.233519547E-03
|
||||
7.874505520E-01 5.703441054E-02 1.534690559E-01 1.931362669E-03 -5.694324616E-03
|
||||
7.878340483E-01 5.903441086E-02 1.943954825E-01 -3.710327903E-03 -6.712319329E-03
|
||||
7.882175446E-01 6.103441119E-02 2.466309816E-01 -9.717693552E-03 -7.663001772E-03
|
||||
7.886011004E-01 6.303440779E-02 3.003671169E-01 -1.639932580E-02 -8.488739841E-03
|
||||
7.889845967E-01 6.503441185E-02 3.544923663E-01 -2.303961292E-02 -9.202652611E-03
|
||||
7.893680930E-01 6.703440845E-02 4.137708545E-01 -2.874968387E-02 -9.829375893E-03
|
||||
7.897516489E-01 6.903441250E-02 4.721292555E-01 -3.349543363E-02 -1.035816874E-02
|
||||
7.901351452E-01 7.103440911E-02 5.281629562E-01 -3.727769479E-02 -1.088869199E-02
|
||||
7.905186415E-01 7.303441316E-02 5.843275785E-01 -4.097607359E-02 -1.123053115E-02
|
||||
7.909021378E-01 7.503440976E-02 6.473068595E-01 -4.376775399E-02 -1.118548773E-02
|
||||
7.912856936E-01 7.703441381E-02 7.124217749E-01 -4.608371481E-02 -1.083056070E-02
|
||||
7.916691899E-01 7.903441042E-02 7.723341584E-01 -4.729073495E-02 -1.032292284E-02
|
||||
7.920526862E-01 8.103440702E-02 8.308539391E-01 -4.794502258E-02 -9.679212235E-03
|
||||
7.924362421E-01 8.303441107E-02 8.892290592E-01 -4.835885391E-02 -8.911394514E-03
|
||||
7.928197384E-01 8.503440768E-02 9.471532702E-01 -4.803965613E-02 -8.060910739E-03
|
||||
7.932032347E-01 8.703441173E-02 9.961301088E-01 -4.655485228E-02 -7.178722415E-03
|
||||
7.935867310E-01 8.903440833E-02 1.026225805E+00 -4.479843006E-02 -6.160418037E-03
|
||||
7.939702868E-01 9.103441238E-02 1.076096058E+00 -4.329866916E-02 -4.977064207E-03
|
||||
7.943537831E-01 9.303440899E-02 1.109600306E+00 -4.198253527E-02 -3.917458002E-03
|
||||
7.947372794E-01 9.503441304E-02 1.133484840E+00 -4.135112464E-02 -3.102838527E-03
|
||||
7.951208353E-01 9.703440964E-02 1.151930809E+00 -4.015773162E-02 -2.371136565E-03
|
||||
7.955043316E-01 9.903441370E-02 1.164886594E+00 -3.860485926E-02 -1.761658350E-03
|
||||
7.958878279E-01 1.010344103E-01 1.172944546E+00 -3.699833527E-02 -1.289088512E-03
|
||||
7.962713242E-01 1.030344069E-01 1.179394484E+00 -3.536845371E-02 -9.229945135E-04
|
||||
7.966548800E-01 1.050344110E-01 1.185206890E+00 -3.364710137E-02 -6.178200711E-04
|
||||
7.970383763E-01 1.070344076E-01 1.189366460E+00 -3.199693933E-02 -3.763755376E-04
|
||||
7.974218726E-01 1.090344116E-01 1.191968679E+00 -3.079179302E-02 -2.581923327E-04
|
||||
7.978054285E-01 1.110344082E-01 1.193111062E+00 -2.962821908E-02 -2.254491119E-04
|
||||
7.981889248E-01 1.130344123E-01 1.194126129E+00 -2.855974995E-02 -1.640613918E-04
|
||||
7.985724211E-01 1.150344089E-01 1.193746090E+00 -2.740922384E-02 -1.191753472E-04
|
||||
7.989559174E-01 1.170344129E-01 1.193912864E+00 -2.626183070E-02 -7.682414434E-05
|
||||
7.993394732E-01 1.190344095E-01 1.194122076E+00 -2.517336421E-02 -4.602672561E-05
|
||||
7.997229695E-01 1.210344136E-01 1.194393396E+00 -2.430293895E-02 -1.730312579E-05
|
||||
8.001064658E-01 1.230344102E-01 1.194616199E+00 -2.344303764E-02 1.088109343E-06
|
||||
8.004900217E-01 1.250344068E-01 1.194659829E+00 -2.246982418E-02 9.919164768E-06
|
||||
8.008735180E-01 1.270344108E-01 1.194653988E+00 -2.149512060E-02 1.666318167E-05
|
||||
8.012570143E-01 1.290344149E-01 1.194846630E+00 -2.072316222E-02 2.718519863E-05
|
||||
8.016405106E-01 1.310344040E-01 1.194723129E+00 -2.009287290E-02 3.624560850E-05
|
||||
8.020240664E-01 1.330344081E-01 1.194652557E+00 -1.941400580E-02 3.313915659E-05
|
||||
8.024075627E-01 1.350344121E-01 1.194822669E+00 -1.845091023E-02 3.618890696E-05
|
||||
8.027910590E-01 1.370344162E-01 1.194863319E+00 -1.748475991E-02 3.663600000E-05
|
||||
8.031746149E-01 1.390344054E-01 1.194886446E+00 -1.661108062E-02 3.385040327E-05
|
||||
8.035581112E-01 1.410344094E-01 1.195066571E+00 -1.577586681E-02 3.285867570E-05
|
||||
8.039416075E-01 1.430344135E-01 1.195325613E+00 -1.487619523E-02 3.315153299E-05
|
||||
8.043251038E-01 1.450344175E-01 1.195553660E+00 -1.378602162E-02 3.344439028E-05
|
||||
8.047086596E-01 1.470344067E-01 1.195713520E+00 -1.257608458E-02 3.245985135E-05
|
||||
8.050921559E-01 1.490344107E-01 1.196008205E+00 -1.164254826E-02 2.730328924E-05
|
||||
8.054756522E-01 1.510344148E-01 1.196383476E+00 -1.107371412E-02 2.584900540E-05
|
||||
8.058592081E-01 1.530344039E-01 1.196627975E+00 -1.013548579E-02 2.614190817E-05
|
||||
8.062427044E-01 1.550344080E-01 1.196736336E+00 -9.423847310E-03 2.643476364E-05
|
||||
8.066262007E-01 1.570344120E-01 1.197050095E+00 -8.647262119E-03 2.672762093E-05
|
||||
8.070096970E-01 1.590344161E-01 1.197373867E+00 -7.860111073E-03 2.158723146E-05
|
||||
8.073932528E-01 1.610344052E-01 1.197977781E+00 -7.557518315E-03 1.968799916E-05
|
||||
8.077767491E-01 1.630344093E-01 1.198433876E+00 -7.157773245E-03 1.968799916E-05
|
||||
8.081602454E-01 1.650344133E-01 1.198539853E+00 -6.217233371E-03 1.968799916E-05
|
||||
8.085438013E-01 1.670344174E-01 1.198411822E+00 -4.941906314E-03 1.971799429E-05
|
||||
8.089272976E-01 1.690344065E-01 1.198305130E+00 -4.143625498E-03 2.001085340E-05
|
||||
8.093107939E-01 1.710344106E-01 1.198574066E+00 -4.146236461E-03 2.030371252E-05
|
||||
8.096942902E-01 1.730344146E-01 1.198599815E+00 -3.820977174E-03 2.059656981E-05
|
||||
8.100778461E-01 1.750344038E-01 1.199013591E+00 -3.767105052E-03 2.088947440E-05
|
||||
8.104613423E-01 1.770344079E-01 1.199303389E+00 -3.114134772E-03 2.118233169E-05
|
||||
8.108448386E-01 1.790344119E-01 1.199571848E+00 -2.774815541E-03 2.147519081E-05
|
||||
8.112283945E-01 1.810344160E-01 1.199541807E+00 -1.932192012E-03 2.176809357E-05
|
||||
8.116118908E-01 1.830344051E-01 1.199460030E+00 -9.261423256E-04 2.206095269E-05
|
||||
8.119953871E-01 1.850344092E-01 1.199413419E+00 5.015896750E-05 2.235380998E-05
|
||||
8.123788834E-01 1.870344132E-01 1.199286461E+00 1.184071065E-03 2.264666909E-05
|
||||
8.127624393E-01 1.890344173E-01 1.199107170E+00 2.302330919E-03 2.198169750E-05
|
||||
8.131459355E-01 1.910344064E-01 1.199267864E+00 2.761600073E-03 1.968799916E-05
|
||||
8.135294318E-01 1.930344105E-01 1.199260354E+00 3.570149187E-03 1.968799916E-05
|
||||
8.139129877E-01 1.950344145E-01 1.199186921E+00 4.419574514E-03 1.968799916E-05
|
||||
8.142964840E-01 1.970344037E-01 1.199101090E+00 5.294322968E-03 1.968799916E-05
|
||||
8.146799803E-01 1.990344077E-01 1.198821902E+00 6.212684326E-03 1.968799916E-05
|
||||
8.150634766E-01 2.010344118E-01 1.198500872E+00 7.332442794E-03 1.968799916E-05
|
||||
8.154470325E-01 2.030344158E-01 1.198231101E+00 8.256597444E-03 1.730875374E-05
|
||||
8.158305287E-01 2.050344050E-01 1.198157549E+00 8.969106711E-03 1.536879427E-05
|
||||
8.162140250E-01 2.070344090E-01 1.198135614E+00 9.807937779E-03 1.580808203E-05
|
||||
8.165975809E-01 2.090344131E-01 1.198057890E+00 1.035338733E-02 1.624743891E-05
|
||||
8.169810772E-01 2.110344172E-01 1.197770000E+00 1.079956163E-02 1.756978781E-05
|
||||
8.173645735E-01 2.130344063E-01 1.197864056E+00 1.110932417E-02 1.968799916E-05
|
||||
8.177480698E-01 2.150344104E-01 1.198122978E+00 1.156009547E-02 1.968799916E-05
|
||||
8.181316257E-01 2.170344144E-01 1.197994590E+00 1.222070865E-02 1.968799916E-05
|
||||
8.185151219E-01 2.190344036E-01 1.197746158E+00 1.298833266E-02 1.968799916E-05
|
||||
8.188986182E-01 2.210344076E-01 1.197678566E+00 1.378579438E-02 1.968799916E-05
|
||||
8.192821741E-01 2.230344117E-01 1.197597504E+00 1.440140232E-02 1.968799916E-05
|
||||
8.196656704E-01 2.250344157E-01 1.197677732E+00 1.503551193E-02 1.968799916E-05
|
||||
8.200491667E-01 2.270344049E-01 1.197901249E+00 1.584428735E-02 1.968799916E-05
|
||||
8.204326630E-01 2.290344089E-01 1.197959900E+00 1.668373495E-02 1.699323548E-05
|
||||
8.208162189E-01 2.310344130E-01 1.197834134E+00 1.746506244E-02 9.587694876E-06
|
||||
8.211997151E-01 2.330344170E-01 1.197822809E+00 1.775045134E-02 1.968799916E-05
|
||||
8.215832114E-01 2.350344062E-01 1.197854400E+00 1.857114211E-02 1.968799916E-05
|
||||
8.219667673E-01 2.370344102E-01 1.197437882E+00 1.981303655E-02 1.968799916E-05
|
||||
8.223502636E-01 2.390344143E-01 1.197261453E+00 2.095511556E-02 1.968799916E-05
|
||||
8.227337599E-01 2.410344034E-01 1.197208047E+00 2.186101861E-02 1.968799916E-05
|
||||
8.231172562E-01 2.430344075E-01 1.197205901E+00 2.240604535E-02 1.968799916E-05
|
||||
8.235008121E-01 2.450344115E-01 1.197353840E+00 2.310622297E-02 1.968799916E-05
|
||||
8.238843083E-01 2.470344156E-01 1.197549462E+00 2.390645817E-02 1.968799916E-05
|
||||
8.242678046E-01 2.490344048E-01 1.197664738E+00 2.436598763E-02 1.968799916E-05
|
||||
8.246513605E-01 2.510344088E-01 1.197821140E+00 2.469850518E-02 1.968799916E-05
|
||||
8.250348568E-01 2.530344129E-01 1.197864413E+00 2.509179898E-02 1.928432175E-05
|
||||
8.254183531E-01 2.550344169E-01 1.197957993E+00 2.553644590E-02 1.386487747E-05
|
||||
8.258018494E-01 2.570344210E-01 1.197916627E+00 2.630921267E-02 1.407970740E-05
|
||||
8.261854053E-01 2.590344250E-01 1.197880983E+00 2.726182900E-02 1.451906064E-05
|
||||
8.265689015E-01 2.610343993E-01 1.197890759E+00 2.809677273E-02 1.495834567E-05
|
||||
8.269523978E-01 2.630344033E-01 1.197985649E+00 2.885899693E-02 1.539763070E-05
|
||||
8.273359537E-01 2.650344074E-01 1.197958231E+00 2.960515022E-02 1.178156799E-05
|
||||
8.277194500E-01 2.670344114E-01 1.197856784E+00 3.020202741E-02 6.976999885E-06
|
||||
8.281029463E-01 2.690344155E-01 1.197905779E+00 3.067040071E-02 6.976999885E-06
|
||||
8.284864426E-01 2.710344195E-01 1.198020935E+00 3.135097027E-02 6.976999885E-06
|
||||
8.288699985E-01 2.730344236E-01 1.198160052E+00 3.209611773E-02 6.976999885E-06
|
||||
8.292534947E-01 2.750343978E-01 1.198354721E+00 3.270123899E-02 6.976999885E-06
|
||||
8.296369910E-01 2.770344019E-01 1.197986245E+00 3.350704908E-02 6.976999885E-06
|
||||
8.300205469E-01 2.790344059E-01 1.198227763E+00 3.413919359E-02 6.976999885E-06
|
||||
8.304040432E-01 2.810344100E-01 1.198223948E+00 3.501098603E-02 6.976999885E-06
|
||||
8.307875395E-01 2.830344141E-01 1.198306680E+00 3.586030379E-02 6.976999885E-06
|
||||
8.311710358E-01 2.850344181E-01 1.198399186E+00 3.660108522E-02 6.976999885E-06
|
||||
8.315545917E-01 2.870344222E-01 1.198355675E+00 3.733030334E-02 6.976999885E-06
|
||||
8.319380879E-01 2.890343964E-01 1.198200941E+00 3.808672354E-02 6.976999885E-06
|
||||
8.323215842E-01 2.910344005E-01 1.197944880E+00 3.879895806E-02 6.976999885E-06
|
||||
8.327051401E-01 2.930344045E-01 1.198068976E+00 3.949836642E-02 6.976999885E-06
|
||||
8.330886364E-01 2.950344086E-01 1.198336005E+00 4.020129517E-02 6.976999885E-06
|
||||
8.334721327E-01 2.970344126E-01 1.198145747E+00 4.102170095E-02 6.976999885E-06
|
||||
8.338556290E-01 2.990344167E-01 1.197872519E+00 4.194267467E-02 6.976999885E-06
|
||||
8.342391849E-01 3.010344207E-01 1.197545409E+00 4.266502336E-02 6.976999885E-06
|
||||
8.346226811E-01 3.030344248E-01 1.197246075E+00 4.344221577E-02 6.976999885E-06
|
||||
8.350061774E-01 3.050343990E-01 1.196911097E+00 4.421716928E-02 6.976999885E-06
|
||||
8.353897333E-01 3.070344031E-01 1.196702719E+00 4.497303814E-02 6.976999885E-06
|
||||
8.357732296E-01 3.090344071E-01 1.196578503E+00 4.577275738E-02 6.976999885E-06
|
||||
8.361567259E-01 3.110344112E-01 1.196386576E+00 4.660337418E-02 6.976999885E-06
|
||||
8.365402222E-01 3.130344152E-01 1.196557045E+00 4.742880538E-02 6.976999885E-06
|
||||
8.369237781E-01 3.150344193E-01 1.196970224E+00 4.811997339E-02 6.976999885E-06
|
||||
8.373072743E-01 3.170344234E-01 1.197291017E+00 4.878085852E-02 6.976999885E-06
|
||||
8.376907706E-01 3.190343976E-01 1.196827054E+00 4.965663329E-02 6.976999885E-06
|
||||
8.380743265E-01 3.210344017E-01 1.196303964E+00 5.058711767E-02 6.976999885E-06
|
||||
8.384578228E-01 3.230344057E-01 1.196248055E+00 5.136715248E-02 6.976999885E-06
|
||||
8.388413191E-01 3.250344098E-01 1.196239233E+00 5.215001479E-02 6.976999885E-06
|
||||
8.392248154E-01 3.270344138E-01 1.196074963E+00 5.295669287E-02 6.976999885E-06
|
||||
8.396083713E-01 3.290344179E-01 1.195670128E+00 5.379037187E-02 6.976999885E-06
|
||||
8.399918675E-01 3.310344219E-01 1.195248365E+00 5.464861542E-02 6.976999885E-06
|
||||
8.403753638E-01 3.330343962E-01 1.195271015E+00 5.544150993E-02 6.976999885E-06
|
@ -0,0 +1,158 @@
|
||||
# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case
|
||||
# The lines were drawn by hand to be "visually" normal to the airfoil surface;
|
||||
# however, whether it is normal or not does not matter because the CFD is compared along the same lines.
|
||||
#
|
||||
# In these lines, experimental data were interpolated via Tecplot software onto
|
||||
# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002
|
||||
# (except at the last station, where the points start at d/c=.006 off the surface)
|
||||
# Points were also added AT the surface, with u=v=uv=0
|
||||
#
|
||||
# x and y are normalized by chord
|
||||
# u and v are each normalized by Uref
|
||||
# uv = u'v' is normalized by Uref^2
|
||||
# Uref is the reference velocity, located about 1 chord below and behind the airfoil
|
||||
# (from CFD tests, Uref is roughly 0.93*Uinf)
|
||||
#
|
||||
# VARIABLES = "x","y","u","v","uv"
|
||||
# ZONE T="x=.8418"
|
||||
8.417999744E-01 3.950987384E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00
|
||||
8.426239491E-01 4.350987449E-02 2.115042135E-02 2.061068639E-02 -2.939287573E-03
|
||||
8.430358768E-01 4.550987482E-02 4.742512479E-02 2.573156543E-02 -4.837496206E-03
|
||||
8.434478641E-01 4.750987515E-02 7.005203515E-02 1.986030862E-02 -5.732415710E-03
|
||||
8.438598514E-01 4.950987548E-02 9.469659626E-02 1.432575658E-02 -6.587041542E-03
|
||||
8.442717791E-01 5.150987208E-02 1.265623122E-01 9.284576401E-03 -7.394878194E-03
|
||||
8.446837664E-01 5.350987241E-02 1.597132534E-01 4.544444848E-03 -8.188477717E-03
|
||||
8.450956941E-01 5.550987273E-02 1.945077181E-01 3.638570342E-05 -8.926468901E-03
|
||||
8.455076814E-01 5.750987306E-02 2.337907255E-01 -4.110279493E-03 -9.658259340E-03
|
||||
8.459196687E-01 5.950987339E-02 2.744057477E-01 -8.616485633E-03 -1.039771736E-02
|
||||
8.463315964E-01 6.150987372E-02 3.181357980E-01 -1.287958585E-02 -1.105137449E-02
|
||||
8.467435837E-01 6.350987405E-02 3.658787906E-01 -1.671673916E-02 -1.164046302E-02
|
||||
8.471555114E-01 6.550987065E-02 4.169428349E-01 -2.073308639E-02 -1.213998441E-02
|
||||
8.475674987E-01 6.750987470E-02 4.682931900E-01 -2.454281412E-02 -1.250772271E-02
|
||||
8.479794860E-01 6.950987130E-02 5.192583799E-01 -2.774923667E-02 -1.269168314E-02
|
||||
8.483914137E-01 7.150987536E-02 5.692949891E-01 -3.048752062E-02 -1.266250480E-02
|
||||
8.488034010E-01 7.350987196E-02 6.198252439E-01 -3.268514574E-02 -1.252741832E-02
|
||||
8.492153883E-01 7.550987601E-02 6.718124747E-01 -3.409760445E-02 -1.237599365E-02
|
||||
8.496273160E-01 7.750987262E-02 7.255227566E-01 -3.474511951E-02 -1.206417941E-02
|
||||
8.500393033E-01 7.950987667E-02 7.783651352E-01 -3.532743081E-02 -1.171550713E-02
|
||||
8.504512310E-01 8.150987327E-02 8.323464990E-01 -3.557547927E-02 -1.117346995E-02
|
||||
8.508632183E-01 8.350987732E-02 8.816121817E-01 -3.513386846E-02 -1.016614400E-02
|
||||
8.512752056E-01 8.550987393E-02 9.279229641E-01 -3.461688384E-02 -9.105565026E-03
|
||||
8.516871333E-01 8.750987053E-02 9.711433053E-01 -3.402329981E-02 -8.031779900E-03
|
||||
8.520991206E-01 8.950987458E-02 1.010075212E+00 -3.329454735E-02 -6.846671924E-03
|
||||
8.525110483E-01 9.150987118E-02 1.044139028E+00 -3.241092712E-02 -5.765608046E-03
|
||||
8.529230356E-01 9.350987524E-02 1.072672009E+00 -3.119653650E-02 -5.192209501E-03
|
||||
8.533350229E-01 9.550987184E-02 1.095624566E+00 -2.962668613E-02 -4.376970697E-03
|
||||
8.537469506E-01 9.750987589E-02 1.114759684E+00 -2.791664004E-02 -3.680349560E-03
|
||||
8.541589379E-01 9.950987250E-02 1.129567504E+00 -2.649518289E-02 -2.978009405E-03
|
||||
8.545709252E-01 1.015098765E-01 1.140593529E+00 -2.528946474E-02 -2.391171409E-03
|
||||
8.549828529E-01 1.035098732E-01 1.150204659E+00 -2.403056249E-02 -1.810456626E-03
|
||||
8.553948402E-01 1.055098772E-01 1.156614661E+00 -2.285386622E-02 -1.338670030E-03
|
||||
8.558067679E-01 1.075098738E-01 1.161896110E+00 -2.189568244E-02 -1.043383498E-03
|
||||
8.562187552E-01 1.095098704E-01 1.166771293E+00 -2.098241076E-02 -8.422471001E-04
|
||||
8.566307425E-01 1.115098745E-01 1.170317411E+00 -1.994745247E-02 -6.805654848E-04
|
||||
8.570426702E-01 1.135098711E-01 1.172231793E+00 -1.890485361E-02 -6.193968584E-04
|
||||
8.574546576E-01 1.155098751E-01 1.175773859E+00 -1.779313944E-02 -5.030652974E-04
|
||||
8.578665853E-01 1.175098717E-01 1.178200006E+00 -1.694512926E-02 -3.911082749E-04
|
||||
8.582785726E-01 1.195098758E-01 1.178876996E+00 -1.612342708E-02 -2.911441552E-04
|
||||
8.586905599E-01 1.215098724E-01 1.179626346E+00 -1.510902587E-02 -2.237942972E-04
|
||||
8.591024876E-01 1.235098764E-01 1.179913402E+00 -1.434299722E-02 -1.758382859E-04
|
||||
8.595144749E-01 1.255098730E-01 1.180005550E+00 -1.371637452E-02 -1.183551140E-04
|
||||
8.599264622E-01 1.275098771E-01 1.180661678E+00 -1.317671314E-02 -7.907581312E-05
|
||||
8.603383899E-01 1.295098811E-01 1.181346059E+00 -1.266163122E-02 -6.011825462E-05
|
||||
8.607503772E-01 1.315098703E-01 1.181572437E+00 -1.209191326E-02 -4.678347614E-05
|
||||
8.611623049E-01 1.335098743E-01 1.181680441E+00 -1.134327054E-02 -2.288327414E-05
|
||||
8.615742922E-01 1.355098784E-01 1.180522084E+00 -1.046580635E-02 -7.296884633E-06
|
||||
8.619862795E-01 1.375098675E-01 1.180880904E+00 -9.763471782E-03 1.094496929E-05
|
||||
8.623982072E-01 1.395098716E-01 1.180048943E+00 -9.039872326E-03 2.805700205E-05
|
||||
8.628101945E-01 1.415098757E-01 1.179892302E+00 -8.267946541E-03 3.616905087E-05
|
||||
8.632221818E-01 1.435098797E-01 1.180004239E+00 -7.588352542E-03 3.751314216E-05
|
||||
8.636341095E-01 1.455098689E-01 1.180059314E+00 -6.925816182E-03 3.683864270E-05
|
||||
8.640460968E-01 1.475098729E-01 1.179728627E+00 -6.001183297E-03 4.313597310E-05
|
||||
8.644580245E-01 1.495098770E-01 1.179350019E+00 -4.978226032E-03 4.907775656E-05
|
||||
8.648700118E-01 1.515098810E-01 1.179251671E+00 -4.146579653E-03 4.934699973E-05
|
||||
8.652819991E-01 1.535098702E-01 1.179157615E+00 -3.338039387E-03 4.984111001E-05
|
||||
8.656939268E-01 1.555098742E-01 1.178789139E+00 -2.353330608E-03 5.064978905E-05
|
||||
8.661059141E-01 1.575098783E-01 1.179020524E+00 -1.823851489E-03 5.096440145E-05
|
||||
8.665178418E-01 1.595098674E-01 1.178890824E+00 -8.869240992E-04 5.127897020E-05
|
||||
8.669298291E-01 1.615098715E-01 1.178744197E+00 -2.256324951E-04 5.159358261E-05
|
||||
8.673418164E-01 1.635098755E-01 1.178710699E+00 3.637142363E-04 5.051175685E-05
|
||||
8.677537441E-01 1.655098796E-01 1.178452373E+00 1.136953826E-03 4.934699973E-05
|
||||
8.681657314E-01 1.675098687E-01 1.178039312E+00 1.979317050E-03 4.934699973E-05
|
||||
8.685777187E-01 1.695098728E-01 1.177744508E+00 2.782102907E-03 4.934699973E-05
|
||||
8.689896464E-01 1.715098768E-01 1.177747011E+00 3.537458600E-03 4.934699973E-05
|
||||
8.694016337E-01 1.735098809E-01 1.177741408E+00 4.300540313E-03 4.934699973E-05
|
||||
8.698135614E-01 1.755098701E-01 1.177654505E+00 5.027492065E-03 4.850733603E-05
|
||||
8.702255487E-01 1.775098741E-01 1.177786946E+00 5.625229795E-03 4.356947102E-05
|
||||
8.706375360E-01 1.795098782E-01 1.177387714E+00 6.508445367E-03 3.705256677E-05
|
||||
8.710494637E-01 1.815098673E-01 1.177427888E+00 7.219920866E-03 3.663600000E-05
|
||||
8.714614511E-01 1.835098714E-01 1.177461505E+00 7.972745225E-03 3.663600000E-05
|
||||
8.718733788E-01 1.855098754E-01 1.177424073E+00 8.754848503E-03 3.663600000E-05
|
||||
8.722853661E-01 1.875098795E-01 1.177508712E+00 9.455179796E-03 3.663600000E-05
|
||||
8.726973534E-01 1.895098686E-01 1.177592516E+00 1.017175056E-02 3.663600000E-05
|
||||
8.731092811E-01 1.915098727E-01 1.177781582E+00 1.094372012E-02 3.663600000E-05
|
||||
8.735212684E-01 1.935098767E-01 1.178186417E+00 1.162398886E-02 3.663600000E-05
|
||||
8.739332557E-01 1.955098808E-01 1.178237438E+00 1.217637025E-02 3.663600000E-05
|
||||
8.743451834E-01 1.975098699E-01 1.178539753E+00 1.291819010E-02 3.663600000E-05
|
||||
8.747571707E-01 1.995098740E-01 1.178435683E+00 1.387238130E-02 3.663600000E-05
|
||||
8.751690984E-01 2.015098780E-01 1.178467631E+00 1.449801307E-02 3.663600000E-05
|
||||
8.755810857E-01 2.035098672E-01 1.178374052E+00 1.514986623E-02 3.663600000E-05
|
||||
8.759930730E-01 2.055098712E-01 1.178368568E+00 1.577567682E-02 3.663600000E-05
|
||||
8.764050007E-01 2.075098753E-01 1.178420424E+00 1.651952602E-02 3.663600000E-05
|
||||
8.768169880E-01 2.095098794E-01 1.178471684E+00 1.722157747E-02 3.663600000E-05
|
||||
8.772289157E-01 2.115098685E-01 1.178581953E+00 1.785558090E-02 3.663600000E-05
|
||||
8.776409030E-01 2.135098726E-01 1.178808451E+00 1.855847053E-02 3.663600000E-05
|
||||
8.780528903E-01 2.155098766E-01 1.178885460E+00 1.930280775E-02 3.663600000E-05
|
||||
8.784648180E-01 2.175098807E-01 1.178997159E+00 1.998391561E-02 3.663600000E-05
|
||||
8.788768053E-01 2.195098698E-01 1.179089904E+00 2.079351619E-02 3.663600000E-05
|
||||
8.792887926E-01 2.215098739E-01 1.179285765E+00 2.153598331E-02 3.196981561E-05
|
||||
8.797007203E-01 2.235098779E-01 1.179429531E+00 2.234333009E-02 3.168708645E-05
|
||||
8.801127076E-01 2.255098671E-01 1.179544210E+00 2.311700210E-02 2.959680751E-05
|
||||
8.805246353E-01 2.275098711E-01 1.179485083E+00 2.383316308E-02 2.816199958E-05
|
||||
8.809366226E-01 2.295098752E-01 1.179395437E+00 2.458224818E-02 2.816199958E-05
|
||||
8.813486099E-01 2.315098792E-01 1.179376006E+00 2.534399368E-02 2.816199958E-05
|
||||
8.817605376E-01 2.335098684E-01 1.179348588E+00 2.603173815E-02 2.816199958E-05
|
||||
8.821725249E-01 2.355098724E-01 1.179049730E+00 2.666795813E-02 2.816199958E-05
|
||||
8.825845122E-01 2.375098765E-01 1.178880572E+00 2.733962424E-02 2.816199958E-05
|
||||
8.829964399E-01 2.395098805E-01 1.178824186E+00 2.818078361E-02 2.816199958E-05
|
||||
8.834084272E-01 2.415098697E-01 1.178569317E+00 2.891744673E-02 2.816199958E-05
|
||||
8.838203549E-01 2.435098737E-01 1.178515315E+00 2.959562466E-02 2.726053026E-05
|
||||
8.842323422E-01 2.455098778E-01 1.178431869E+00 3.021715581E-02 2.171424421E-05
|
||||
8.846443295E-01 2.475098670E-01 1.178654552E+00 3.076088801E-02 1.968799916E-05
|
||||
8.850562572E-01 2.495098710E-01 1.179322839E+00 3.126647323E-02 1.968799916E-05
|
||||
8.854682446E-01 2.515098751E-01 1.180209041E+00 3.175609186E-02 1.968799916E-05
|
||||
8.858801723E-01 2.535098791E-01 1.180676222E+00 3.227548301E-02 1.968799916E-05
|
||||
8.862921596E-01 2.555098832E-01 1.180444837E+00 3.292297199E-02 1.968799916E-05
|
||||
8.867041469E-01 2.575098872E-01 1.180234075E+00 3.360613063E-02 1.968799916E-05
|
||||
8.871160746E-01 2.595098615E-01 1.179506779E+00 3.437909484E-02 1.968799916E-05
|
||||
8.875280619E-01 2.615098655E-01 1.178524971E+00 3.537958860E-02 1.968799916E-05
|
||||
8.879400492E-01 2.635098696E-01 1.177641153E+00 3.635263070E-02 1.968799916E-05
|
||||
8.883519769E-01 2.655098736E-01 1.177697062E+00 3.703081980E-02 1.968799916E-05
|
||||
8.887639642E-01 2.675098777E-01 1.178218484E+00 3.761563078E-02 1.968799916E-05
|
||||
8.891758919E-01 2.695098817E-01 1.178032041E+00 3.835884109E-02 1.968799916E-05
|
||||
8.895878792E-01 2.715098858E-01 1.177579880E+00 3.914830089E-02 1.968799916E-05
|
||||
8.899998665E-01 2.735098600E-01 1.177556634E+00 3.984286264E-02 1.968799916E-05
|
||||
8.904117942E-01 2.755098641E-01 1.177888989E+00 4.047796130E-02 1.968799916E-05
|
||||
8.908237815E-01 2.775098681E-01 1.177825570E+00 4.133427516E-02 1.968799916E-05
|
||||
8.912357092E-01 2.795098722E-01 1.177168250E+00 4.218364879E-02 1.968799916E-05
|
||||
8.916476965E-01 2.815098763E-01 1.176906824E+00 4.310465232E-02 1.968799916E-05
|
||||
8.920596838E-01 2.835098803E-01 1.177608490E+00 4.366749153E-02 1.968799916E-05
|
||||
8.924716115E-01 2.855098844E-01 1.177826285E+00 4.436596110E-02 1.968799916E-05
|
||||
8.928835988E-01 2.875098884E-01 1.177349210E+00 4.512366652E-02 1.968799916E-05
|
||||
8.932955861E-01 2.895098627E-01 1.177418351E+00 4.572317749E-02 1.968799916E-05
|
||||
8.937075138E-01 2.915098667E-01 1.177900672E+00 4.621217772E-02 1.968799916E-05
|
||||
8.941195011E-01 2.935098708E-01 1.177803397E+00 4.684910178E-02 1.968799916E-05
|
||||
8.945314288E-01 2.955098748E-01 1.177503467E+00 4.771730676E-02 1.968799916E-05
|
||||
8.949434161E-01 2.975098789E-01 1.176841736E+00 4.859932512E-02 1.968799916E-05
|
||||
8.953554034E-01 2.995098829E-01 1.177217126E+00 4.929685965E-02 1.965838419E-05
|
||||
8.957673311E-01 3.015098870E-01 1.176704049E+00 5.017693341E-02 9.305963431E-06
|
||||
8.961793184E-01 3.035098612E-01 1.175561070E+00 5.141053721E-02 8.235523637E-06
|
||||
8.965912461E-01 3.055098653E-01 1.175287485E+00 5.226505920E-02 7.370335425E-06
|
||||
8.970032334E-01 3.075098693E-01 1.175942540E+00 5.280529708E-02 6.976999885E-06
|
||||
8.974152207E-01 3.095098734E-01 1.176596165E+00 5.328996107E-02 6.976999885E-06
|
||||
8.978271484E-01 3.115098774E-01 1.176845551E+00 5.386979878E-02 6.976999885E-06
|
||||
8.982391357E-01 3.135098815E-01 1.177032113E+00 5.451786146E-02 6.976999885E-06
|
||||
8.986511230E-01 3.155098855E-01 1.177333832E+00 5.515537038E-02 7.763435860E-06
|
||||
8.990630507E-01 3.175098598E-01 1.177712440E+00 5.568408221E-02 9.021727237E-06
|
||||
8.994750381E-01 3.195098639E-01 1.176970601E+00 5.641528219E-02 9.389701518E-06
|
||||
8.998869658E-01 3.215098679E-01 1.175830960E+00 5.759849399E-02 7.501183973E-06
|
@ -0,0 +1,158 @@
|
||||
# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case
|
||||
# The lines were drawn by hand to be "visually" normal to the airfoil surface;
|
||||
# however, whether it is normal or not does not matter because the CFD is compared along the same lines.
|
||||
#
|
||||
# In these lines, experimental data were interpolated via Tecplot software onto
|
||||
# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002
|
||||
# (except at the last station, where the points start at d/c=.006 off the surface)
|
||||
# Points were also added AT the surface, with u=v=uv=0
|
||||
#
|
||||
# x and y are normalized by chord
|
||||
# u and v are each normalized by Uref
|
||||
# uv = u'v' is normalized by Uref^2
|
||||
# Uref is the reference velocity, located about 1 chord below and behind the airfoil
|
||||
# (from CFD tests, Uref is roughly 0.93*Uinf)
|
||||
#
|
||||
# VARIABLES = "x","y","u","v","uv"
|
||||
# ZONE T="x=.8973"
|
||||
8.973000050E-01 2.680198476E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00
|
||||
8.982155323E-01 3.080198541E-02 -4.320315272E-02 4.994251952E-02 -3.154789330E-03
|
||||
8.986733556E-01 3.280198574E-02 -3.807992488E-02 4.712387919E-02 -3.874282120E-03
|
||||
8.991311193E-01 3.480198607E-02 -2.530865185E-02 4.255365953E-02 -4.553004168E-03
|
||||
8.995888829E-01 3.680198640E-02 -9.062631056E-03 3.806476668E-02 -5.255196244E-03
|
||||
9.000466466E-01 3.880198672E-02 1.057281066E-02 3.354593366E-02 -5.960272159E-03
|
||||
9.005044103E-01 4.080198705E-02 3.280668706E-02 2.905786224E-02 -6.660863291E-03
|
||||
9.009622335E-01 4.280198365E-02 5.681682378E-02 2.470996790E-02 -7.383705117E-03
|
||||
9.014199972E-01 4.480198398E-02 8.282847703E-02 2.048475854E-02 -8.183967322E-03
|
||||
9.018777609E-01 4.680198431E-02 1.105795279E-01 1.627186686E-02 -8.963810280E-03
|
||||
9.023355246E-01 4.880198464E-02 1.393238306E-01 1.209890284E-02 -9.758964181E-03
|
||||
9.027933478E-01 5.080198497E-02 1.697099209E-01 8.269041777E-03 -1.055040862E-02
|
||||
9.032511115E-01 5.280198529E-02 2.003222555E-01 4.722358659E-03 -1.129505225E-02
|
||||
9.037088752E-01 5.480198562E-02 2.337442487E-01 8.321573259E-04 -1.195655670E-02
|
||||
9.041666389E-01 5.680198595E-02 2.684147358E-01 -3.175863065E-03 -1.255436148E-02
|
||||
9.046244025E-01 5.880198628E-02 3.053528666E-01 -7.211591117E-03 -1.313286647E-02
|
||||
9.050822258E-01 6.080198660E-02 3.454250097E-01 -1.116634067E-02 -1.364599634E-02
|
||||
9.055399895E-01 6.280198693E-02 3.889756203E-01 -1.498422772E-02 -1.414060500E-02
|
||||
9.059977531E-01 6.480198354E-02 4.358545840E-01 -1.864059269E-02 -1.467332616E-02
|
||||
9.064555168E-01 6.680198759E-02 4.868045449E-01 -2.201542631E-02 -1.501218323E-02
|
||||
9.069133401E-01 6.880198419E-02 5.193397403E-01 -2.477034740E-02 -1.499685086E-02
|
||||
9.073711038E-01 7.080198824E-02 5.627325773E-01 -2.688306943E-02 -1.496917382E-02
|
||||
9.078288674E-01 7.280198485E-02 6.032962799E-01 -2.850787342E-02 -1.473257504E-02
|
||||
9.082866311E-01 7.480198890E-02 6.450559497E-01 -2.987407520E-02 -1.431644987E-02
|
||||
9.087443948E-01 7.680198550E-02 6.965213418E-01 -3.102406673E-02 -1.380247623E-02
|
||||
9.092022181E-01 7.880198210E-02 7.505368590E-01 -3.192285448E-02 -1.321566850E-02
|
||||
9.096599817E-01 8.080198616E-02 8.031266332E-01 -3.256246820E-02 -1.252490375E-02
|
||||
9.101177454E-01 8.280198276E-02 8.477329016E-01 -3.288432583E-02 -1.185473707E-02
|
||||
9.105755091E-01 8.480198681E-02 8.823047876E-01 -3.276913241E-02 -1.128810458E-02
|
||||
9.110333323E-01 8.680198342E-02 9.167507291E-01 -3.214629367E-02 -1.048131380E-02
|
||||
9.114910960E-01 8.880198747E-02 9.524674416E-01 -3.146990761E-02 -9.387926199E-03
|
||||
9.119488597E-01 9.080198407E-02 9.851042032E-01 -3.038761020E-02 -8.376783691E-03
|
||||
9.124066234E-01 9.280198812E-02 1.017390847E+00 -2.922195755E-02 -7.038237993E-03
|
||||
9.128643870E-01 9.480198473E-02 1.048997402E+00 -2.796342596E-02 -5.747014657E-03
|
||||
9.133222103E-01 9.680198878E-02 1.074269056E+00 -2.663353644E-02 -5.016798154E-03
|
||||
9.137799740E-01 9.880198538E-02 1.089748621E+00 -2.526754141E-02 -4.561008886E-03
|
||||
9.142377377E-01 1.008019820E-01 1.102381706E+00 -2.391062491E-02 -4.061067477E-03
|
||||
9.146955013E-01 1.028019860E-01 1.114246368E+00 -2.249663323E-02 -3.518276382E-03
|
||||
9.151533246E-01 1.048019826E-01 1.123510957E+00 -2.095924318E-02 -3.003480146E-03
|
||||
9.156110883E-01 1.068019867E-01 1.131940126E+00 -1.942050271E-02 -2.482786542E-03
|
||||
9.160688519E-01 1.088019833E-01 1.139391661E+00 -1.805183850E-02 -2.050586976E-03
|
||||
9.165266156E-01 1.108019873E-01 1.144213557E+00 -1.696766913E-02 -1.642119954E-03
|
||||
9.169843793E-01 1.128019840E-01 1.148948431E+00 -1.591343060E-02 -1.420625602E-03
|
||||
9.174422026E-01 1.148019880E-01 1.152474880E+00 -1.495516673E-02 -1.205786713E-03
|
||||
9.178999662E-01 1.168019846E-01 1.155658603E+00 -1.385151595E-02 -1.032815664E-03
|
||||
9.183577299E-01 1.188019887E-01 1.157706380E+00 -1.285541523E-02 -8.772196597E-04
|
||||
9.188154936E-01 1.208019853E-01 1.158949256E+00 -1.185875293E-02 -7.456708117E-04
|
||||
9.192733169E-01 1.228019819E-01 1.159777164E+00 -1.084802859E-02 -6.406597095E-04
|
||||
9.197310805E-01 1.248019859E-01 1.160690904E+00 -9.971639141E-03 -5.430100719E-04
|
||||
9.201888442E-01 1.268019825E-01 1.162149072E+00 -9.173831902E-03 -4.448597902E-04
|
||||
9.206466079E-01 1.288019866E-01 1.163048148E+00 -8.361699060E-03 -3.480872256E-04
|
||||
9.211043715E-01 1.308019906E-01 1.163064003E+00 -7.573560346E-03 -2.678846067E-04
|
||||
9.215621948E-01 1.328019798E-01 1.163193226E+00 -6.639400497E-03 -2.022563858E-04
|
||||
9.220199585E-01 1.348019838E-01 1.163100958E+00 -5.599529017E-03 -1.312264358E-04
|
||||
9.224777222E-01 1.368019879E-01 1.162749052E+00 -4.791638348E-03 -9.417191905E-05
|
||||
9.229354858E-01 1.388019919E-01 1.162518859E+00 -4.086247645E-03 -7.749405631E-05
|
||||
9.233933091E-01 1.408019811E-01 1.162378430E+00 -3.323086537E-03 -7.099987852E-05
|
||||
9.238510728E-01 1.428019851E-01 1.162364244E+00 -2.621501219E-03 -5.580458310E-05
|
||||
9.243088365E-01 1.448019892E-01 1.162438989E+00 -2.057587961E-03 -3.162410212E-05
|
||||
9.247666001E-01 1.468019783E-01 1.162284136E+00 -1.509708003E-03 -6.604046575E-06
|
||||
9.252243638E-01 1.488019824E-01 1.162062764E+00 -7.776221028E-04 1.465289461E-05
|
||||
9.256821871E-01 1.508019865E-01 1.161870480E+00 9.433628293E-05 3.187619950E-05
|
||||
9.261399508E-01 1.528019905E-01 1.161843419E+00 8.952952921E-04 3.621351425E-05
|
||||
9.265977144E-01 1.548019797E-01 1.161719561E+00 1.696179737E-03 3.992206257E-05
|
||||
9.270554781E-01 1.568019837E-01 1.161755800E+00 2.328890376E-03 4.745700789E-05
|
||||
9.275133014E-01 1.588019878E-01 1.161815763E+00 3.004908562E-03 5.446353316E-05
|
||||
9.279710650E-01 1.608019918E-01 1.161733150E+00 3.783150110E-03 5.782099834E-05
|
||||
9.284288287E-01 1.628019810E-01 1.161594868E+00 4.524713382E-03 5.782099834E-05
|
||||
9.288865924E-01 1.648019850E-01 1.161425114E+00 5.201481748E-03 5.782099834E-05
|
||||
9.293443561E-01 1.668019891E-01 1.161182761E+00 5.929524545E-03 5.782099834E-05
|
||||
9.298021793E-01 1.688019782E-01 1.161085248E+00 6.670815405E-03 5.782099834E-05
|
||||
9.302599430E-01 1.708019823E-01 1.161119938E+00 7.478839718E-03 5.782099834E-05
|
||||
9.307177067E-01 1.728019863E-01 1.161309242E+00 8.219361305E-03 5.782099834E-05
|
||||
9.311754704E-01 1.748019904E-01 1.161371469E+00 9.030692279E-03 5.782099834E-05
|
||||
9.316332936E-01 1.768019795E-01 1.161405683E+00 9.797880426E-03 5.741425412E-05
|
||||
9.320910573E-01 1.788019836E-01 1.161437511E+00 1.056866907E-02 5.665794015E-05
|
||||
9.325488210E-01 1.808019876E-01 1.161547661E+00 1.137144677E-02 5.268649329E-05
|
||||
9.330065846E-01 1.828019917E-01 1.161594868E+00 1.224964391E-02 4.934699973E-05
|
||||
9.334643483E-01 1.848019809E-01 1.161599755E+00 1.313049532E-02 5.045288708E-05
|
||||
9.339221716E-01 1.868019849E-01 1.161659837E+00 1.389423572E-02 5.284127110E-05
|
||||
9.343799353E-01 1.888019890E-01 1.161586165E+00 1.462396886E-02 5.679271271E-05
|
||||
9.348376989E-01 1.908019781E-01 1.161275387E+00 1.549086999E-02 4.934699973E-05
|
||||
9.352954626E-01 1.928019822E-01 1.161035538E+00 1.616131142E-02 4.934699973E-05
|
||||
9.357532859E-01 1.948019862E-01 1.161511183E+00 1.668954082E-02 4.934699973E-05
|
||||
9.362110496E-01 1.968019903E-01 1.161805749E+00 1.720847748E-02 4.934699973E-05
|
||||
9.366688132E-01 1.988019794E-01 1.161223054E+00 1.795794815E-02 4.934699973E-05
|
||||
9.371265769E-01 2.008019835E-01 1.160678148E+00 1.872890256E-02 4.934699973E-05
|
||||
9.375843406E-01 2.028019875E-01 1.160656810E+00 1.939679123E-02 4.388718662E-05
|
||||
9.380421638E-01 2.048019916E-01 1.160581231E+00 2.008257806E-02 3.663600000E-05
|
||||
9.384999275E-01 2.068019807E-01 1.159632921E+00 2.094266191E-02 3.663600000E-05
|
||||
9.389576912E-01 2.088019848E-01 1.157888412E+00 2.169984020E-02 3.663600000E-05
|
||||
9.394154549E-01 2.108019888E-01 1.158440709E+00 2.244483866E-02 3.663600000E-05
|
||||
9.398732781E-01 2.128019929E-01 1.159565210E+00 2.279806696E-02 3.663600000E-05
|
||||
9.403310418E-01 2.148019820E-01 1.160829306E+00 2.292725258E-02 3.663600000E-05
|
||||
9.407888055E-01 2.168019861E-01 1.161368728E+00 2.344401740E-02 3.663600000E-05
|
||||
9.412465692E-01 2.188019902E-01 1.161647320E+00 2.397026494E-02 3.663600000E-05
|
||||
9.417043328E-01 2.208019793E-01 1.161498427E+00 2.450504526E-02 3.663600000E-05
|
||||
9.421621561E-01 2.228019834E-01 1.160258651E+00 2.521812730E-02 3.663600000E-05
|
||||
9.426199198E-01 2.248019874E-01 1.158766150E+00 2.614156529E-02 3.663600000E-05
|
||||
9.430776834E-01 2.268019915E-01 1.158093691E+00 2.707281895E-02 3.663600000E-05
|
||||
9.435354471E-01 2.288019806E-01 1.157383084E+00 2.771968022E-02 3.663600000E-05
|
||||
9.439932704E-01 2.308019847E-01 1.157728553E+00 2.833495662E-02 3.663600000E-05
|
||||
9.444510341E-01 2.328019887E-01 1.158249736E+00 2.898476645E-02 3.663600000E-05
|
||||
9.449087977E-01 2.348019928E-01 1.158538222E+00 2.975584567E-02 3.480157466E-05
|
||||
9.453665614E-01 2.368019819E-01 1.159725070E+00 3.033061884E-02 2.922371095E-05
|
||||
9.458243251E-01 2.388019860E-01 1.159892797E+00 3.082484566E-02 2.816199958E-05
|
||||
9.462821484E-01 2.408019900E-01 1.158978343E+00 3.171321377E-02 2.816199958E-05
|
||||
9.467399120E-01 2.428019792E-01 1.158460617E+00 3.270616755E-02 2.816199958E-05
|
||||
9.471976757E-01 2.448019832E-01 1.157706618E+00 3.354445845E-02 2.816199958E-05
|
||||
9.476554394E-01 2.468019873E-01 1.157172561E+00 3.430528939E-02 2.816199958E-05
|
||||
9.481132627E-01 2.488019913E-01 1.157326221E+00 3.518977016E-02 2.816199958E-05
|
||||
9.485710263E-01 2.508019805E-01 1.157122731E+00 3.609152138E-02 2.816199958E-05
|
||||
9.490287900E-01 2.528019845E-01 1.157735229E+00 3.678045422E-02 2.816199958E-05
|
||||
9.494865537E-01 2.548019886E-01 1.158805609E+00 3.712876141E-02 2.816199958E-05
|
||||
9.499443173E-01 2.568019927E-01 1.159512639E+00 3.771607205E-02 2.816199958E-05
|
||||
9.504021406E-01 2.588019967E-01 1.158826351E+00 3.867084533E-02 2.816199958E-05
|
||||
9.508599043E-01 2.608019710E-01 1.158420801E+00 3.949920461E-02 2.816199958E-05
|
||||
9.513176680E-01 2.628019750E-01 1.158467174E+00 4.023306444E-02 2.816199958E-05
|
||||
9.517754316E-01 2.648019791E-01 1.158284903E+00 4.101207852E-02 2.816199958E-05
|
||||
9.522332549E-01 2.668019831E-01 1.157505989E+00 4.192817211E-02 2.589969517E-05
|
||||
9.526910186E-01 2.688019872E-01 1.156486630E+00 4.297975451E-02 1.968799916E-05
|
||||
9.531487823E-01 2.708019912E-01 1.157470465E+00 4.357114807E-02 1.968799916E-05
|
||||
9.536065459E-01 2.728019953E-01 1.158587337E+00 4.376721755E-02 1.968799916E-05
|
||||
9.540643096E-01 2.748019993E-01 1.159560323E+00 4.422808066E-02 1.968799916E-05
|
||||
9.545221329E-01 2.768019736E-01 1.159368753E+00 4.496096447E-02 1.968799916E-05
|
||||
9.549798965E-01 2.788019776E-01 1.159327507E+00 4.569542408E-02 1.968799916E-05
|
||||
9.554376602E-01 2.808019817E-01 1.159057021E+00 4.640068486E-02 1.968799916E-05
|
||||
9.558954239E-01 2.828019857E-01 1.158434749E+00 4.721594974E-02 1.968799916E-05
|
||||
9.563532472E-01 2.848019898E-01 1.157468796E+00 4.822210595E-02 1.968799916E-05
|
||||
9.568110108E-01 2.868019938E-01 1.156510234E+00 4.928846657E-02 1.968799916E-05
|
||||
9.572687745E-01 2.888019979E-01 1.156102777E+00 5.008211359E-02 1.968799916E-05
|
||||
9.577265382E-01 2.908019722E-01 1.156345248E+00 5.040421337E-02 1.968799916E-05
|
||||
9.581843019E-01 2.928019762E-01 1.156288505E+00 5.073607340E-02 1.968799916E-05
|
||||
9.586421251E-01 2.948019803E-01 1.156099558E+00 5.114307255E-02 1.968799916E-05
|
||||
9.590998888E-01 2.968019843E-01 1.155698180E+00 5.165417492E-02 1.968799916E-05
|
||||
9.595576525E-01 2.988019884E-01 1.155446291E+00 5.215450376E-02 1.968799916E-05
|
||||
9.600154161E-01 3.008019924E-01 1.154307842E+00 5.295208842E-02 1.442924167E-05
|
||||
9.604732394E-01 3.028019965E-01 1.152607203E+00 5.385504663E-02 1.085425356E-05
|
||||
9.609310031E-01 3.048019707E-01 1.151393533E+00 5.457889661E-02 1.032989439E-05
|
||||
9.613887668E-01 3.068019748E-01 1.150840640E+00 5.517030135E-02 8.391267329E-06
|
||||
9.618465304E-01 3.088019788E-01 1.149652839E+00 5.598747358E-02 6.976999885E-06
|
@ -0,0 +1,156 @@
|
||||
# Experimental data interpolated onto lines near the trailing edge of the NACA 4412 case
|
||||
# The lines were drawn by hand to be "visually" normal to the airfoil surface;
|
||||
# however, whether it is normal or not does not matter because the CFD is compared along the same lines.
|
||||
#
|
||||
# In these lines, experimental data were interpolated via Tecplot software onto
|
||||
# points starting approx d/c=.004 off the surface, and each point in the line separated by d/c=0.002
|
||||
# (except at the last station, where the points start at d/c=.006 off the surface)
|
||||
# Points were also added AT the surface, with u=v=uv=0
|
||||
#
|
||||
# x and y are normalized by chord
|
||||
# u and v are each normalized by Uref
|
||||
# uv = u'v' is normalized by Uref^2
|
||||
# Uref is the reference velocity, located about 1 chord below and behind the airfoil
|
||||
# (from CFD tests, Uref is roughly 0.93*Uinf)
|
||||
#
|
||||
# VARIABLES = "x","y","u","v","uv"
|
||||
# ZONE T="x=.9528"
|
||||
9.527999759E-01 1.286614314E-02 0.000000000E+00 0.000000000E+00 0.000000000E+00
|
||||
9.542863369E-01 1.886614226E-02 -9.970504791E-02 6.942666322E-02 -2.810906153E-03
|
||||
9.547817707E-01 2.086614259E-02 -8.799998462E-02 6.544791162E-02 -3.075312357E-03
|
||||
9.552772641E-01 2.286614291E-02 -7.684317976E-02 6.131247059E-02 -3.456973936E-03
|
||||
9.557726979E-01 2.486614324E-02 -6.311172247E-02 5.677530915E-02 -3.878151299E-03
|
||||
9.562681317E-01 2.686614357E-02 -4.778628051E-02 5.240697041E-02 -4.376799800E-03
|
||||
9.567635655E-01 2.886614203E-02 -2.743427642E-02 4.865555838E-02 -4.917756189E-03
|
||||
9.572590590E-01 3.086614236E-02 -1.365320664E-02 4.502450675E-02 -5.498901941E-03
|
||||
9.577544928E-01 3.286614269E-02 6.334785372E-03 4.103296995E-02 -6.128502544E-03
|
||||
9.582499266E-01 3.486614302E-02 2.559219487E-02 3.676034883E-02 -6.754100323E-03
|
||||
9.587453604E-01 3.686614335E-02 4.619380087E-02 3.239853308E-02 -7.426653057E-03
|
||||
9.592408538E-01 3.886614367E-02 7.028775662E-02 2.797538601E-02 -8.174027316E-03
|
||||
9.597362876E-01 4.086614400E-02 9.618803114E-02 2.358061261E-02 -8.956282400E-03
|
||||
9.602317214E-01 4.286614433E-02 1.200689897E-01 1.932970993E-02 -9.721894749E-03
|
||||
9.607271552E-01 4.486614466E-02 1.438326836E-01 1.536105946E-02 -1.051289309E-02
|
||||
9.612226486E-01 4.686614126E-02 1.688167304E-01 1.154934522E-02 -1.127966307E-02
|
||||
9.617180824E-01 4.886614159E-02 1.965702623E-01 7.881884463E-03 -1.215717662E-02
|
||||
9.622135162E-01 5.086614192E-02 2.291692942E-01 4.092871677E-03 -1.297810487E-02
|
||||
9.627089500E-01 5.286614224E-02 2.628163099E-01 -1.573282134E-05 -1.381107885E-02
|
||||
9.632044435E-01 5.486614257E-02 2.964631617E-01 -4.228235222E-03 -1.457056962E-02
|
||||
9.636998773E-01 5.686614290E-02 3.352153599E-01 -8.156108670E-03 -1.529316977E-02
|
||||
9.641953111E-01 5.886614323E-02 3.725149035E-01 -1.208724640E-02 -1.587371714E-02
|
||||
9.646907449E-01 6.086614355E-02 4.072124064E-01 -1.614699140E-02 -1.630165055E-02
|
||||
9.651862383E-01 6.286614388E-02 4.434002340E-01 -1.988843083E-02 -1.659209654E-02
|
||||
9.656816721E-01 6.486614048E-02 4.827232063E-01 -2.314625867E-02 -1.675101183E-02
|
||||
9.661771059E-01 6.686614454E-02 5.239234567E-01 -2.625730447E-02 -1.679470763E-02
|
||||
9.666725397E-01 6.886614114E-02 5.682435036E-01 -2.899908461E-02 -1.668138430E-02
|
||||
9.671680331E-01 7.086614519E-02 6.080560684E-01 -3.130530193E-02 -1.655064523E-02
|
||||
9.676634669E-01 7.286614180E-02 6.501834989E-01 -3.330387920E-02 -1.634930260E-02
|
||||
9.681589007E-01 7.486614585E-02 6.899781823E-01 -3.479544446E-02 -1.608438976E-02
|
||||
9.686543345E-01 7.686614245E-02 7.288462520E-01 -3.603852913E-02 -1.570267975E-02
|
||||
9.691498280E-01 7.886614650E-02 7.675462365E-01 -3.682347387E-02 -1.514492370E-02
|
||||
9.696452618E-01 8.086614311E-02 8.069908619E-01 -3.714656457E-02 -1.442584023E-02
|
||||
9.701406956E-01 8.286613971E-02 8.450490832E-01 -3.722187132E-02 -1.361065358E-02
|
||||
9.706361294E-01 8.486614376E-02 8.807156682E-01 -3.722567111E-02 -1.269411389E-02
|
||||
9.711315632E-01 8.686614037E-02 9.153606892E-01 -3.717391565E-02 -1.154709328E-02
|
||||
9.716270566E-01 8.886614442E-02 9.472816586E-01 -3.716856614E-02 -1.054352894E-02
|
||||
9.721224904E-01 9.086614102E-02 9.705656767E-01 -3.675203398E-02 -9.773825295E-03
|
||||
9.726179242E-01 9.286614507E-02 9.921996593E-01 -3.602764010E-02 -8.906070143E-03
|
||||
9.731133580E-01 9.486614168E-02 1.013755202E+00 -3.519105166E-02 -8.066644892E-03
|
||||
9.736088514E-01 9.686614573E-02 1.034737945E+00 -3.422456607E-02 -7.224531379E-03
|
||||
9.741042852E-01 9.886614233E-02 1.053725839E+00 -3.296714649E-02 -6.378210615E-03
|
||||
9.745997190E-01 1.008661464E-01 1.071318269E+00 -3.157253563E-02 -5.543611012E-03
|
||||
9.750951529E-01 1.028661430E-01 1.086076140E+00 -3.022108600E-02 -4.775537178E-03
|
||||
9.755906463E-01 1.048661396E-01 1.096827507E+00 -2.890996635E-02 -4.081695806E-03
|
||||
9.760860801E-01 1.068661436E-01 1.105587363E+00 -2.760012262E-02 -3.468567738E-03
|
||||
9.765815139E-01 1.088661402E-01 1.112722516E+00 -2.641095966E-02 -3.054297529E-03
|
||||
9.770769477E-01 1.108661443E-01 1.118373513E+00 -2.498997375E-02 -2.638701117E-03
|
||||
9.775724411E-01 1.128661409E-01 1.122925282E+00 -2.332745492E-02 -2.245783573E-03
|
||||
9.780678749E-01 1.148661450E-01 1.127065301E+00 -2.193271555E-02 -1.935637556E-03
|
||||
9.785633087E-01 1.168661416E-01 1.130972505E+00 -2.047930285E-02 -1.639157417E-03
|
||||
9.790587425E-01 1.188661456E-01 1.134445667E+00 -1.911402680E-02 -1.364585361E-03
|
||||
9.795542359E-01 1.208661422E-01 1.137402773E+00 -1.783199050E-02 -1.148460549E-03
|
||||
9.800496697E-01 1.228661463E-01 1.139883280E+00 -1.672342420E-02 -9.841342689E-04
|
||||
9.805451035E-01 1.248661429E-01 1.141831398E+00 -1.575813256E-02 -8.454045746E-04
|
||||
9.810405374E-01 1.268661469E-01 1.142813206E+00 -1.474177465E-02 -7.351113600E-04
|
||||
9.815360308E-01 1.288661361E-01 1.143508196E+00 -1.375425328E-02 -6.205629325E-04
|
||||
9.820314646E-01 1.308661401E-01 1.143963337E+00 -1.269592065E-02 -5.461244145E-04
|
||||
9.825268984E-01 1.328661442E-01 1.144129276E+00 -1.160775311E-02 -4.484227975E-04
|
||||
9.830223322E-01 1.348661482E-01 1.144489765E+00 -1.045959722E-02 -3.673538449E-04
|
||||
9.835178256E-01 1.368661374E-01 1.144799948E+00 -9.441477247E-03 -3.115899162E-04
|
||||
9.840132594E-01 1.388661414E-01 1.144985557E+00 -8.449923247E-03 -2.699405013E-04
|
||||
9.845086932E-01 1.408661455E-01 1.144922256E+00 -7.436510175E-03 -2.291002020E-04
|
||||
9.850041270E-01 1.428661495E-01 1.144803524E+00 -6.481676828E-03 -1.820367470E-04
|
||||
9.854996204E-01 1.448661387E-01 1.144881248E+00 -5.594467279E-03 -1.380673202E-04
|
||||
9.859950542E-01 1.468661427E-01 1.145023227E+00 -4.607403185E-03 -1.029239938E-04
|
||||
9.864904881E-01 1.488661468E-01 1.144719720E+00 -3.421395319E-03 -6.809686602E-05
|
||||
9.869859219E-01 1.508661360E-01 1.144686818E+00 -2.351528965E-03 -2.003564441E-05
|
||||
9.874814153E-01 1.528661400E-01 1.144959927E+00 -1.316927490E-03 -3.002597987E-05
|
||||
9.879768491E-01 1.548661441E-01 1.145096421E+00 -3.682948882E-04 -4.793506014E-05
|
||||
9.884722829E-01 1.568661481E-01 1.144539833E+00 6.616496248E-04 -5.950019477E-05
|
||||
9.889677167E-01 1.588661373E-01 1.144107103E+00 1.521074795E-03 -5.120555579E-05
|
||||
9.894632101E-01 1.608661413E-01 1.144127846E+00 2.255492611E-03 -3.389508856E-05
|
||||
9.899586439E-01 1.628661454E-01 1.144220591E+00 2.964586951E-03 -1.613750283E-05
|
||||
9.904540777E-01 1.648661494E-01 1.144097567E+00 3.770654788E-03 5.826286724E-07
|
||||
9.909495115E-01 1.668661386E-01 1.143765211E+00 4.668002017E-03 1.959658584E-05
|
||||
9.914450049E-01 1.688661426E-01 1.143053055E+00 5.496573169E-03 3.310423926E-05
|
||||
9.919404387E-01 1.708661467E-01 1.142998815E+00 6.076649297E-03 3.705675044E-05
|
||||
9.924358726E-01 1.728661358E-01 1.141353130E+00 7.105476689E-03 4.500618525E-05
|
||||
9.929313064E-01 1.748661399E-01 1.140807390E+00 7.828943431E-03 4.901240391E-05
|
||||
9.934267998E-01 1.768661439E-01 1.140239120E+00 8.446372114E-03 4.934699973E-05
|
||||
9.939222336E-01 1.788661480E-01 1.140060067E+00 9.111754596E-03 4.934699973E-05
|
||||
9.944176674E-01 1.808661371E-01 1.140762329E+00 9.714838117E-03 5.038956806E-05
|
||||
9.949131012E-01 1.828661412E-01 1.141713858E+00 1.040164381E-02 5.105379751E-05
|
||||
9.954085946E-01 1.848661453E-01 1.142010093E+00 1.122527942E-02 5.067541497E-05
|
||||
9.959040284E-01 1.868661493E-01 1.141457915E+00 1.206277031E-02 4.982203973E-05
|
||||
9.963994622E-01 1.888661385E-01 1.140750766E+00 1.290607266E-02 4.786597128E-05
|
||||
9.968948960E-01 1.908661425E-01 1.138118863E+00 1.402547676E-02 3.692610335E-05
|
||||
9.973903894E-01 1.928661466E-01 1.136470318E+00 1.540289074E-02 3.663600000E-05
|
||||
9.978858232E-01 1.948661357E-01 1.136629343E+00 1.621725224E-02 3.663600000E-05
|
||||
9.983812571E-01 1.968661398E-01 1.137125850E+00 1.701334678E-02 3.616517279E-05
|
||||
9.988766909E-01 1.988661438E-01 1.138220668E+00 1.771878265E-02 3.531600669E-05
|
||||
9.993721247E-01 2.008661479E-01 1.138922215E+00 1.852150820E-02 3.493766781E-05
|
||||
9.998676181E-01 2.028661370E-01 1.139683485E+00 1.929480210E-02 3.455928527E-05
|
||||
1.000362992E+00 2.048661411E-01 1.140511274E+00 1.997825503E-02 3.418099368E-05
|
||||
1.000858545E+00 2.068661451E-01 1.140698552E+00 2.069765888E-02 3.490749441E-05
|
||||
1.001353979E+00 2.088661492E-01 1.140045166E+00 2.166933008E-02 3.663600000E-05
|
||||
1.001849413E+00 2.108661383E-01 1.138621449E+00 2.289455757E-02 3.663600000E-05
|
||||
1.002344847E+00 2.128661424E-01 1.137500525E+00 2.386591397E-02 3.663600000E-05
|
||||
1.002840281E+00 2.148661464E-01 1.137256980E+00 2.468179725E-02 3.663600000E-05
|
||||
1.003335714E+00 2.168661356E-01 1.137245297E+00 2.540454268E-02 3.663600000E-05
|
||||
1.003831148E+00 2.188661397E-01 1.137210965E+00 2.625626884E-02 3.294007183E-05
|
||||
1.004326582E+00 2.208661437E-01 1.137814283E+00 2.695935033E-02 3.115419895E-05
|
||||
1.004822135E+00 2.228661478E-01 1.139044404E+00 2.740280330E-02 2.946888526E-05
|
||||
1.005317569E+00 2.248661369E-01 1.140270233E+00 2.787190862E-02 2.816199958E-05
|
||||
1.005813003E+00 2.268661410E-01 1.140405297E+00 2.867401950E-02 2.816199958E-05
|
||||
1.006308436E+00 2.288661450E-01 1.139353275E+00 2.980024740E-02 2.816199958E-05
|
||||
1.006803870E+00 2.308661491E-01 1.137792468E+00 3.080647439E-02 2.816199958E-05
|
||||
1.007299304E+00 2.328661382E-01 1.137555480E+00 3.174801916E-02 2.816199958E-05
|
||||
1.007794738E+00 2.348661423E-01 1.136534214E+00 3.278223798E-02 2.816199958E-05
|
||||
1.008290172E+00 2.368661463E-01 1.135360479E+00 3.391093761E-02 2.816199958E-05
|
||||
1.008785725E+00 2.388661355E-01 1.135889411E+00 3.471950814E-02 2.816199958E-05
|
||||
1.009281158E+00 2.408661395E-01 1.136912227E+00 3.514134884E-02 2.816199958E-05
|
||||
1.009776592E+00 2.428661436E-01 1.138183713E+00 3.553560376E-02 2.816199958E-05
|
||||
1.010272026E+00 2.448661476E-01 1.139119744E+00 3.616376966E-02 2.816199958E-05
|
||||
1.010767460E+00 2.468661368E-01 1.139239550E+00 3.695085645E-02 2.719880285E-05
|
||||
1.011262894E+00 2.488661408E-01 1.139202356E+00 3.775022179E-02 2.585726361E-05
|
||||
1.011758327E+00 2.508661449E-01 1.139284134E+00 3.853648528E-02 2.547892291E-05
|
||||
1.012253761E+00 2.528661489E-01 1.138543844E+00 3.961358964E-02 2.510058039E-05
|
||||
1.012749314E+00 2.548661530E-01 1.137452602E+00 4.075939208E-02 2.472214874E-05
|
||||
1.013244748E+00 2.568661571E-01 1.136593819E+00 4.172107205E-02 2.434380622E-05
|
||||
1.013740182E+00 2.588661313E-01 1.136356354E+00 4.245689511E-02 2.099640005E-05
|
||||
1.014235616E+00 2.608661354E-01 1.136765480E+00 4.284528270E-02 1.968799916E-05
|
||||
1.014731050E+00 2.628661394E-01 1.136881351E+00 4.324305803E-02 1.968799916E-05
|
||||
1.015226483E+00 2.648661435E-01 1.136710167E+00 4.370051622E-02 1.968799916E-05
|
||||
1.015721917E+00 2.668661475E-01 1.136603594E+00 4.412170872E-02 1.968799916E-05
|
||||
1.016217351E+00 2.688661516E-01 1.136307597E+00 4.457793385E-02 1.968799916E-05
|
||||
1.016712904E+00 2.708661556E-01 1.135492206E+00 4.520404339E-02 1.906370562E-05
|
||||
1.017208338E+00 2.728661299E-01 1.133678079E+00 4.609559104E-02 9.424397831E-06
|
||||
1.017703772E+00 2.748661339E-01 1.131979823E+00 4.704375565E-02 8.852959581E-06
|
||||
1.018199205E+00 2.768661380E-01 1.131840348E+00 4.758985341E-02 1.782200707E-05
|
||||
1.018694639E+00 2.788661420E-01 1.131175518E+00 4.843693599E-02 1.968799916E-05
|
||||
1.019190073E+00 2.808661461E-01 1.130455375E+00 4.930710793E-02 1.968799916E-05
|
||||
1.019685507E+00 2.828661501E-01 1.130355000E+00 5.010844022E-02 1.949095531E-05
|
||||
1.020180941E+00 2.848661542E-01 1.130533099E+00 5.084481090E-02 1.872640678E-05
|
||||
1.020676494E+00 2.868661284E-01 1.130535603E+00 5.157846585E-02 1.892338150E-05
|
||||
1.021171927E+00 2.888661325E-01 1.130503535E+00 5.241573602E-02 1.968799916E-05
|
||||
1.021667361E+00 2.908661366E-01 1.130562067E+00 5.327306688E-02 1.968799916E-05
|
||||
1.022162795E+00 2.928661406E-01 1.130603671E+00 5.409759656E-02 1.961750422E-05
|
Loading…
Reference in New Issue
Block a user