ENH: Changing mechanical and thermal properties to volScalarFields

This commit is contained in:
Sergio Ferraris
2011-10-25 17:40:30 +01:00
parent 72cc4cd7d8
commit 8ebd492595
6 changed files with 234 additions and 65 deletions

View File

@ -15,11 +15,23 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
rho rho [ 1 -3 0 0 0 0 0 ] 7854;
rho
{
rho rhoInf;
rhoInf rhoInf [ 1 -3 0 0 0 0 0 ] 7854;
}
nu nu [ 0 0 0 0 0 0 0 ] 0.3;
nu
{
nu nuInf;
nuInf nuInf [ 0 0 0 0 0 0 0 ] 0.3;
}
E E [ 1 -1 -2 0 0 0 0 ] 2e+11;
E
{
E EInf;
EInf EInf [ 1 -1 -2 0 0 0 0 ] 2e+11;
}
planeStress yes;

View File

@ -15,11 +15,23 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
C C [ 0 2 -2 -1 0 0 0 ] 434;
C
{
C CInf;
CInf CInf [ 0 2 -2 -1 0 0 0 ] 434;
}
k k [ 1 1 -3 -1 0 0 0 ] 60.5;
k
{
k kInf;
kInf kInf [ 1 1 -3 -1 0 0 0 ] 60.5;
}
alpha alpha [ 0 0 0 -1 0 0 0 ] 1.1e-05;
alpha
{
alpha alphaInf;
alphaInf alphaInf [ 0 0 0 -1 0 0 0 ] 1.1e-05;
}
thermalStress no;

View File

@ -20,6 +20,11 @@ d2dt2Schemes
default steadyState;
}
ddtSchemes
{
default Euler;
}
gradSchemes
{
default leastSquares;