And this is the procedure how I output them: DataOut<dim> data_out; data_out.attach_dof_handler(dof_handler);
std::vector<std::string> configurational_forces_magnitude(dim, "config_forces"); std::vector<DataComponentInterpretation::DataComponentInterpretation> configurational_forces_interpretation(dim, DataComponentInterpretation::component_is_part_of_vector); data_out.add_data_vector(configurational_forces, configurational_forces_magnitude, DataOut<dim>::type_dof_data, configurational_forces_interpretation); Very weird. I can compute everything correctly for one core, but why is it not multicore compatible? Kind Regards, S. A. Mohseni -- 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]. For more options, visit https://groups.google.com/d/optout.
