Bugfix in dimensions
steadyStateDdtScheme::fvcDdtConsistentPhiCorr returns a zero field with wrong dimensions (need to multiply with rAU dimensions instead of dividing). Reported by InSu Lee, Seoul National University.
This commit is contained in:
parent
752fce1a02
commit
abc4f08028
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ steadyStateDdtScheme<Type>::fvcDdtConsistentPhiCorr
|
|||
dimensioned<typename flux<Type>::type>
|
||||
(
|
||||
"zero",
|
||||
faceU.dimensions()*dimArea/rAUf.dimensions()/dimTime,
|
||||
faceU.dimensions()*dimArea*rAUf.dimensions()/dimTime,
|
||||
pTraits<typename flux<Type>::type>::zero
|
||||
)
|
||||
)
|
||||
|
|
Reference in a new issue