mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Updated coalChemistryFoam solver
This commit is contained in:
@ -5,8 +5,8 @@
|
|||||||
+ turbulence->divDevRhoReff(U)
|
+ turbulence->divDevRhoReff(U)
|
||||||
==
|
==
|
||||||
rho.dimensionedInternalField()*g
|
rho.dimensionedInternalField()*g
|
||||||
+ coalParcels.SU()
|
+ coalParcels.SU(U)
|
||||||
+ limestoneParcels.SU()
|
+ limestoneParcels.SU(U)
|
||||||
);
|
);
|
||||||
|
|
||||||
UEqn.relax();
|
UEqn.relax();
|
||||||
|
|||||||
@ -25,7 +25,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||||||
+ mvConvection->fvmDiv(phi, Yi)
|
+ mvConvection->fvmDiv(phi, Yi)
|
||||||
- fvm::laplacian(turbulence->muEff(), Yi)
|
- fvm::laplacian(turbulence->muEff(), Yi)
|
||||||
==
|
==
|
||||||
coalParcels.Srho(i)
|
coalParcels.SYi(i, Yi)
|
||||||
+ kappa*chemistry.RR(i)().dimensionedInternalField()
|
+ kappa*chemistry.RR(i)().dimensionedInternalField()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -6,8 +6,8 @@
|
|||||||
- fvm::laplacian(turbulence->alphaEff(), hs)
|
- fvm::laplacian(turbulence->alphaEff(), hs)
|
||||||
==
|
==
|
||||||
DpDt
|
DpDt
|
||||||
+ coalParcels.Sh()
|
+ coalParcels.Sh(hs)
|
||||||
+ limestoneParcels.Sh()
|
+ limestoneParcels.Sh(hs)
|
||||||
+ enthalpySource.Su()
|
+ enthalpySource.Su()
|
||||||
+ radiation->Shs(thermo)
|
+ radiation->Shs(thermo)
|
||||||
+ chemistrySh
|
+ chemistrySh
|
||||||
|
|||||||
@ -35,7 +35,7 @@ Description
|
|||||||
fvm::ddt(rho)
|
fvm::ddt(rho)
|
||||||
+ fvc::div(phi)
|
+ fvc::div(phi)
|
||||||
==
|
==
|
||||||
coalParcels.Srho()
|
coalParcels.Srho(rho)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user