mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
Merge branch 'master' of github.com-OpenFOAM:OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -161,14 +161,24 @@ update
|
|||||||
(
|
(
|
||||||
this->thermo_.composition().Y(species1Index_)
|
this->thermo_.composition().Y(species1Index_)
|
||||||
*W
|
*W
|
||||||
/this->thermo_.composition().W(species1Index_)
|
/dimensionedScalar
|
||||||
|
(
|
||||||
|
"W",
|
||||||
|
dimMass/dimMoles,
|
||||||
|
this->thermo_.composition().W(species1Index_)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
volScalarField X2
|
volScalarField X2
|
||||||
(
|
(
|
||||||
this->thermo_.composition().Y(species2Index_)
|
this->thermo_.composition().Y(species2Index_)
|
||||||
*W
|
*W
|
||||||
/this->thermo_.composition().W(species2Index_)
|
/dimensionedScalar
|
||||||
|
(
|
||||||
|
"W",
|
||||||
|
dimMass/dimMoles,
|
||||||
|
this->thermo_.composition().W(species2Index_)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
volScalarField alpha12(alpha12_ + Tf*beta12_);
|
volScalarField alpha12(alpha12_ + Tf*beta12_);
|
||||||
|
|||||||
Reference in New Issue
Block a user