ENH: Handling of phaseProperties in temperatureCoupledBase.

Adding poly solid thermo to InterfaceCompositionModel for use
on icoReactingMultiphaseInterFoam
This commit is contained in:
sergio
2019-06-12 10:35:49 -07:00
committed by Andrew Heather
parent 3a1178ff12
commit b1563dc03e
4 changed files with 53 additions and 1 deletions

View File

@ -79,7 +79,6 @@ namespace Foam
sensibleEnthalpy
>
> BoussinesqFluidEThermoPhysics;
};
@ -240,6 +239,20 @@ namespace Foam
constRhoHThermoPhysics
);
// From pure phase (solidThermo) to phase (rho const)
makeInterfacePureType
(
Lee,
heSolidThermo,
solidThermo,
pureMixture,
hPolyTranspPolyIcoSolidThermoPhysics,
heRhoThermo,
rhoThermo,
pureMixture,
icoPoly8HThermoPhysics
);
// From pure phase (const rho) to multi phase (incomp ideal gas)
makeInterfaceContSpecieMixtureType
@ -283,6 +296,8 @@ namespace Foam
pureMixture,
hConstSolidThermoPhysics
);
}