Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
Formatting fluid solver code
Browse files Browse the repository at this point in the history
  • Loading branch information
David Blom committed Apr 26, 2015
1 parent 1e1c645 commit 111cde9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fsi/fluidSolvers/foamFluidSolver.C
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void foamFluidSolver::getWritePositions( matrix & writePositions )
globalOffset += nGlobalCenters[i];

matrix writePositionsLocal;
getWritePositionsLocal ( writePositionsLocal );
getWritePositionsLocal( writePositionsLocal );

for ( int i = 0; i < writePositionsLocal.rows(); i++ )
for ( int j = 0; j < writePositionsLocal.cols(); j++ )
Expand Down
2 changes: 1 addition & 1 deletion src/fsi/solidSolvers/foamSolidSolver.C
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void foamSolidSolver::getWritePositions( matrix & writePositions )
globalOffset += nGlobalCenters[i];

matrix writePositionsLocal;
getWritePositionsLocal ( writePositionsLocal );
getWritePositionsLocal( writePositionsLocal );

for ( int i = 0; i < writePositionsLocal.rows(); i++ )
for ( int j = 0; j < writePositionsLocal.cols(); j++ )
Expand Down

0 comments on commit 111cde9

Please sign in to comment.