STY: More modifications to the style

This commit is contained in:
sergio
2014-03-05 10:32:27 +00:00
committed by Andrew Heather
parent 10bee8463c
commit 4acc7c1260
3 changed files with 16 additions and 0 deletions

View File

@ -53,6 +53,16 @@ Foam::PengRobinsonGas<Specie>::PengRobinsonGas
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class Specie>
void Foam::PengRobinsonGas<Specie>::write(Ostream& os) const
{
Specie::write(os);
}
// * * * * * * * * * * * * * * * Ostream Operator * * * * * * * * * * * * * //
template<class Specie>

View File

@ -220,6 +220,10 @@ public:
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "PengRobinsonGasI.H"

View File

@ -218,6 +218,7 @@ inline void Foam::PengRobinsonGas<Specie>::operator+=
omega_ = molr1*omega_ + molr2*pg.omega_;
}
template<class Specie>
inline void Foam::PengRobinsonGas<Specie>::operator-=
(
@ -236,6 +237,7 @@ inline void Foam::PengRobinsonGas<Specie>::operator-=
omega_ = molr1*omega_ - molr2*pg.omega_;
}
template<class Specie>
inline void Foam::PengRobinsonGas<Specie>::operator*=(const scalar s)
{