Skip to content
Snippets Groups Projects
Commit 2914258c authored by andy's avatar andy
Browse files

STYLE: Code formatting

parent 84b8538c
Branches
Tags
No related merge requests found
......@@ -31,6 +31,7 @@ Foam::combustionModels::psiChemistryCombustionModel::pChemistry()
return pChemistry_();
}
inline const Foam::psiChemistryModel&
Foam::combustionModels::psiChemistryCombustionModel::
pChemistry() const
......@@ -38,22 +39,26 @@ pChemistry() const
return pChemistry_();
}
inline Foam::tmp<Foam::volScalarField>
Foam::combustionModels::psiChemistryCombustionModel::rho() const
{
return pChemistry_->thermo().rho();
}
inline const Foam::psiReactionThermo&
Foam::combustionModels::psiChemistryCombustionModel::thermo() const
{
return pChemistry_->thermo();
}
inline Foam::psiReactionThermo&
Foam::combustionModels::psiChemistryCombustionModel::thermo()
{
return pChemistry_->thermo();
}
// ************************************************************************* //
......@@ -31,6 +31,7 @@ Foam::combustionModels::psiCombustionModel::thermo()
return thermo_();
}
inline const Foam::psiReactionThermo&
Foam::combustionModels::psiCombustionModel::thermo() const
{
......
......@@ -31,6 +31,7 @@ Foam::combustionModels::rhoChemistryCombustionModel::pChemistry()
return pChemistry_();
}
inline const Foam::rhoChemistryModel&
Foam::combustionModels::rhoChemistryCombustionModel::
pChemistry() const
......@@ -38,22 +39,26 @@ pChemistry() const
return pChemistry_();
}
inline Foam::tmp<Foam::volScalarField>
Foam::combustionModels::rhoChemistryCombustionModel::rho() const
{
return pChemistry_->thermo().rho();
}
inline const Foam::rhoReactionThermo&
Foam::combustionModels::rhoChemistryCombustionModel::thermo() const
{
return pChemistry_->thermo();
}
inline Foam::rhoReactionThermo&
Foam::combustionModels::rhoChemistryCombustionModel::thermo()
{
return pChemistry_->thermo();
}
// ************************************************************************* //
......@@ -31,6 +31,7 @@ Foam::combustionModels::rhoCombustionModel::thermo()
return thermo_();
}
inline const Foam::rhoReactionThermo&
Foam::combustionModels::rhoCombustionModel::thermo() const
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment