This file contains the "NewtonRaphson" algorithm declarations, which solves the non-linear system of equations in a few iterations until the norm of the residuals reaches a certain tolerance or a maximun number of iterations is reached; therefore, this routine is meant to be used for non-linear analysis. More...
#include <memory>
#include <Eigen/Dense>
#include <Eigen/SparseCore>
#include "Mesh.hpp"
#include "LoadCombo.hpp"
#include "Algorithm.hpp"
#include "Integrator.hpp"
#include "LinearSystem.hpp"
Go to the source code of this file.
Classes | |
class | NewtonRaphson |
Class for solving a non-linear system in a few iterations until the norm of the residuals reaches a certain tolerance or a maximun number of iterations is reached. More... | |
This file contains the "NewtonRaphson" algorithm declarations, which solves the non-linear system of equations in a few iterations until the norm of the residuals reaches a certain tolerance or a maximun number of iterations is reached; therefore, this routine is meant to be used for non-linear analysis.