Corrected formatting

This commit is contained in:
Henry
2011-09-05 19:23:59 +01:00
parent 85d1a92cf2
commit 89554ace7f
2 changed files with 14 additions and 5 deletions

View File

@ -195,7 +195,8 @@ Foam::dimensionedScalar Foam::multiphaseSystem::sigma
{
FatalErrorIn
(
"multiphaseSystem::sigma(const phaseModel& phase1, const phaseModel& phase2) const"
"multiphaseSystem::sigma(const phaseModel& phase1,"
"const phaseModel& phase2) const"
) << "Cannot find interface " << interfacePair(phase1, phase2)
<< " in list of sigma values"
<< exit(FatalError);
@ -220,7 +221,8 @@ Foam::scalar Foam::multiphaseSystem::cAlpha
{
FatalErrorIn
(
"multiphaseSystem::cAlpha(const phaseModel& phase1, const phaseModel& phase2) const"
"multiphaseSystem::cAlpha"
"(const phaseModel& phase1, const phaseModel& phase2) const"
) << "Cannot find interface " << interfacePair(phase1, phase2)
<< " in list of cAlpha values"
<< exit(FatalError);
@ -255,7 +257,8 @@ Foam::dimensionedScalar Foam::multiphaseSystem::Cvm
FatalErrorIn
(
"multiphaseSystem::sigma(const phaseModel& phase1, const phaseModel& phase2) const"
"multiphaseSystem::sigma"
"(const phaseModel& phase1, const phaseModel& phase2) const"
) << "Cannot find interface " << interfacePair(phase1, phase2)
<< " in list of sigma values"
<< exit(FatalError);

View File

@ -199,7 +199,8 @@
for
(
;
dmIter != fluid.dragModels().end() && dcIter != dragCoeffs().end();
dmIter != fluid.dragModels().end()
&& dcIter != dragCoeffs().end();
++dmIter, ++dcIter
)
{
@ -210,7 +211,12 @@
)
{
int phasej = 0;
forAllIter(PtrDictionary<phaseModel>, fluid.phases(), iter2)
forAllIter
(
PtrDictionary<phaseModel>,
fluid.phases(),
iter2
)
{
phaseModel& phase2 = iter2();