CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Programming & Development (https://www.cfd-online.com/Forums/openfoam-programming-development/)
-   -   Understanding an equation: what is "fvmDiv" and "fvOptions(rho,he)"? (https://www.cfd-online.com/Forums/openfoam-programming-development/158317-understanding-equation-what-fvmdiv-fvoptions-rho-he.html)

shovan August 21, 2015 07:09

Understanding an equation: what is "fvmDiv" and "fvOptions(rho,he)"?
 
Hi everybody i have a problem understanding the below problem. What i don't understand is what does 'fvmDIV' stands for, what does '?' stands for, what does 'fvOptions(rho,he)' do? Is there any material available which speaks of all the below used symbols?

fvScalarMatrix EEqn
(
fvm::ddt(rho, he) + mvConvection->fvmDiv(phi, he)
+ fvc::ddt(rho, K) + fvc::div(phi, K)
+ (
he.name() == "e"
? fvc::div
(
fvc::absolute(phi/fvc::interpolate(rho), U),
p,
"div(phiv,p)"
)
: -dpdt
)
- fvm::laplacian(turbulence->alphaEff(), he)
==
reaction->Sh()
+ fvOptions(rho, he)
);


All times are GMT -4. The time now is 23:29.