Changed the runtime-selection tables to output a sorted toc.

This commit is contained in:
henry
2009-08-06 18:01:28 +01:00
parent 7297ae0e23
commit 31c76da40f
119 changed files with 158 additions and 158 deletions

View File

@ -52,7 +52,7 @@ Foam::autoPtr<Foam::PDRDragModel> Foam::PDRDragModel::New
) << "Unknown PDRDragModel type " ) << "Unknown PDRDragModel type "
<< PDRDragModelTypeName << endl << endl << PDRDragModelTypeName << endl << endl
<< "Valid PDRDragModels are : " << endl << "Valid PDRDragModels are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -56,7 +56,7 @@ Foam::autoPtr<Foam::XiEqModel> Foam::XiEqModel::New
) << "Unknown XiEqModel type " ) << "Unknown XiEqModel type "
<< XiEqModelTypeName << endl << endl << XiEqModelTypeName << endl << endl
<< "Valid XiEqModels are : " << endl << "Valid XiEqModels are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -56,7 +56,7 @@ Foam::autoPtr<Foam::XiGModel> Foam::XiGModel::New
) << "Unknown XiGModel type " ) << "Unknown XiGModel type "
<< XiGModelTypeName << endl << endl << XiGModelTypeName << endl << endl
<< "Valid XiGModels are : " << endl << "Valid XiGModels are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -54,7 +54,7 @@ Foam::autoPtr<Foam::XiModel> Foam::XiModel::New
) << "Unknown XiModel type " ) << "Unknown XiModel type "
<< XiModelTypeName << endl << endl << XiModelTypeName << endl << endl
<< "Valid XiModels are : " << endl << "Valid XiModels are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -70,7 +70,7 @@ Foam::phaseChangeTwoPhaseMixture::New
) << "Unknown phaseChangeTwoPhaseMixture type " ) << "Unknown phaseChangeTwoPhaseMixture type "
<< phaseChangeTwoPhaseMixtureTypeName << endl << endl << phaseChangeTwoPhaseMixtureTypeName << endl << endl
<< "Valid phaseChangeTwoPhaseMixtures are : " << endl << "Valid phaseChangeTwoPhaseMixtures are : " << endl
<< componentsConstructorTablePtr_->toc() << componentsConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -57,7 +57,7 @@ Foam::autoPtr<Foam::dragModel> Foam::dragModel::New
<< dragModelType << dragModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid dragModel types are : " << endl; << " Valid dragModel types are : " << endl;
Info << dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info << dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return cstrIter()(interfaceDict, alpha, phasea, phaseb); return cstrIter()(interfaceDict, alpha, phasea, phaseb);

View File

@ -49,7 +49,7 @@ Foam::autoPtr<Foam::conductivityModel> Foam::conductivityModel::New
<< conductivityModelType << conductivityModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid conductivityModelType types are :" << endl; << " Valid conductivityModelType types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<conductivityModel>(cstrIter()(dict)); return autoPtr<conductivityModel>(cstrIter()(dict));

View File

@ -49,7 +49,7 @@ Foam::autoPtr<Foam::frictionalStressModel> Foam::frictionalStressModel::New
<< frictionalStressModelType << frictionalStressModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid frictionalStressModelType types are :" << endl; << " Valid frictionalStressModelType types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<frictionalStressModel>(cstrIter()(dict)); return autoPtr<frictionalStressModel>(cstrIter()(dict));

View File

@ -49,7 +49,7 @@ Foam::autoPtr<Foam::granularPressureModel> Foam::granularPressureModel::New
<< granularPressureModelType << granularPressureModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid granularPressureModelType types are :" << endl; << " Valid granularPressureModelType types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<granularPressureModel>(cstrIter()(dict)); return autoPtr<granularPressureModel>(cstrIter()(dict));

View File

@ -49,7 +49,7 @@ Foam::autoPtr<Foam::radialModel> Foam::radialModel::New
<< radialModelType << radialModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid radialModelType types are :" << endl; << " Valid radialModelType types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<radialModel>(cstrIter()(dict)); return autoPtr<radialModel>(cstrIter()(dict));

View File

@ -50,7 +50,7 @@ Foam::kineticTheoryModels::viscosityModel::New
<< viscosityModelType << viscosityModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid viscosityModelType types are :" << endl; << " Valid viscosityModelType types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<viscosityModel>(cstrIter()(dict)); return autoPtr<viscosityModel>(cstrIter()(dict));

View File

@ -107,7 +107,7 @@ autoPtr<curvedEdge> curvedEdge::New(const pointField& points, Istream& is)
FatalErrorIn("curvedEdge::New(const pointField&, Istream&)") FatalErrorIn("curvedEdge::New(const pointField&, Istream&)")
<< "Unknown curvedEdge type " << curvedEdgeType << endl << endl << "Unknown curvedEdge type " << curvedEdgeType << endl << endl
<< "Valid curvedEdge types are" << endl << "Valid curvedEdge types are" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< abort(FatalError); << abort(FatalError);
} }

View File

@ -47,7 +47,7 @@ Foam::autoPtr<Foam::extrudeModel> Foam::extrudeModel::New
<< extrudeModelType << extrudeModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid extrudeModel types are :" << nl << " Valid extrudeModel types are :" << nl
<< dictionaryConstructorTablePtr_->toc() << nl << dictionaryConstructorTablePtr_->sortedToc() << nl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -47,7 +47,7 @@ Foam::autoPtr<Foam::ODESolver> Foam::ODESolver::New
) << "Unknown ODESolver type " ) << "Unknown ODESolver type "
<< ODESolverTypeName << endl << endl << ODESolverTypeName << endl << endl
<< "Valid ODESolvers are : " << endl << "Valid ODESolvers are : " << endl
<< ODEConstructorTablePtr_->toc() << ODEConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -67,7 +67,7 @@ Foam::autoPtr<Foam::token::compound> Foam::token::compound::New
FatalErrorIn("token::compound::New(const word&, Istream&)") FatalErrorIn("token::compound::New(const word&, Istream&)")
<< "Unknown compound type " << compoundType << nl << nl << "Unknown compound type " << compoundType << nl << nl
<< "Valid compound types:" << endl << "Valid compound types:" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< abort(FatalError); << abort(FatalError);
} }

View File

