Implicit treatment of coupled boundary conditions

This commit is contained in:
Sergio Ferraris
2021-08-03 20:08:49 +00:00
committed by Andrew Heather
parent 11e0db96d3
commit 53af23b9fb
308 changed files with 12354 additions and 527 deletions

View File

@ -0,0 +1,47 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object changeDictionaryDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
T
{
internalField uniform 300;
boundaryField
{
minX
{
type fixedValue;
value uniform 350;
}
"leftSolid_to_.*"
{
type compressible::turbulentTemperatureRadCoupledMixed;
Tnbr T;
qrNbr none;
qr none;
useImplicit true;
kappaMethod solidThermo;
value uniform 300;
}
"minY|maxY"
{
type zeroGradient;
}
}
}
// ************************************************************************* //