divq中的correction是怎么来的?
-
查看OpenFOAM10的代码可以发现,在src/ThermophysicalTransportModels/turbulence/eddyDiffusivity/eddyDiffusivity.C中的divq的实现为:
-correction(fvm::laplacian(this->alpha()*this->alphaEff(), he)) -fvc::laplacian(this->alpha()*this->kappaEff(), this->thermo().T());
而按我的理解,这里应该只是求解 $-\nabla(k_{eff}\nabla T)$,即:
-fvc::laplacian(this->alpha()*this->kappaEff(), this->thermo().T())
那这里多出来的correction应该怎么理解?