mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: chtMultiRegionSimpleFoam - solveSolid error due to incorrect scoping - mantis #1163
This commit is contained in:
@ -3,9 +3,11 @@
|
|||||||
{
|
{
|
||||||
fvScalarMatrix hEqn
|
fvScalarMatrix hEqn
|
||||||
(
|
(
|
||||||
thermo.isotropic()
|
(
|
||||||
? -fvm::laplacian(betav*thermo.alpha(), h, "laplacian(alpha,h)")
|
thermo.isotropic()
|
||||||
: -fvm::laplacian(betav*tAnialpha(), h, "laplacian(alpha,h)")
|
? -fvm::laplacian(betav*thermo.alpha(), h, "laplacian(alpha,h)")
|
||||||
|
: -fvm::laplacian(betav*tAnialpha(), h, "laplacian(alpha,h)")
|
||||||
|
)
|
||||||
==
|
==
|
||||||
fvOptions(rho, h)
|
fvOptions(rho, h)
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user