21 std::ifstream ifs(
"../../gmsh/data/cylinder_r" + std::to_string(r) +
".msh");
26 cell_r = cell->center()[0];
29 cell->set_material_id(mid_1);
30 }
else if (cell_r < d_2) {
31 cell->set_material_id(mid_3);
32 }
else if (cell_r < b) {
33 cell->set_material_id(mid_2);
45 std::ifstream ifs(
"../../gmsh/data/sphere_r" + std::to_string(r) +
".msh");
52 cell_r = cell->center().norm();
55 cell->set_material_id(mid_1);
56 }
else if (cell_r < d_2) {
57 cell->set_material_id(mid_3);
58 }
else if (cell_r < b) {
59 cell->set_material_id(mid_2);
Implements the solver of the Axisymmetric - floating conductor (flc-axi/) numerical experiment.
Triangulation< dim > triangulation
The mesh.