On 7/16/19 2:10 PM, Bruno Turcksin wrote: > No it's not where the error comes from. It is from somewhere in > Step8::ElasticProblem<1>::assemble_system_matrix() You need to find > which line produces the error.
Krishanu, indeed, Bruno knows this because he is looking at the backtrace shown in the error message you posted: #0 ./nodal_growth_dyn_full: Step8::ElasticProblem<1>::assemble_system_matrix() #1 ./nodal_growth_dyn_full: Step8::ElasticProblem<1>::run() #2 ./nodal_growth_dyn_full: main The easiest way to find these errors is to run the program in a debugger. It will stop in exactly the place where the problem is, and allow you to inspect all local variables. It's a tool so worth learning how to use! (There are also video lectures showing how to do that in eclipse.) Best W. -- ------------------------------------------------------------------------ Wolfgang Bangerth email: [email protected] www: http://www.math.colostate.edu/~bangerth/ -- 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/165fa819-3baf-0faf-cabc-5206b54fb1bf%40colostate.edu. For more options, visit https://groups.google.com/d/optout.
