mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STY: Fixing style
This commit is contained in:
@ -202,12 +202,9 @@ Foam::reactionsSensitivityAnalysis<chemistryType>::reactionsSensitivityAnalysis
|
||||
read(dict);
|
||||
if (mesh_.nCells() != 1)
|
||||
{
|
||||
FatalErrorIn
|
||||
(
|
||||
"Foam::reactionsSensitivityAnalysis::"
|
||||
"reactionsSensitivityAnalysis()"
|
||||
) << "Function object only applicable to single cell cases "
|
||||
<< endl;
|
||||
FatalErrorInFunction
|
||||
<< "Function object only applicable to single cell cases "
|
||||
<< abort(FatalError);
|
||||
}
|
||||
|
||||
if (mesh_.foundObject<basicChemistryModel>("chemistryProperties"))
|
||||
@ -248,12 +245,9 @@ Foam::reactionsSensitivityAnalysis<chemistryType>::reactionsSensitivityAnalysis
|
||||
}
|
||||
else
|
||||
{
|
||||
FatalErrorIn
|
||||
(
|
||||
"void Foam::reactionsSensitivityAnalysis::"
|
||||
"reactionsSensitivityAnalysis()"
|
||||
) << " Not chemistry model found "
|
||||
<< " The object available are : " << mesh_.names()
|
||||
FatalErrorInFunction
|
||||
<< " Not chemistry model found. "
|
||||
<< " Object available are : " << mesh_.names()
|
||||
<< exit(FatalError);
|
||||
}
|
||||
}
|
||||
@ -274,8 +268,7 @@ void Foam::reactionsSensitivityAnalysis<chemistryType>::read
|
||||
(
|
||||
const dictionary& dict
|
||||
)
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
|
||||
template<class chemistryType>
|
||||
@ -288,7 +281,6 @@ void Foam::reactionsSensitivityAnalysis<chemistryType>::execute()
|
||||
(
|
||||
"chemistryProperties"
|
||||
);
|
||||
|
||||
calculateSpeciesRR(chemistry);
|
||||
}
|
||||
|
||||
@ -322,7 +314,6 @@ void Foam::reactionsSensitivityAnalysis<chemistryType>::write()
|
||||
writeSpeciesRR();
|
||||
|
||||
startTime_ = endTime_;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@ Description
|
||||
"consumptionInt" : integral between dumps of the consumption rate
|
||||
|
||||
The function object indicates reaction rates of creation or destruction
|
||||
of spcecies in each reaction.
|
||||
of species in each reaction.
|
||||
|
||||
|
||||
SourceFiles
|
||||
|
||||
Reference in New Issue
Block a user