Component-Wise Newton Raphson Strategy

From KratosWiki
(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
 
''' Definition '''     
 
''' Definition '''     
  
Solution strategy for Non-Linear analysis. It is derived from the Residual-Based Newton Raphson strategy but it sets automatically the Builder and Solver as
+
Implicit solving strategy for Non-Linear analysis. It is derived from the Residual-Based Newton Raphson strategy but it sets automatically the Builder and Solver as
  
 
  ComponentWiseBuilderAndSolver(LinearSolver);
 
  ComponentWiseBuilderAndSolver(LinearSolver);

Revision as of 11:11, 23 March 2016

Definition

Implicit solving strategy for Non-Linear analysis. It is derived from the Residual-Based Newton Raphson strategy but it sets automatically the Builder and Solver as

ComponentWiseBuilderAndSolver(LinearSolver);

Which is going to build the linear system by components. That makes the building of the system slower than the "Residual-Based" one, where the all components are build and assembled together.

Constructor Main Data

The usual common data is required in the constructor for the Newton Rapshon Strategy:

  1. Model Part
  2. Time Integration Scheme (Newmark, Bossak, ...)
  3. Convergence Criterion (Residual, Displacements, ...)
  4. Linear Solver (Direct, Iterative, ...)
  5. Maximum Number of Iterations (default 30)
  6. Common Flags: (false by default)
    1. CalculateReactionFlag (compute reactions)
    2. ReformDofSetAtEachStep (check and change the dofs at each step)
    3. MoveMeshFlag (update the coordinates of the nodes at each step)


If the maximum number of iterations is reached, the last result is taken as converged and the analysis keeps on running. When this happens and the analysis does not crash, the accuracy of the results will be very low and we recommend to not trust it.

Personal tools
Categories