BUG: chtMultiRegionSimpleFoam - solveSolid error due to incorrect scoping - mantis #1163

This commit is contained in:
andy
2014-02-19 09:26:46 +00:00
committed by Andrew Heather
parent 433c4521d4
commit fbee36db43

View File

@ -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)
); );