The following solvers implement mixing models:
- mixingTransportFoam
- Solver for mixing model on steady velocity field.
- Location: OpenQBMM/applications/solvers/mixingTransportFoam/
The functionality of mixing models can be added to other solvers by means of the standard strategy used in OpenFOAM of declaring an autoPtr object to the mixing model
autoPtr<mixingModel> mixing
(
mixingModel::New
(
“mixing”, mixingProperties, phiByRho
)
);
and then invoking the solve method at the appropriate point of the solution algorithm in the desired solver:
mixing->solve();