]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Use the same variable name in all output files. 9897/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Wed, 15 Apr 2020 19:38:49 +0000 (13:38 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Wed, 15 Apr 2020 19:38:49 +0000 (13:38 -0600)
examples/step-52/step-52.cc

index 3e314b1ee134742c8c737935e94999fd54d93036..60a8a3a07b0f2c64c9d5bdeece81622ef3b12339 100644 (file)
@@ -445,19 +445,19 @@ namespace Step52
             break;
           }
       }
-    const std::string solution_name = "solution_" + method_name;
 
     DataOut<2> data_out;
 
     data_out.attach_dof_handler(dof_handler);
-    data_out.add_data_vector(solution, solution_name);
+    data_out.add_data_vector(solution, "solution");
 
     data_out.build_patches();
 
     data_out.set_flags(DataOutBase::VtkFlags(time, time_step));
 
-    const std::string filename =
-      solution_name + "-" + Utilities::int_to_string(time_step, 3) + ".vtu";
+    const std::string filename = "solution_" + method_name + "-" +
+                                 Utilities::int_to_string(time_step, 3) +
+                                 ".vtu";
     std::ofstream output(filename);
     data_out.write_vtu(output);
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.