Merge branch 'master' of ssh://dm/home/dm4/OpenFOAM/OpenFOAM-dev

This commit is contained in:
Henry
2012-07-03 14:00:42 +01:00
178 changed files with 155025 additions and 5789 deletions

View File

@ -53,7 +53,7 @@ boundaryField
"(region0_to.*)"
{
type fixedFluxPressure;
type buoyantPressure;
value $internalField;
}
}

View File

@ -0,0 +1,32 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField uniform 1e5;
boundaryField
{
".*"
{
type zeroGradient;
}
}
// ************************************************************************* //

File diff suppressed because it is too large Load Diff

View File

@ -10,12 +10,11 @@ FoamFile
version 2.0;
format ascii;
class dictionary;
object solidThermophysicalProperties;
object thermophysicalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
thermoType
solidMixtureThermo<reactingSolidMixture<constSolidTransport<constSolidRad<constSolidThermo<constRho>>>>>;
thermoType heSolidThermo<reactingSolidMixture<constIsoSolidTransport<constSolidRad<specieThermo<constSolidThermo<constRho>,sensibleEnthalpy>>>>>;
solidComponents
(
@ -24,6 +23,11 @@ solidComponents
vCoeffs
{
specie
{
nMoles 1;
molWeight 100;
}
transport
{
kappa 0.135;
@ -47,6 +51,11 @@ vCoeffs
charCoeffs
{
specie
{
nMoles 1;
molWeight 50;
}
transport
{
kappa 0.4;

View File

@ -16,7 +16,7 @@ FoamFile
application fireFoam;
startFrom latestTime;
startFrom startTime;
startTime 0;
@ -28,7 +28,7 @@ deltaT 0.03;
writeControl adjustableRunTime;
writeInterval 0.5;
writeInterval 0.03;
purgeWrite 0;

View File

@ -32,7 +32,7 @@ divSchemes
laplacianSchemes
{
default none;
laplacian(kappa,T) Gauss linear uncorrected;
laplacian(alpha,h) Gauss linear uncorrected;
}
interpolationSchemes

View File

@ -16,7 +16,7 @@ FoamFile
solvers
{
T
h
{
solver PCG;
preconditioner DIC;
@ -54,7 +54,7 @@ relaxationFactors
}
equations
{
T 1;
h 1;
}
}