@ -89,7 +89,7 @@ Foam::autoPtr<Foam::functionObject> Foam::functionObject::New
) << "Unknown function type " ) << "Unknown function type "
<< functionType << nl << nl << functionType << nl << nl
<< "Valid functions are : " << nl << "Valid functions are : " << nl
<< dictionaryConstructorTablePtr_->toc() << endl << dictionaryConstructorTablePtr_->sortedToc() << endl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -55,7 +55,7 @@ Foam::autoPtr<Foam::pointPatchField<Type> > Foam::pointPatchField<Type>::New
<< patchFieldType << patchFieldType
<< endl << endl << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< pointPatchConstructorTablePtr_->toc() << pointPatchConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -111,7 +111,7 @@ Foam::autoPtr<Foam::pointPatchField<Type> > Foam::pointPatchField<Type>::New
) << "Unknown patchField type " << patchFieldType ) << "Unknown patchField type " << patchFieldType
<< " for patch type " << p.type() << endl << endl << " for patch type " << p.type() << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
} }
@ -182,7 +182,7 @@ Foam::autoPtr<Foam::pointPatchField<Type> > Foam::pointPatchField<Type>::New
) << "unknown patchTypefield type " ) << "unknown patchTypefield type "
<< ptf.type() << endl << endl << ptf.type() << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< patchMapperConstructorTablePtr_->toc() << patchMapperConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -168,7 +168,7 @@ autoPtr<graph::writer> graph::writer::New(const word& graphFormat)
) << "Unknown graph format " << graphFormat ) << "Unknown graph format " << graphFormat
<< endl << endl << endl << endl
<< "Valid graph formats are : " << endl << "Valid graph formats are : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -97,7 +97,7 @@ Foam::lduMatrix::preconditioner::New
) << "Unknown symmetric matrix preconditioner " ) << "Unknown symmetric matrix preconditioner "
<< name << nl << nl << name << nl << nl
<< "Valid symmetric matrix preconditioners :" << endl << "Valid symmetric matrix preconditioners :" << endl
<< symMatrixConstructorTablePtr_->toc() << symMatrixConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -125,7 +125,7 @@ Foam::lduMatrix::preconditioner::New
) << "Unknown asymmetric matrix preconditioner " ) << "Unknown asymmetric matrix preconditioner "
<< name << nl << nl << name << nl << nl
<< "Valid asymmetric matrix preconditioners :" << endl << "Valid asymmetric matrix preconditioners :" << endl
<< asymMatrixConstructorTablePtr_->toc() << asymMatrixConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -98,7 +98,7 @@ Foam::autoPtr<Foam::lduMatrix::smoother> Foam::lduMatrix::smoother::New
) << "Unknown symmetric matrix smoother " ) << "Unknown symmetric matrix smoother "
<< name << nl << nl << name << nl << nl
<< "Valid symmetric matrix smoothers are :" << endl << "Valid symmetric matrix smoothers are :" << endl
<< symMatrixConstructorTablePtr_->toc() << symMatrixConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -127,7 +127,7 @@ Foam::autoPtr<Foam::lduMatrix::smoother> Foam::lduMatrix::smoother::New
) << "Unknown asymmetric matrix smoother " ) << "Unknown asymmetric matrix smoother "
<< name << nl << nl << name << nl << nl
<< "Valid asymmetric matrix smoothers are :" << endl << "Valid asymmetric matrix smoothers are :" << endl
<< asymMatrixConstructorTablePtr_->toc() << asymMatrixConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -77,7 +77,7 @@ Foam::autoPtr<Foam::lduMatrix::solver> Foam::lduMatrix::solver::New
"lduMatrix::solver::New", solverControls "lduMatrix::solver::New", solverControls
) << "Unknown symmetric matrix solver " << name << nl << nl ) << "Unknown symmetric matrix solver " << name << nl << nl
<< "Valid symmetric matrix solvers are :" << endl << "Valid symmetric matrix solvers are :" << endl
<< symMatrixConstructorTablePtr_->toc() << symMatrixConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -106,7 +106,7 @@ Foam::autoPtr<Foam::lduMatrix::solver> Foam::lduMatrix::solver::New
"lduMatrix::solver::New", solverControls "lduMatrix::solver::New", solverControls
) << "Unknown asymmetric matrix solver " << name << nl << nl ) << "Unknown asymmetric matrix solver " << name << nl << nl
<< "Valid asymmetric matrix solvers are :" << endl << "Valid asymmetric matrix solvers are :" << endl
<< asymMatrixConstructorTablePtr_->toc() << asymMatrixConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -124,9 +124,9 @@ const Foam::GAMGAgglomeration& Foam::GAMGAgglomeration::New
) << "Unknown GAMGAgglomeration type " ) << "Unknown GAMGAgglomeration type "
<< agglomeratorType << ".\n" << agglomeratorType << ".\n"
<< "Valid algebraic GAMGAgglomeration types are :" << "Valid algebraic GAMGAgglomeration types are :"
<< lduMatrixConstructorTablePtr_->toc() << endl << lduMatrixConstructorTablePtr_->sortedToc() << endl
<< "Valid algebraic GAMGAgglomeration types are :" << "Valid algebraic GAMGAgglomeration types are :"
<< lduMeshConstructorTablePtr_->toc() << lduMeshConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -48,7 +48,7 @@ Foam::autoPtr<Foam::GAMGInterfaceField> Foam::GAMGInterfaceField::New
"const lduInterfaceField& fineInterface)" "const lduInterfaceField& fineInterface)"
) << "Unknown GAMGInterfaceField type " << coupleType << ".\n" ) << "Unknown GAMGInterfaceField type " << coupleType << ".\n"
<< "Valid GAMGInterfaceField types are :" << "Valid GAMGInterfaceField types are :"
<< lduInterfaceConstructorTablePtr_->toc() << lduInterfaceConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -52,7 +52,7 @@ Foam::autoPtr<Foam::GAMGInterface> Foam::GAMGInterface::New
"const labelField& neighbourRestrictAddressing)" "const labelField& neighbourRestrictAddressing)"
) << "Unknown GAMGInterface type " << coupleType << ".\n" ) << "Unknown GAMGInterface type " << coupleType << ".\n"
<< "Valid GAMGInterface types are :" << "Valid GAMGInterface types are :"
<< lduInterfaceConstructorTablePtr_->toc() << lduInterfaceConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -60,7 +60,7 @@ autoPtr<facePointPatch> facePointPatch::New
<< patch.type() << patch.type()
<< endl << endl << endl << endl
<< "Valid facePointPatch types are :" << endl << "Valid facePointPatch types are :" << endl
<< polyPatchConstructorTablePtr_->toc() << polyPatchConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -59,7 +59,7 @@ Foam::autoPtr<Foam::polyPatch> Foam::polyPatch::New
) << "Unknown polyPatch type " << patchType << " for patch " << name ) << "Unknown polyPatch type " << patchType << " for patch " << name
<< endl << endl << endl << endl
<< "Valid polyPatch types are :" << endl << "Valid polyPatch types are :" << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -107,7 +107,7 @@ Foam::autoPtr<Foam::polyPatch> Foam::polyPatch::New
<< " for patch " << name << " for patch " << name
<< endl << endl << endl << endl
<< "Valid polyPatch types are :" << endl << "Valid polyPatch types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
} }

