Skip to content

Commit

Permalink
Merge pull request #15657 from kronbichler/fix_step-46
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Jul 5, 2023
2 parents 4bfe6e7 + 3b44d48 commit 26653d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/step-46/step-46.cc
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,12 @@ namespace Step46
: stokes_degree(stokes_degree)
, elasticity_degree(elasticity_degree)
, triangulation(Triangulation<dim>::maximum_smoothing)
, stokes_fe(FE_Q<dim>(stokes_degree + 1) ^ dim, // for the fluid velocity
FE_Q<dim>(stokes_degree), // for the fluid pressure
FE_Nothing<dim>() ^ dim) // for the solid displacement
, elasticity_fe(FE_Nothing<dim>() ^ dim, // for the fluid velocity
FE_Nothing<dim>(), // for the fluid pressure
FE_Q<dim>(elasticity_degree)) // for the solid displacement
, stokes_fe(FE_Q<dim>(stokes_degree + 1) ^ dim, // fluid velocity
FE_Q<dim>(stokes_degree), // fluid pressure
FE_Nothing<dim>() ^ dim) // solid displacement
, elasticity_fe(FE_Nothing<dim>() ^ dim, // fluid velocity
FE_Nothing<dim>(), // fluid pressure
FE_Q<dim>(elasticity_degree) ^ dim) // solid displacement
, dof_handler(triangulation)
, viscosity(2)
, lambda(1)
Expand Down

0 comments on commit 26653d5

Please sign in to comment.