From: luz.paz Date: Mon, 12 Mar 2018 10:56:36 +0000 (-0400) Subject: Source typos X-Git-Tag: v9.0.0-rc1~330^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6036%2Fhead;p=dealii.git Source typos --- diff --git a/tests/mpi/petsc_bug_ghost_vector_01.cc b/tests/mpi/petsc_bug_ghost_vector_01.cc index 3a21406c14..56e39d892d 100644 --- a/tests/mpi/petsc_bug_ghost_vector_01.cc +++ b/tests/mpi/petsc_bug_ghost_vector_01.cc @@ -100,7 +100,7 @@ void test () const unsigned int v_space_cells=5;; const double cell_size_x=0.1; const double cell_size_y=0.1; - const double lenght = solid_cells_x*cell_size_x, + const double length = solid_cells_x*cell_size_x, height= static_cast(h_cells*cell_size_y), h_distance=static_cast(cell_size_x*inflow_cells), v_distance=static_cast(cell_size_y*v_space_cells), @@ -132,7 +132,7 @@ void test () GridGenerator::subdivided_hyper_rectangle(tmp_rectangle, step_sizes, Point<2>(h_distance,0), - Point<2>(lenght+h_distance,v_distance), + Point<2>(length+h_distance,v_distance), false); tmp_tria_buffer.copy_triangulation(tmp_tria_fluid); @@ -153,7 +153,7 @@ void test () GridGenerator::subdivided_hyper_rectangle(tmp_rectangle, step_sizes, Point<2>(h_distance,solid_top), - Point<2>(h_distance+lenght,height), + Point<2>(h_distance+length,height), false); tmp_tria_buffer.copy_triangulation(tmp_tria_fluid); @@ -172,7 +172,7 @@ void test () step_sizes[1].push_back(cell_size_y); GridGenerator::subdivided_hyper_rectangle(tmp_rectangle, step_sizes, - Point<2>(h_distance+lenght,0), + Point<2>(h_distance+length,0), Point<2>(total_length,height), false);