View File

@ -62,7 +62,7 @@ Foam::autoPtr<Foam::cellZone> Foam::cellZone::New
dict dict
) << "Unknown cellZone type " << zoneType << endl << endl ) << "Unknown cellZone type " << zoneType << endl << endl
<< "Valid cellZone types are :" << endl << "Valid cellZone types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -62,7 +62,7 @@ Foam::autoPtr<Foam::faceZone> Foam::faceZone::New
dict dict
) << "Unknown faceZone type " << zoneType << endl << endl ) << "Unknown faceZone type " << zoneType << endl << endl
<< "Valid faceZone types are :" << endl << "Valid faceZone types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -62,7 +62,7 @@ Foam::autoPtr<Foam::pointZone> Foam::pointZone::New
dict dict
) << "Unknown pointZone type " << zoneType << endl << endl ) << "Unknown pointZone type " << zoneType << endl << endl
<< "Valid pointZone types are :" << endl << "Valid pointZone types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -142,7 +142,7 @@ Foam::autoPtr<Foam::ensightPart> Foam::ensightPart::New(Istream& is)
is is
) << "unknown ensightPart type " << partType << endl << endl ) << "unknown ensightPart type " << partType << endl << endl
<< "Valid ensightPart types are :" << endl << "Valid ensightPart types are :" << endl
<< istreamConstructorTablePtr_->toc() << istreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -64,7 +64,7 @@ Foam::autoPtr<Foam::decompositionMethod> Foam::decompositionMethod::New
) << "Unknown decompositionMethod " ) << "Unknown decompositionMethod "
<< decompositionMethodTypeName << endl << endl << decompositionMethodTypeName << endl << endl
<< "Valid decompositionMethods are : " << endl << "Valid decompositionMethods are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -96,7 +96,7 @@ Foam::autoPtr<Foam::decompositionMethod> Foam::decompositionMethod::New
) << "Unknown decompositionMethod " ) << "Unknown decompositionMethod "
<< decompositionMethodTypeName << endl << endl << decompositionMethodTypeName << endl << endl
<< "Valid decompositionMethods are : " << endl << "Valid decompositionMethods are : " << endl
<< dictionaryMeshConstructorTablePtr_->toc() << dictionaryMeshConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -79,7 +79,7 @@ Foam::autoPtr<Foam::dynamicFvMesh> Foam::dynamicFvMesh::New(const IOobject& io)
) << "Unknown dynamicFvMesh type " << dynamicFvMeshTypeName ) << "Unknown dynamicFvMesh type " << dynamicFvMeshTypeName
<< endl << endl << endl << endl
<< "Valid dynamicFvMesh types are :" << endl << "Valid dynamicFvMesh types are :" << endl
<< IOobjectConstructorTablePtr_->toc() << IOobjectConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -55,7 +55,7 @@ Foam::autoPtr<Foam::solidBodyMotionFunction> Foam::solidBodyMotionFunction::New
) << "Unknown solidBodyMotionFunction type " ) << "Unknown solidBodyMotionFunction type "
<< solidBodyMotionFunctionTypeName << endl << endl << solidBodyMotionFunctionTypeName << endl << endl
<< "Valid solidBodyMotionFunctions are : " << endl << "Valid solidBodyMotionFunctions are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -62,7 +62,7 @@ autoPtr<cellLooper> cellLooper::New
) << "Unknown set type " << type ) << "Unknown set type " << type
<< endl << endl << endl << endl
<< "Valid cellLooper types : " << endl << "Valid cellLooper types : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -107,7 +107,7 @@ Foam::autoPtr<Foam::motionSolver> Foam::motionSolver::New(const polyMesh& mesh)
) << "Unknown solver type " << solverTypeName ) << "Unknown solver type " << solverTypeName
<< endl << endl << endl << endl
<< "Valid solver types are: " << endl << "Valid solver types are: " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -64,7 +64,7 @@ autoPtr<polyMeshModifier> polyMeshModifier::New
dict dict
) << "Unknown polyMeshModifier type " << patchType << endl << endl ) << "Unknown polyMeshModifier type " << patchType << endl << endl
<< "Valid polyMeshModifier types are :" << endl << "Valid polyMeshModifier types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -69,7 +69,7 @@ Foam::autoPtr<Foam::engineMesh> Foam::engineMesh::New
) << "Unknown engineMesh type " << engineMeshTypeName ) << "Unknown engineMesh type " << engineMeshTypeName
<< endl << endl << endl << endl
<< "Valid engineMesh types are :" << endl << "Valid engineMesh types are :" << endl
<< IOobjectConstructorTablePtr_->toc() << IOobjectConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -76,7 +76,7 @@ autoPtr<SRFModel> SRFModel::New
) << "Unknown SRFModel type " << SRFModelTypeName ) << "Unknown SRFModel type " << SRFModelTypeName
<< nl << nl << nl << nl
<< "Valid SRFModel types are :" << nl << "Valid SRFModel types are :" << nl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -54,7 +54,7 @@ Foam::tmp<Foam::fvPatchField<Type> > Foam::fvPatchField<Type>::New
) << "Unknown patchTypefield type " << patchFieldType ) << "Unknown patchTypefield type " << patchFieldType
<< endl << endl << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< patchConstructorTablePtr_->toc() << patchConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -111,7 +111,7 @@ Foam::tmp<Foam::fvPatchField<Type> > Foam::fvPatchField<Type>::New
) << "Unknown patchField type " << patchFieldType ) << "Unknown patchField type " << patchFieldType
<< " for patch type " << p.type() << endl << endl << " for patch type " << p.type() << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
} }
@ -178,7 +178,7 @@ Foam::tmp<Foam::fvPatchField<Type> > Foam::fvPatchField<Type>::New
"const fvPatchFieldMapper&)" "const fvPatchFieldMapper&)"
) << "unknown patchTypefield type " << ptf.type() << endl << endl ) << "unknown patchTypefield type " << ptf.type() << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< patchMapperConstructorTablePtr_->toc() << patchMapperConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -59,7 +59,7 @@ tmp<fvsPatchField<Type> > fvsPatchField<Type>::New
) << "Unknown patchTypefield type " << patchFieldType ) << "Unknown patchTypefield type " << patchFieldType
<< endl << endl << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< patchConstructorTablePtr_->toc() << patchConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -115,7 +115,7 @@ tmp<fvsPatchField<Type> > fvsPatchField<Type>::New
) << "Unknown patchField type " << patchFieldType ) << "Unknown patchField type " << patchFieldType
<< " for patch type " << p.type() << endl << endl << " for patch type " << p.type() << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
} }
@ -183,7 +183,7 @@ tmp<fvsPatchField<Type> > fvsPatchField<Type>::New
"const fvPatchFieldMapper&)" "const fvPatchFieldMapper&)"
) << "unknown patchTypefield type " << ptf.type() << endl << endl ) << "unknown patchTypefield type " << ptf.type() << endl << endl
<< "Valid patchField types are :" << endl << "Valid patchField types are :" << endl
<< patchMapperConstructorTablePtr_->toc() << patchMapperConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -79,7 +79,7 @@ tmp<convectionScheme<Type> > convectionScheme<Type>::New
schemeData schemeData
) << "Convection scheme not specified" << endl << endl ) << "Convection scheme not specified" << endl << endl
<< "Valid convection schemes are :" << endl << "Valid convection schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -97,7 +97,7 @@ tmp<convectionScheme<Type> > convectionScheme<Type>::New
schemeData schemeData
) << "unknown convection scheme " << schemeName << endl << endl ) << "unknown convection scheme " << schemeName << endl << endl
<< "Valid convection schemes are :" << endl << "Valid convection schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -136,7 +136,7 @@ tmp<convectionScheme<Type> > convectionScheme<Type>::New
schemeData schemeData
) << "Convection scheme not specified" << endl << endl ) << "Convection scheme not specified" << endl << endl
<< "Valid convection schemes are :" << endl << "Valid convection schemes are :" << endl
<< MultivariateConstructorTablePtr_->toc() << MultivariateConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -156,7 +156,7 @@ tmp<convectionScheme<Type> > convectionScheme<Type>::New
schemeData schemeData
) << "unknown convection scheme " << schemeName << endl << endl ) << "unknown convection scheme " << schemeName << endl << endl
<< "Valid convection schemes are :" << endl << "Valid convection schemes are :" << endl
<< MultivariateConstructorTablePtr_->toc() << MultivariateConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -64,7 +64,7 @@ tmp<d2dt2Scheme<Type> > d2dt2Scheme<Type>::New
schemeData schemeData
) << "D2dt2 scheme not specified" << endl << endl ) << "D2dt2 scheme not specified" << endl << endl
<< "Valid d2dt2 schemes are :" << endl << "Valid d2dt2 schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -81,7 +81,7 @@ tmp<d2dt2Scheme<Type> > d2dt2Scheme<Type>::New
schemeData schemeData
) << "unknown d2dt2 scheme " << schemeName << endl << endl ) << "unknown d2dt2 scheme " << schemeName << endl << endl
<< "Valid d2dt2 schemes are :" << endl << "Valid d2dt2 schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -62,7 +62,7 @@ tmp<ddtScheme<Type> > ddtScheme<Type>::New
schemeData schemeData
) << "Ddt scheme not specified" << endl << endl ) << "Ddt scheme not specified" << endl << endl
<< "Valid ddt schemes are :" << endl << "Valid ddt schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -79,7 +79,7 @@ tmp<ddtScheme<Type> > ddtScheme<Type>::New
schemeData schemeData
) << "unknown ddt scheme " << schemeName << endl << endl ) << "unknown ddt scheme " << schemeName << endl << endl
<< "Valid ddt schemes are :" << endl << "Valid ddt schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -65,7 +65,7 @@ tmp<divScheme<Type> > divScheme<Type>::New
schemeData schemeData
) << "Div scheme not specified" << endl << endl ) << "Div scheme not specified" << endl << endl
<< "Valid div schemes are :" << endl << "Valid div schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -82,7 +82,7 @@ tmp<divScheme<Type> > divScheme<Type>::New
schemeData schemeData
) << "unknown div scheme " << schemeName << endl << endl ) << "unknown div scheme " << schemeName << endl << endl
<< "Valid div schemes are :" << endl << "Valid div schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -64,7 +64,7 @@ tmp<gradScheme<Type> > gradScheme<Type>::New
schemeData schemeData
) << "Grad scheme not specified" << endl << endl ) << "Grad scheme not specified" << endl << endl
<< "Valid grad schemes are :" << endl << "Valid grad schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -81,7 +81,7 @@ tmp<gradScheme<Type> > gradScheme<Type>::New
schemeData schemeData
) << "unknown grad scheme " << schemeName << endl << endl ) << "unknown grad scheme " << schemeName << endl << endl
<< "Valid grad schemes are :" << endl << "Valid grad schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -63,7 +63,7 @@ tmp<laplacianScheme<Type, GType> > laplacianScheme<Type, GType>::New
schemeData schemeData
) << "Laplacian scheme not specified" << endl << endl ) << "Laplacian scheme not specified" << endl << endl
<< "Valid laplacian schemes are :" << endl << "Valid laplacian schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -80,7 +80,7 @@ tmp<laplacianScheme<Type, GType> > laplacianScheme<Type, GType>::New
schemeData schemeData
) << "unknown laplacian scheme " << schemeName << endl << endl ) << "unknown laplacian scheme " << schemeName << endl << endl
<< "Valid laplacian schemes are :" << endl << "Valid laplacian schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -65,7 +65,7 @@ tmp<snGradScheme<Type> > snGradScheme<Type>::New
) << "Discretisation scheme not specified" ) << "Discretisation scheme not specified"
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -83,7 +83,7 @@ tmp<snGradScheme<Type> > snGradScheme<Type>::New
) << "Unknown discretisation scheme " << schemeName ) << "Unknown discretisation scheme " << schemeName
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -50,7 +50,7 @@ Foam::autoPtr<Foam::fvPatch> Foam::fvPatch::New
FatalErrorIn("fvPatch::New(const polyPatch&, const fvBoundaryMesh&)") FatalErrorIn("fvPatch::New(const polyPatch&, const fvBoundaryMesh&)")
<< "Unknown fvPatch type " << patch.type() << ".\n" << "Unknown fvPatch type " << patch.type() << ".\n"
<< "Valid fvPatch types are :" << "Valid fvPatch types are :"
<< polyPatchConstructorTablePtr_->toc() << polyPatchConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -50,7 +50,7 @@ Foam::interpolation<Type>::New
) << "Unknown interpolation type " << interpolationType ) << "Unknown interpolation type " << interpolationType
<< " for field " << psi.name() << nl << nl << " for field " << psi.name() << nl << nl
<< "Valid interpolation types : " << endl << "Valid interpolation types : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -62,7 +62,7 @@ limitedSurfaceInterpolationScheme<Type>::New
) << "Discretisation scheme not specified" ) << "Discretisation scheme not specified"
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -81,7 +81,7 @@ limitedSurfaceInterpolationScheme<Type>::New
) << "Unknown discretisation scheme " << schemeName ) << "Unknown discretisation scheme " << schemeName
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -117,7 +117,7 @@ limitedSurfaceInterpolationScheme<Type>::New
) << "Discretisation scheme not specified" ) << "Discretisation scheme not specified"
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -136,7 +136,7 @@ limitedSurfaceInterpolationScheme<Type>::New
) << "Unknown discretisation scheme " << schemeName ) << "Unknown discretisation scheme " << schemeName
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshFluxConstructorTablePtr_->toc() << MeshFluxConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -92,7 +92,7 @@ multivariateSurfaceInterpolationScheme<Type>::New
schemeData schemeData
) << "unknown discretisation scheme " << schemeName << endl << endl ) << "unknown discretisation scheme " << schemeName << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -56,7 +56,7 @@ tmp<surfaceInterpolationScheme<Type> > surfaceInterpolationScheme<Type>::New
) << "Discretisation scheme not specified" ) << "Discretisation scheme not specified"
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -83,7 +83,7 @@ tmp<surfaceInterpolationScheme<Type> > surfaceInterpolationScheme<Type>::New
) << "Unknown discretisation scheme " << schemeName ) << "Unknown discretisation scheme " << schemeName
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -110,7 +110,7 @@ tmp<surfaceInterpolationScheme<Type> > surfaceInterpolationScheme<Type>::New
) << "Discretisation scheme not specified" ) << "Discretisation scheme not specified"
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshConstructorTablePtr_->toc() << MeshConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -138,7 +138,7 @@ tmp<surfaceInterpolationScheme<Type> > surfaceInterpolationScheme<Type>::New
) << "Unknown discretisation scheme " << schemeName ) << "Unknown discretisation scheme " << schemeName
<< endl << endl << endl << endl
<< "Valid schemes are :" << endl << "Valid schemes are :" << endl
<< MeshFluxConstructorTablePtr_->toc() << MeshFluxConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -68,7 +68,7 @@ Foam::autoPtr<Foam::motionDiffusivity> Foam::motionDiffusivity::New
) << "Unknown diffusion type " << diffTypeName ) << "Unknown diffusion type " << diffTypeName
<< endl << endl << endl << endl
<< "Valid diffusion types are :" << endl << "Valid diffusion types are :" << endl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -74,7 +74,7 @@ Foam::autoPtr<Foam::injectorType> Foam::injectorType::New
<< injectorTypeName << injectorTypeName
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid injector types are :" << endl; << " Valid injector types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<injectorType>(cstrIter()(t, dict)); return autoPtr<injectorType>(cstrIter()(t, dict));

