template<int dim>
void output(parallel::distributed::Triangulation<dim> &tr)
{
- const std::string filename = ("mg_01/mesh." +
+ const std::string filename = ("mesh." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".fig");
template<int dim>
void output(parallel::distributed::Triangulation<dim> &tr)
{
- const std::string filename = ("mg_03/mesh." +
+ const std::string filename = ("mesh." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".vtu");
template<int dim>
void output(parallel::distributed::Triangulation<dim> &tr)
{
- const std::string filename = ("mg_04/mesh." +
+ const std::string filename = ("mesh." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".vtu");
template<int dim>
void output(parallel::distributed::Triangulation<dim> &tr)
{
- const std::string filename = ("mg_05/mesh." +
+ const std::string filename = ("mesh." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".svg");
DataOut<dim>::type_dof_data,
data_component_interpretation);
data_out.build_patches (4);
- const std::string filename = ("p4est_2d_constraintmatrix_03/solution." +
+ const std::string filename = ("solution." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".d2");
data_out.add_data_vector(x_rel, solution_names);
data_out.build_patches (1);
- const std::string filename = ("p4est_2d_constraintmatrix_04/solution." +
+ const std::string filename = ("solution." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".d2");
data_out.add_data_vector(x_rel, solution_names);
data_out.build_patches (1);
- const std::string filename = ("p4est_3d_constraintmatrix_03/solution." +
+ const std::string filename = ("solution." +
Utilities::int_to_string
(tr.locally_owned_subdomain(), 4) +
".vtu");
<< checksum
<< std::endl;
- std::ofstream file("p4est_3d_ghost_01/1.gpl");
+ std::ofstream file("1.pl");
GridOut().write_gnuplot (tr, file);
}