diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.C b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.C index f5684a4a68af552cd3f118ff80ec855cf6d78a07..fc4351037bff96794e8e371d660c7681936f4387 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.C +++ b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseSystem/multiphaseSystem.C @@ -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); diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/pEqn.H b/applications/solvers/multiphase/multiphaseEulerFoam/pEqn.H index 9d6afa593e985c7c94cb38de8ae3720b3e006836..5f7c38ebf08fdc5abeee9b65de1b619e63f1f5d1 100644 --- a/applications/solvers/multiphase/multiphaseEulerFoam/pEqn.H +++ b/applications/solvers/multiphase/multiphaseEulerFoam/pEqn.H @@ -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();