View File

@ -61,7 +61,7 @@ autoPtr<atomizationModel> atomizationModel::New
<< atomizationModelType << atomizationModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid atomizationModel types are :" << endl; << " Valid atomizationModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<atomizationModel>(cstrIter()(dict, sm)); return autoPtr<atomizationModel>(cstrIter()(dict, sm));

View File

@ -62,7 +62,7 @@ autoPtr<breakupModel> breakupModel::New
<< breakupModelType << breakupModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid breakupModel types are :" << endl; << " Valid breakupModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<breakupModel>(cstrIter()(dict, sm)); return autoPtr<breakupModel>(cstrIter()(dict, sm));

View File

@ -67,7 +67,7 @@ autoPtr<collisionModel> collisionModel::New
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid collisionModel types are :" << " Valid collisionModel types are :"
<< endl; << endl;
Info<< dictionaryConstructorTablePtr_->toc() Info<< dictionaryConstructorTablePtr_->sortedToc()
<< abort(FatalError); << abort(FatalError);
} }

View File

@ -62,7 +62,7 @@ autoPtr<dispersionModel> dispersionModel::New
<< dispersionModelType << dispersionModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid dispersionModel types are :" << endl; << " Valid dispersionModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<dispersionModel>(cstrIter()(dict, sm)); return autoPtr<dispersionModel>(cstrIter()(dict, sm));

