multiphaseEuler: Corrected printing of interface names

This commit is contained in:
Will Bainbridge
2024-04-11 12:16:30 +01:00
parent 30a25219d7
commit f0c63237aa
2 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2018-2023 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2018-2024 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -88,7 +88,7 @@ Foam::phaseTransferModels::deposition::dmdtf() const
{
FatalErrorInFunction
<< "The specified droplet phase, " << dropletName_ << ", is not in "
<< "the " << interface_ << " pair"
<< "the " << interface_.name() << " pair"
<< exit(FatalError);
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2015-2024 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -183,9 +183,9 @@ InterfaceCompositionPhaseChangePhaseSystem
if (!this->diffusiveMassTransferModels_.found(interface))
{
FatalErrorInFunction
<< "A diffusive mass transfer model for the " << interface
<< " interface is not specified. This is required by the "
<< "corresponding interface composition model."
<< "A diffusive mass transfer model for the "
<< interface.name() << " interface is not specified. This is "
<< "required by the corresponding interface composition model."
<< exit(FatalError);
}