mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Updated reactingParcelFilmFoam solver
This commit is contained in:
@ -26,6 +26,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||||||
- fvm::laplacian(turbulence->muEff(), Yi)
|
- fvm::laplacian(turbulence->muEff(), Yi)
|
||||||
==
|
==
|
||||||
parcels.Srho(i)
|
parcels.Srho(i)
|
||||||
|
+ surfaceFilm.Srho(i)
|
||||||
+ kappa*chemistry.RR(i)().dimensionedInternalField(),
|
+ kappa*chemistry.RR(i)().dimensionedInternalField(),
|
||||||
mesh.solver("Yi")
|
mesh.solver("Yi")
|
||||||
);
|
);
|
||||||
|
|||||||
@ -6,9 +6,10 @@
|
|||||||
- fvm::laplacian(turbulence->alphaEff(), hs)
|
- fvm::laplacian(turbulence->alphaEff(), hs)
|
||||||
==
|
==
|
||||||
DpDt
|
DpDt
|
||||||
+ parcels.Sh()
|
+ parcels.Sh()
|
||||||
+ radiation->Shs(thermo)
|
+ surfaceFilm.Sh()
|
||||||
+ chemistrySh
|
+ radiation->Shs(thermo)
|
||||||
|
+ chemistrySh
|
||||||
);
|
);
|
||||||
|
|
||||||
hsEqn.relax();
|
hsEqn.relax();
|
||||||
|
|||||||
@ -24,6 +24,7 @@ if (transonic)
|
|||||||
- fvm::laplacian(rho*rUA, p)
|
- fvm::laplacian(rho*rUA, p)
|
||||||
==
|
==
|
||||||
parcels.Srho()
|
parcels.Srho()
|
||||||
|
+ surfaceFilm.Srho()
|
||||||
);
|
);
|
||||||
|
|
||||||
pEqn.solve();
|
pEqn.solve();
|
||||||
@ -52,6 +53,7 @@ else
|
|||||||
- fvm::laplacian(rho*rUA, p)
|
- fvm::laplacian(rho*rUA, p)
|
||||||
==
|
==
|
||||||
parcels.Srho()
|
parcels.Srho()
|
||||||
|
+ surfaceFilm.Srho()
|
||||||
);
|
);
|
||||||
|
|
||||||
pEqn.solve();
|
pEqn.solve();
|
||||||
|
|||||||
@ -36,6 +36,7 @@ Description
|
|||||||
+ fvc::div(phi)
|
+ fvc::div(phi)
|
||||||
==
|
==
|
||||||
parcels.Srho()
|
parcels.Srho()
|
||||||
|
+ surfaceFilm.Srho()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user