Formatting

This commit is contained in:
Hrvoje Jasak 2014-12-05 09:46:52 +00:00
parent 953b9dea77
commit 03283d2ede
2 changed files with 3 additions and 2 deletions

View file

@ -109,7 +109,8 @@ void translatingWallVelocityFvPatchVectorField::updateCoeffs()
return; return;
} }
// Remove the component of U normal to the wall in case the wall is not flat // Remove the component of U normal to the wall in case the wall
// is not flat
vectorField n = patch().nf(); vectorField n = patch().nf();
vectorField::operator=(U_ - n*(n & U_)); vectorField::operator=(U_ - n*(n & U_));

View file

@ -52,7 +52,7 @@ class translatingWallVelocityFvPatchVectorField
{ {
// Private data // Private data
//- Origin of the rotation //- Translating velocity
vector U_; vector U_;