From 62cd02650cb0359528068f6d47d8823f21be0fbe Mon Sep 17 00:00:00 2001 From: landinjm Date: Tue, 14 Jan 2025 15:41:36 -0500 Subject: [PATCH] remove some more stuff from step-37 --- include/core/temp_test.h | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/include/core/temp_test.h b/include/core/temp_test.h index a7da695d..18901736 100644 --- a/include/core/temp_test.h +++ b/include/core/temp_test.h @@ -335,22 +335,13 @@ LaplaceProblem::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 \ No newline at end of file