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

ENH: Apply quadratic approximation to film surface velocity

parent e3a26cfe
Branches
Tags
No related merge requests found
......@@ -282,8 +282,8 @@ void kinematicSingleLayer::updateSurfaceVelocities()
Uw_ -= nHat()*(Uw_ & nHat());
Uw_.correctBoundaryConditions();
// apply quadratic profile to surface velocity
Us_ = 2.0*U_;
// apply quadratic profile to surface velocity (scale by sqrt(2))
Us_ = 1.414*U_;
Us_.correctBoundaryConditions();
}
......
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