12 lines
225 B
C
12 lines
225 B
C
{
|
|
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
|
|
{
|
|
solve
|
|
(
|
|
fvm::ddt(rho*cp, T) - fvm::laplacian(K, T)
|
|
);
|
|
}
|
|
|
|
Info<< "Min/max T:" << min(T) << ' ' << max(T) << endl;
|
|
}
|