mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Fix sigmap for scatter particle radiation
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||
Copyright (C) 2019 OpenCFD Ltd.
|
||||
Copyright (C) 2019-2020 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -365,7 +365,7 @@ Foam::ThermoCloud<CloudType>::sigmap() const
|
||||
const scalar f = constProps_.f0();
|
||||
const scalarField& sumAreaP = radAreaP_->field();
|
||||
|
||||
sigmap *= sumAreaP*(1.0 - f)*(1.0 - epsilon)/V/dt;
|
||||
sigmap = sumAreaP*(1.0 - f)*(1.0 - epsilon)/V/dt;
|
||||
}
|
||||
|
||||
return tsigmap;
|
||||
|
||||
Reference in New Issue
Block a user