mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STY: More modifications to the style
This commit is contained in:
@ -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>
|
||||
|
||||
@ -220,6 +220,10 @@ public:
|
||||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "PengRobinsonGasI.H"
|
||||
|
||||
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user