> I was wondering if it is possible to define a set_boundary_indicator at > a node/vertex?..I mean is there any equivalent of this code: > > Triag.begin_active()->face(0)->set_boundary_indicator(1); > > ..for vertices or nodes?
No, in deal.II boundary indicators are always associated with parts of the boundary, i.e. faces or edges (because it needs to be inherited by children from their parents). You may have to store this information in some other way, I'm afraid. W. ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
