Dear all, I am experiencing long time to computee the assembling and I would like to ask if this is common or there is something wrong with my implementation.
My model is built in a similar way as step-29 and step-40 (using complex values ad solving with a direct solver using distributed parallel implementation). I can show the structure of my assembly_system() function to see if there is something that can be in another way to save some time: void Problem<dim>::assemble_system() { for (unsigned int i = 0; i < dofs_per_cell; ++i) { for (unsigned int j = 0; j < dofs_per_cell; ++j) { //Look that both are from the same compontent (real or imag) for (unsigned int q_point = 0; q_point < n_q_points; ++q_point) { if (fe.system_to_component_index(i).first == fe.system_to_component_index(j).first) { } -- 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 dealii+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/84151a52-e3c1-4cad-9d63-02ff5e2a6816n%40googlegroups.com.