View File

@ -60,7 +60,7 @@ autoPtr<dragModel> dragModel::New
<< dragModelType << dragModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid dragModel types are :" << endl; << " Valid dragModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<dragModel>(cstrIter()(dict)); return autoPtr<dragModel>(cstrIter()(dict));

View File

@ -62,7 +62,7 @@ autoPtr<evaporationModel> evaporationModel::New
<< evaporationModelType << evaporationModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid evaporationModel types are :" << endl; << " Valid evaporationModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<evaporationModel>(cstrIter()(dict)); return autoPtr<evaporationModel>(cstrIter()(dict));

View File

@ -60,7 +60,7 @@ autoPtr<heatTransferModel> heatTransferModel::New
<< heatTransferModelType << heatTransferModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid heatTransferModel types are :" << endl; << " Valid heatTransferModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<heatTransferModel>(cstrIter()(dict)); return autoPtr<heatTransferModel>(cstrIter()(dict));

View File

@ -61,7 +61,7 @@ autoPtr<injectorModel> injectorModel::New
<< injectorModelType << injectorModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid injectorModel types are :" << endl; << " Valid injectorModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<injectorModel>(cstrIter()(dict, sm)); return autoPtr<injectorModel>(cstrIter()(dict, sm));

View File

