ENH: adjust thermalPorousZone to match documentation

eg, dictionary entry:

        thermalModel
        {
            type        none; // fixedTemperature;
            // fixedTemperature coefficients
            T           350;
        }

A missing thermalModel is treated as 'none'
This commit is contained in:
Mark Olesen
2011-03-31 13:53:48 +02:00
parent 5c3c1b2db1
commit 3177e81566
12 changed files with 51 additions and 35 deletions

View File

@ -31,11 +31,12 @@ FoamFile
f f [0 -1 0 0 0 0 0] (0 0 0);
}
thermalModel none; // fixedTemperature;
fixedTemperatureCoeffs
thermalModel
{
T 350;
type none; // fixedTemperature;
// fixedTemperature coefficients
T 350;
}
}
)