Benhour, On Tuesday, October 25, 2016 at 12:59:29 PM UTC-4, [email protected] wrote: > > I am solving a thermoelastic problem in cylindrical coordinate system. I > used CG solver for thermal problem and Newton-Raphson method for elasticity > section. For solving linear system, I used direct solver > SparseDirectUMFPACK with SSOR as a preconditioner. > This make no sense. Direct solver don't use a preconditioner.
> Unfortunately, I got some errors as follow: > > * dealii::Vector<Number>::real_type dealii::Vector<Number>::norm_sqr() > const [with Number = double; dealii::Vector<Number>::real_type = double]* > *MPI_ABORT was invoked on rank 0 in communicator MPI_COMM_WORLD * > *The violated condition was: * > *with errorcode 59.* > *dealii::numbers::is_finite(sum)* > > *The name and call sequence of the exception was:* > *NOTE: invoking MPI_ABORT causes Open MPI to kill all MPI processes.* > *ExcNumberNotFinite(std::complex<double>(sum))* > You are using MPI but UMFPACK doesn't work in parallel... Best, Bruno -- 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.
