Skip to content

Commit

Permalink
remove some more stuff from step-37
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Jan 14, 2025
1 parent 54ac82b commit 62cd026
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions include/core/temp_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -335,22 +335,13 @@ LaplaceProblem<dim>::run()
<< std::endl;
}

for (unsigned int cycle = 0; cycle < 9 - dim; ++cycle)
{
pcout << "Cycle " << cycle << std::endl;
GridGenerator::hyper_cube(triangulation, 0.0, 1.0);
triangulation.refine_global(6);

if (cycle == 0)
{
GridGenerator::hyper_cube(triangulation, 0., 1.);
triangulation.refine_global(3 - dim);
}
triangulation.refine_global(1);
setup_system();
assemble_rhs();
solve();
output_results(cycle);
pcout << std::endl;
};
setup_system();
assemble_rhs();
solve();
output_results(0);
}

#endif

0 comments on commit 62cd026

Please sign in to comment.