Difference between revisions of "OpenFOAM guide/LduMatrix;;H"

From OpenFOAMWiki
m (moved LduMatrix;;H to OpenFOAM guide/LduMatrix;;H: Prevent name collisions)
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
<math>\boldsymbol \psi_o -= A_n \boldsymbol \psi_n</math>
 
<math>\boldsymbol \psi_o -= A_n \boldsymbol \psi_n</math>
  
[1] What I'm calling ''related cells'' is conventionally called ''neighbours''.  But [[OpenFOAM]] has a different meaning for ''neighbours'', so the term ''related cells'' is used.; and
+
Where:
 +
* ''A'' are [[matrix coefficients]];
 +
* ''o'' and ''n'' are the [[owner and neighbour indices]]; and
 
* <math>\boldsymbol \psi</math> is the field variable of the matrix (a parameter, owned by fvMatrix).
 
* <math>\boldsymbol \psi</math> is the field variable of the matrix (a parameter, owned by fvMatrix).
  
 
Used by [[fvMatrix;;H]].
 
Used by [[fvMatrix;;H]].
 
[[Category:OpenFOAM coding guide]]
 
[[Category:OpenFOAM coding guide]]

Latest revision as of 19:22, 30 June 2010

lduMatrix's implementation of the H operator.

\boldsymbol \psi_n -= A_o \boldsymbol \psi_o

\boldsymbol \psi_o -= A_n \boldsymbol \psi_n

Where:

Used by fvMatrix;;H.