@ -61,7 +61,7 @@ autoPtr<wallModel> wallModel::New
<< wallModelType << wallModelType
<< ", constructor not in hash table" << endl << endl << ", constructor not in hash table" << endl << endl
<< " Valid wallModel types are :" << endl; << " Valid wallModel types are :" << endl;
Info<< dictionaryConstructorTablePtr_->toc() << abort(FatalError); Info<< dictionaryConstructorTablePtr_->sortedToc() << abort(FatalError);
} }
return autoPtr<wallModel>(cstrIter()(dict, U, sm)); return autoPtr<wallModel>(cstrIter()(dict, U, sm));

View File

@ -56,7 +56,7 @@ Foam::BinaryCollisionModel<CloudType>::New
<< BinaryCollisionModelType << BinaryCollisionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid BinaryCollisionModel types are:" << nl << " Valid BinaryCollisionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<BinaryCollisionModel<CloudType> > return autoPtr<BinaryCollisionModel<CloudType> >

View File

@ -53,7 +53,7 @@ Foam::InflowBoundaryModel<CloudType>::New
<< InflowBoundaryModelType << InflowBoundaryModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid InflowBoundaryModel types are:" << nl << " Valid InflowBoundaryModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<InflowBoundaryModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<InflowBoundaryModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -55,7 +55,7 @@ Foam::WallInteractionModel<CloudType>::New
<< WallInteractionModelType << WallInteractionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid WallInteractionModel types are:" << nl << " Valid WallInteractionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<WallInteractionModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<WallInteractionModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -55,7 +55,7 @@ Foam::IntegrationScheme<Type>::New
) << "Unknown IntegrationScheme type " ) << "Unknown IntegrationScheme type "
<< IntegrationSchemeTypeName << nl << nl << IntegrationSchemeTypeName << nl << nl
<< "Valid IntegrationScheme types are:" << nl << "Valid IntegrationScheme types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << nl << dictionaryConstructorTablePtr_->sortedToc() << nl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -48,7 +48,7 @@ Foam::autoPtr<Foam::DataEntry<Type> > Foam::DataEntry<Type>::New
<< "Unknown DataEntry type " << DataEntryType << " for DataEntry " << "Unknown DataEntry type " << DataEntryType << " for DataEntry "
<< entryName << ". Constructor not in hash table" << nl << nl << entryName << ". Constructor not in hash table" << nl << nl
<< " Valid DataEntry types are:" << nl << " Valid DataEntry types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << nl << dictionaryConstructorTablePtr_->sortedToc() << nl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -58,7 +58,7 @@ Foam::DispersionModel<CloudType>::New
<< DispersionModelType << DispersionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid DispersionModel types are:" << nl << " Valid DispersionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<DispersionModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<DispersionModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -55,7 +55,7 @@ Foam::autoPtr<Foam::DragModel<CloudType> > Foam::DragModel<CloudType>::New
<< DragModelType << DragModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid DragModel types are:" << nl << " Valid DragModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -56,7 +56,7 @@ Foam::InjectionModel<CloudType>::New
<< InjectionModelType << InjectionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid InjectionModel types are:" << nl << " Valid InjectionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<InjectionModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<InjectionModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -57,7 +57,7 @@ Foam::PatchInteractionModel<CloudType>::New
<< PatchInteractionModelType << PatchInteractionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid PatchInteractionModel types are:" << nl << " Valid PatchInteractionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<PatchInteractionModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<PatchInteractionModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -56,7 +56,7 @@ Foam::PostProcessingModel<CloudType>::New
<< PostProcessingModelType << PostProcessingModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid PostProcessingModel types are:" << nl << " Valid PostProcessingModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<PostProcessingModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<PostProcessingModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -56,7 +56,7 @@ Foam::CompositionModel<CloudType>::New
<< CompositionModelType << CompositionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid CompositionModel types are:" << nl << " Valid CompositionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << nl << dictionaryConstructorTablePtr_->sortedToc() << nl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -56,7 +56,7 @@ Foam::PhaseChangeModel<CloudType>::New
<< PhaseChangeModelType << PhaseChangeModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid PhaseChangeModel types are:" << nl << " Valid PhaseChangeModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<PhaseChangeModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<PhaseChangeModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -57,7 +57,7 @@ Foam::DevolatilisationModel<CloudType>::New
<< DevolatilisationModelType << DevolatilisationModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid DevolatilisationModel types are:" << nl << " Valid DevolatilisationModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<DevolatilisationModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<DevolatilisationModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -57,7 +57,7 @@ Foam::SurfaceReactionModel<CloudType>::New
<< SurfaceReactionModelType << SurfaceReactionModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid SurfaceReactionModel types are:" << nl << " Valid SurfaceReactionModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<SurfaceReactionModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<SurfaceReactionModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -56,7 +56,7 @@ Foam::HeatTransferModel<CloudType>::New
<< HeatTransferModelType << HeatTransferModelType
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid HeatTransferModel types are:" << nl << " Valid HeatTransferModel types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << exit(FatalError); << dictionaryConstructorTablePtr_->sortedToc() << exit(FatalError);
} }
return autoPtr<HeatTransferModel<CloudType> >(cstrIter()(dict, owner)); return autoPtr<HeatTransferModel<CloudType> >(cstrIter()(dict, owner));

View File

