Skip to content
Snippets Groups Projects
Commit a1797e92 authored by Henry Weller's avatar Henry Weller
Browse files

filmViscosityModel/constantViscosity: Update viscosity to support Arrhenius modification

parent 171c25ab
Branches
Tags
No related merge requests found
......@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -58,8 +58,7 @@ constantViscosity::constantViscosity
filmViscosityModel(typeName, owner, dict, mu),
mu0_(readScalar(coeffDict_.lookup("mu0")))
{
mu_.internalField() = mu0_;
mu_.correctBoundaryConditions();
mu_ == mu0_;
}
......@@ -77,7 +76,7 @@ void constantViscosity::correct
const volScalarField& T
)
{
// do nothing
mu_ == mu0_;
}
......
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