> i.e. would integrid_map below behave as i think it should: > > Triangulation<2> tria1; > Triangulation<2> tria2; > DoFHandler<2> dof1; > DoFHandler<2> dof2; > dof1 (tria1); > dof2 (tria2); > GridGenerator::subdivided_hyper_rectangle(tria1, divisions, p1, p2); > GridGenerator::subdivided_hyper_rectangle(tria2, divisions, p1, p2); > > ... [adaptive refinement on both grids, independent of one another] > > InterGridMap<DoFHandler<2> > intergrid_map; > intergrid_map.make_mapping (dof1, dof2);
Yes, this is exactly the situation for which IntergridMap was created. Best W. ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
