Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.4.x
This commit is contained in:
parent
b3c03b6e5e
commit
af70485f4b
2 changed files with 2 additions and 4 deletions
|
|
@ -56,7 +56,7 @@ constantViscosity::constantViscosity
|
|||
)
|
||||
:
|
||||
filmViscosityModel(typeName, owner, dict, mu),
|
||||
mu0_(readScalar(coeffDict_.lookup("mu0")))
|
||||
mu0_("mu0", dimDensity*dimViscosity, coeffDict_.lookup("mu0"))
|
||||
{
|
||||
mu_ == mu0_;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,8 +54,6 @@ class constantViscosity
|
|||
:
|
||||
public filmViscosityModel
|
||||
{
|
||||
private:
|
||||
|
||||
// Private member functions
|
||||
|
||||
//- Disallow default bitwise copy construct
|
||||
|
|
@ -70,7 +68,7 @@ protected:
|
|||
// Protected data
|
||||
|
||||
//- Constant viscosity [Pa.s]
|
||||
scalar mu0_;
|
||||
dimensionedScalar mu0_;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue