multiphaseEuler: Corrected printing of interface names
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user