@ -60,7 +60,7 @@ autoPtr<energyScalingFunction> energyScalingFunction::New
) << "Unknown energyScalingFunction type " ) << "Unknown energyScalingFunction type "
<< energyScalingFunctionTypeName << nl << nl << energyScalingFunctionTypeName << nl << nl
<< "Valid energyScalingFunctions are: " << nl << "Valid energyScalingFunctions are: " << nl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -56,7 +56,7 @@ autoPtr<pairPotential> pairPotential::New
) << "Unknown pairPotential type " ) << "Unknown pairPotential type "
<< pairPotentialTypeName << nl << nl << pairPotentialTypeName << nl << nl
<< "Valid pairPotentials are: " << nl << "Valid pairPotentials are: " << nl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -60,7 +60,7 @@ autoPtr<tetherPotential> tetherPotential::New
) << "Unknown tetherPotential type " ) << "Unknown tetherPotential type "
<< tetherPotentialTypeName << nl << nl << tetherPotentialTypeName << nl << nl
<< "Valid tetherPotentials are: " << nl << "Valid tetherPotentials are: " << nl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -163,7 +163,7 @@ Foam::autoPtr<Foam::coordinateRotation> Foam::coordinateRotation::New
) << "Unknown coordinateRotation type " << rotType << nl << nl ) << "Unknown coordinateRotation type " << rotType << nl << nl
<< "Valid coordinateRotation types are :" << nl << "Valid coordinateRotation types are :" << nl
<< "[default: axes " << typeName_() << "]" << "[default: axes " << typeName_() << "]"
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -66,7 +66,7 @@ Foam::autoPtr<Foam::coordinateSystem> Foam::coordinateSystem::New
) << "Unknown coordinateSystem type " << coordType << nl << nl ) << "Unknown coordinateSystem type " << coordType << nl << nl
<< "Valid coordinateSystem types are :" << nl << "Valid coordinateSystem types are :" << nl
<< "[default: " << typeName_() << "]" << "[default: " << typeName_() << "]"
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }
@ -102,7 +102,7 @@ Foam::autoPtr<Foam::coordinateSystem> Foam::coordinateSystem::New
"constructing coordinateSystem" "constructing coordinateSystem"
) << "Unknown coordinateSystem type " << coordType << nl << nl ) << "Unknown coordinateSystem type " << coordType << nl << nl
<< "Valid coordinateSystem types are :" << nl << "Valid coordinateSystem types are :" << nl
<< origRotationConstructorTablePtr_->toc() << origRotationConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -57,7 +57,7 @@ autoPtr<searchableSurface> searchableSurface::New
) << "Unknown searchableSurface type " << searchableSurfaceType ) << "Unknown searchableSurface type " << searchableSurfaceType
<< endl << endl << endl << endl
<< "Valid searchableSurface types : " << endl << "Valid searchableSurface types : " << endl
<< dictConstructorTablePtr_->toc() << dictConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -60,7 +60,7 @@ autoPtr<topoSetSource> topoSetSource::New
) << "Unknown topoSetSource type " << topoSetSourceType ) << "Unknown topoSetSource type " << topoSetSourceType
<< endl << endl << endl << endl
<< "Valid topoSetSource types : " << endl << "Valid topoSetSource types : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -89,7 +89,7 @@ autoPtr<topoSetSource> topoSetSource::New
) << "Unknown topoSetSource type " << topoSetSourceType ) << "Unknown topoSetSource type " << topoSetSourceType
<< endl << endl << endl << endl
<< "Valid topoSetSource types : " << endl << "Valid topoSetSource types : " << endl
<< istreamConstructorTablePtr_->toc() << istreamConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -64,7 +64,7 @@ autoPtr<topoSet> topoSet::New
) << "Unknown set type " << setType ) << "Unknown set type " << setType
<< endl << endl << endl << endl
<< "Valid set types : " << endl << "Valid set types : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }
@ -95,7 +95,7 @@ autoPtr<topoSet> topoSet::New
) << "Unknown set type " << setType ) << "Unknown set type " << setType
<< endl << endl << endl << endl
<< "Valid set types : " << endl << "Valid set types : " << endl
<< sizeConstructorTablePtr_->toc() << sizeConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -44,7 +44,7 @@ Foam::autoPtr<Foam::calcType> Foam::calcType::New
<< " unknown calcType type " << calcTypeName << " unknown calcType type " << calcTypeName
<< ", constructor not in hash table" << nl << nl << ", constructor not in hash table" << nl << nl
<< " Valid calcType selections are: " << nl << " Valid calcType selections are: " << nl
<< dictionaryConstructorTablePtr_->toc() << nl << dictionaryConstructorTablePtr_->sortedToc() << nl
<< abort(FatalError); << abort(FatalError);
} }

View File

@ -430,7 +430,7 @@ Foam::autoPtr<Foam::sampledSet> Foam::sampledSet::New
) << "Unknown sample type " << sampleType ) << "Unknown sample type " << sampleType
<< endl << endl << endl << endl
<< "Valid sample types : " << endl << "Valid sample types : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -49,7 +49,7 @@ Foam::autoPtr<Foam::writer<Type> > Foam::writer<Type>::New
) << "Unknown write type " << writeType ) << "Unknown write type " << writeType
<< endl << endl << endl << endl
<< "Valid write types : " << endl << "Valid write types : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -141,7 +141,7 @@ Foam::sampledSurface::New
) << "Unknown sample type " << sampleType ) << "Unknown sample type " << sampleType
<< endl << endl << endl << endl
<< "Valid sample types : " << endl << "Valid sample types : " << endl
<< wordConstructorTablePtr_->toc() << wordConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -77,7 +77,7 @@ Foam::surfaceWriter<Type>::New(const word& writeType)
"surfaceWriter::New(const word&)" "surfaceWriter::New(const word&)"
) << "Unknown write type \"" << writeType << "\"\n\n" ) << "Unknown write type \"" << writeType << "\"\n\n"
<< "Valid write types : " << "Valid write types : "
<< wordConstructorTablePtr_->toc() << nl << wordConstructorTablePtr_->sortedToc() << nl
<< "Valid proxy types : " << "Valid proxy types : "
<< MeshedSurfaceProxy<face>::writeTypes() << endl << MeshedSurfaceProxy<face>::writeTypes() << endl
<< exit(FatalError); << exit(FatalError);

View File

