Hello, I am reading step-12 of the tutorial. The following lines are from local integrator for interior face (dinfo is an alias to MeshWorker::DoFInfo).
FullMatrix<double> <https://www.dealii.org/current/doxygen/deal.II/classFullMatrix.html> &u1_v1_matrix = dinfo1.matrix(0, false).matrix; FullMatrix<double> <https://www.dealii.org/current/doxygen/deal.II/classFullMatrix.html> &u2_v1_matrix = dinfo1.matrix(0, true).matrix; FullMatrix<double> <https://www.dealii.org/current/doxygen/deal.II/classFullMatrix.html> &u1_v2_matrix = dinfo2.matrix(0, true).matrix; FullMatrix<double> <https://www.dealii.org/current/doxygen/deal.II/classFullMatrix.html> &u2_v2_matrix = dinfo2.matrix(0, false).matrix; The matrix() function is documented here: https://www.dealii.org/current/doxygen/deal.II/classMeshWorker_1_1LocalResults.html#afdae422206740b2f5a14fd562c27e6ca. I couldn't understand what the arguments of this function signify. Can anyone please clarify? Thank you Vachan -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/e97a4369-0ed8-45cb-afb8-ba3e481ae6c9%40googlegroups.com.
