ENH: Tutorial updates

This commit is contained in:
andy
2012-10-19 13:54:41 +01:00
parent 8d85caee1d
commit f54a12e32a
2 changed files with 34 additions and 8 deletions

View File

@ -32,14 +32,6 @@ porosity1
e2 (0 0 1);
}
}
thermalModel
{
type none; // fixedTemperature;
// fixedTemperature coefficients
T 350;
}
}

View File

@ -0,0 +1,34 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object sourcesProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
source1
{
type fixedTemperatureSource;
active true;
timeStart 0;
duration 1000000;
selectionMode cellZone;
cellZone porosity;
fixedTemperatureSourceCoeffs
{
temperature 350;
}
}
// ************************************************************************* //