@ -55,7 +55,7 @@ Foam::barotropicCompressibilityModel::New
) << "Unknown barotropicCompressibilityModel type " ) << "Unknown barotropicCompressibilityModel type "
<< bcModelTypeName << endl << endl << bcModelTypeName << endl << endl
<< "Valid barotropicCompressibilityModels are : " << endl << "Valid barotropicCompressibilityModels are : " << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -64,7 +64,7 @@ Foam::autoPtr<Foam::basicPsiThermo> Foam::basicPsiThermo::New
FatalErrorIn("basicPsiThermo::New(const fvMesh&)") FatalErrorIn("basicPsiThermo::New(const fvMesh&)")
<< "Unknown basicPsiThermo type " << thermoTypeName << nl << nl << "Unknown basicPsiThermo type " << thermoTypeName << nl << nl
<< "Valid basicPsiThermo types are:" << nl << "Valid basicPsiThermo types are:" << nl
<< fvMeshConstructorTablePtr_->toc() << nl << fvMeshConstructorTablePtr_->sortedToc() << nl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -67,7 +67,7 @@ Foam::autoPtr<Foam::basicRhoThermo> Foam::basicRhoThermo::New
FatalErrorIn("basicRhoThermo::New(const fvMesh&)") FatalErrorIn("basicRhoThermo::New(const fvMesh&)")
<< "Unknown basicRhoThermo type " << thermoTypeName << nl << nl << "Unknown basicRhoThermo type " << thermoTypeName << nl << nl
<< "Valid basicRhoThermo types are:" << nl << "Valid basicRhoThermo types are:" << nl
<< fvMeshConstructorTablePtr_->toc() << nl << fvMeshConstructorTablePtr_->sortedToc() << nl
<< exit(FatalError); << exit(FatalError);
} }

View File

@ -86,11 +86,11 @@ Foam::autoPtr<Foam::psiChemistryModel> Foam::psiChemistryModel::New
FatalErrorIn("psiChemistryModelBase::New(const mesh&)") FatalErrorIn("psiChemistryModelBase::New(const mesh&)")
<< "Unknown psiChemistryModel type " << psiChemistryModelType << "Unknown psiChemistryModel type " << psiChemistryModelType
<< nl << nl << "Valid psiChemistryModel types are:" << nl << nl << nl << "Valid psiChemistryModel types are:" << nl
<< fvMeshConstructorTablePtr_->toc() << nl << exit(FatalError); << fvMeshConstructorTablePtr_->sortedToc() << nl << exit(FatalError);
} }
else else
{ {
wordList models = fvMeshConstructorTablePtr_->toc(); wordList models = fvMeshConstructorTablePtr_->sortedToc();
forAll(models, i) forAll(models, i)
{ {
models[i] = models[i].replace(typeName + ',', ""); models[i] = models[i].replace(typeName + ',', "");

View File

@ -86,11 +86,11 @@ Foam::autoPtr<Foam::rhoChemistryModel> Foam::rhoChemistryModel::New
FatalErrorIn("rhoChemistryModelBase::New(const mesh&)") FatalErrorIn("rhoChemistryModelBase::New(const mesh&)")
<< "Unknown rhoChemistryModel type " << rhoChemistryModelType << "Unknown rhoChemistryModel type " << rhoChemistryModelType
<< nl << nl << "Valid rhoChemistryModel types are:" << nl << nl << nl << "Valid rhoChemistryModel types are:" << nl
<< fvMeshConstructorTablePtr_->toc() << nl << exit(FatalError); << fvMeshConstructorTablePtr_->sortedToc() << nl << exit(FatalError);
} }
else else
{ {
wordList models = fvMeshConstructorTablePtr_->toc(); wordList models = fvMeshConstructorTablePtr_->sortedToc();
forAll(models, i) forAll(models, i)
{ {
models[i] = models[i].replace(typeName + ',', ""); models[i] = models[i].replace(typeName + ',', "");

View File

@ -49,7 +49,7 @@ Foam::chemistrySolver<CompType, ThermoType>::New
if (cstrIter == dictionaryConstructorTablePtr_->end()) if (cstrIter == dictionaryConstructorTablePtr_->end())
{ {
wordList models = dictionaryConstructorTablePtr_->toc(); wordList models = dictionaryConstructorTablePtr_->sortedToc();
forAll(models, i) forAll(models, i)
{ {
models[i] = models[i].replace models[i] = models[i].replace

View File

@ -66,7 +66,7 @@ Foam::autoPtr<Foam::laminarFlameSpeed> Foam::laminarFlameSpeed::New
) << "Unknown laminarFlameSpeed type " ) << "Unknown laminarFlameSpeed type "
<< laminarFlameSpeedType << endl << endl << laminarFlameSpeedType << endl << endl
<< "Valid laminarFlameSpeed types are :" << endl << "Valid laminarFlameSpeed types are :" << endl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalIOError); << exit(FatalIOError);
} }

View File

@ -64,7 +64,7 @@ Foam::autoPtr<Foam::liquid> Foam::liquid::New(Istream& is)
<< "Unknown liquid type " << liquidType << "Unknown liquid type " << liquidType
<< nl << nl << nl << nl
<< "Valid liquid types are:" << nl << "Valid liquid types are:" << nl
<< ConstructorTablePtr_->toc() << ConstructorTablePtr_->sortedToc()
<< abort(FatalError); << abort(FatalError);
} }
@ -81,7 +81,7 @@ Foam::autoPtr<Foam::liquid> Foam::liquid::New(Istream& is)
<< "Unknown liquid type " << liquidType << "Unknown liquid type " << liquidType
<< endl << endl << endl << endl
<< "Valid liquid types are:" << nl << "Valid liquid types are:" << nl
<< IstreamConstructorTablePtr_->toc() << IstreamConstructorTablePtr_->sortedToc()
<< abort(FatalError); << abort(FatalError);
} }

View File

@ -46,7 +46,7 @@ Foam::autoPtr<Foam::pdf> Foam::pdf::New
FatalErrorIn("pdf::New(const dictionary&, Random&)") FatalErrorIn("pdf::New(const dictionary&, Random&)")
<< "unknown pdf type " << pdfType << nl << nl << "unknown pdf type " << pdfType << nl << nl
<< "Valid pdf types are:" << nl << "Valid pdf types are:" << nl
<< dictionaryConstructorTablePtr_->toc() << dictionaryConstructorTablePtr_->sortedToc()
<< exit(FatalError); << exit(FatalError);
} }

Some files were not shown because too many files have changed in this diff Show More