Correct comment style

This commit is contained in:
Hrvoje Jasak 2015-07-06 05:49:03 +01:00
parent 6b2ed2536e
commit 8c26070cd9

View file

@ -89,11 +89,11 @@ int main(int argc, char *argv[])
// Prepare block system
fvBlockMatrix<vector2> blockM(blockT);
//- Inset equations into block Matrix
// Insert equations into block Matrix
blockM.insertEquation(0, TEqn);
blockM.insertEquation(1, TsEqn);
//- Add off-diagonal coupling terms
// Add off-diagonal coupling terms
scalarField coupling(mesh.nCells(), -alpha.value());
blockM.insertEquationCoupling(0, 1, coupling);