mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
15 lines
286 B
C
15 lines
286 B
C
{
|
|
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
|
|
{
|
|
fvScalarMatrix tEqn
|
|
(
|
|
-fvm::laplacian(K, T)
|
|
);
|
|
tEqn.relax();
|
|
tEqn.solve();
|
|
}
|
|
|
|
Info<< "Min/max T:" << min(T).value() << ' '
|
|
<< max(T).value() << endl;
|
|
}
|