Merge branch 'olesenm'

This commit is contained in:
andy
2011-01-04 10:52:41 +00:00
972 changed files with 7372 additions and 4906 deletions

View File

@ -46,7 +46,6 @@ isotropicKSolidThermoCoeffs
cpValues (1700 1700);
KValues (80 40);
//- radiative properties
emissivityValues (1 1);
kappaValues (0 0);

View File

@ -62,8 +62,8 @@ dictionaryReplacement
Ypmma
{
internalField uniform 0.5;
boundaryField
{
".*"
@ -72,13 +72,13 @@ dictionaryReplacement
value uniform 0.5;
}
}
}
Ychar
{
internalField uniform 0.5;
boundaryField
{
".*"

View File

@ -53,8 +53,7 @@ dictionaryReplacement
Ypmma
{
internalField uniform 0.5;
boundaryField
{
".*"
@ -63,13 +62,13 @@ dictionaryReplacement
value uniform 0.5;
}
}
}
Ychar
{
internalField uniform 0.5;
boundaryField
{
".*"

View File

@ -53,8 +53,7 @@ dictionaryReplacement
Ypmma
{
internalField uniform 0.5;
boundaryField
{
".*"
@ -63,13 +62,13 @@ dictionaryReplacement
value uniform 0.5;
}
}
}
Ychar
{
internalField uniform 0.5;
boundaryField
{
".*"

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -46,7 +46,7 @@ isotropicKSolidThermoCoeffs
cpValues (1700 1700);
KValues (80 40);
//- radiative properties
emissivityValues (1 1);
kappaValues (0 0);

View File

@ -36,7 +36,7 @@ dictionaryReplacement
{
internalField uniform 300;
boundaryField
{
".*"
@ -63,8 +63,8 @@ dictionaryReplacement
Ypmma
{
internalField uniform 0.5;
boundaryField
{
".*"
@ -73,13 +73,13 @@ dictionaryReplacement
value uniform 0.5;
}
}
}
Ychar
{
internalField uniform 0.5;
boundaryField
{
".*"

View File

@ -53,7 +53,7 @@ dictionaryReplacement
Ypmma
{
internalField uniform 0.5;
boundaryField
{
".*"
@ -67,7 +67,7 @@ dictionaryReplacement
Ychar
{
internalField uniform 0.5;
boundaryField
{
".*"

View File

@ -53,7 +53,7 @@ dictionaryReplacement
Ypmma
{
internalField uniform 0.5;
boundaryField
{
".*"
@ -67,7 +67,7 @@ dictionaryReplacement
Ychar
{
internalField uniform 0.5;
boundaryField
{
".*"

View File

@ -1,7 +1,7 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
@ -46,7 +46,6 @@ isotropicKSolidThermoCoeffs
cpValues (1700 1700);
KValues (80 40);
//- radiative properties
emissivityValues (1 1);
kappaValues (0 0);

View File

@ -46,7 +46,7 @@ isotropicKSolidThermoCoeffs
cpValues (1700 1700);
KValues (80 40);
//- radiative properties
emissivityValues (1 1);
kappaValues (0 0);

View File

@ -73,7 +73,7 @@ int main(int argc, char *argv[])
solve(UEqn() == -fvc::grad(p));
p.boundaryField().updateCoeffs();
volScalarField rAU = 1.0/UEqn().A();
volScalarField rAU(1.0/UEqn().A());
U = rAU*UEqn().H();
UEqn.clear();

View File

@ -20,7 +20,7 @@ FoamFile
dictionaryReplacement
{
// Specify
// Specify
// - all fvPatchFields with potential non-uniform values
// - all fvPatchFields originating from meshing
// - all fvPatchFields originating from mesh-redistribution

View File

@ -36,15 +36,15 @@ solvers
{
solver GAMG;
tolerance 1e-06;
relTol 0.01;
relTol 0.01;
smoother GaussSeidel;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
cacheAgglomeration false;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
nPreSweeps 0;
nPostSweeps 2;
nFinestSweeps 2;
cacheAgglomeration false;
nCellsInCoarsestLevel 10;
agglomerator faceAreaPair;
mergeLevels 1;
}
pFinal

View File

@ -57,5 +57,7 @@
Info<< "Creating field DpDt\n" << endl;
volScalarField DpDt =
fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p);
volScalarField DpDt
(
fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p)
);

View File

@ -1,6 +1,6 @@
rho = thermo.rho();
volScalarField rAU = 1.0/UEqn.A();
volScalarField rAU(1.0/UEqn.A());
U = rAU*UEqn.H();
if (transonic)