Skip to content
Snippets Groups Projects
Select Git revision
  • 2075a167f4db86e8be4990b26e6b584a819d5b6e
  • develop default protected
  • feature/gmsh-reader
  • save_clemence
  • origin/stage/bouguettaia
  • feature/kinetic-schemes
  • feature/reconstruction
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

CRSMatrix.hpp

  • Stéphane Del Pino's avatar
    2075a167
    Plug PETSc (and various classic solvers and preconditioners) · 2075a167
    Stéphane Del Pino authored
    The 'LinearSolver' class proposes mechanism to choose the used
    - library,
    - method, and
    - preconditioner
    Also one can adjust the required convergence epsilon, the maximum
    number of iterations and the verbosity.
    
    All of these options can be listed through the 'pgs' script using the
    'printLSAvailable()' builtin function.
    
    One drive the linear system solver by changing values in the
    script. For instance:
    	setLSVerbosity(true);
    	setLSEpsilon(1E-9);
    	setLSMaxIter(1000);
    	setLSLibrary("PETSc");
    	setLSMethod("LU");
    	setLSPrecond("none");
    
    Finally one can print the current options by using the
    'printLSOptions()' function.
    2075a167
    History
    Plug PETSc (and various classic solvers and preconditioners)
    Stéphane Del Pino authored
    The 'LinearSolver' class proposes mechanism to choose the used
    - library,
    - method, and
    - preconditioner
    Also one can adjust the required convergence epsilon, the maximum
    number of iterations and the verbosity.
    
    All of these options can be listed through the 'pgs' script using the
    'printLSAvailable()' builtin function.
    
    One drive the linear system solver by changing values in the
    script. For instance:
    	setLSVerbosity(true);
    	setLSEpsilon(1E-9);
    	setLSMaxIter(1000);
    	setLSLibrary("PETSc");
    	setLSMethod("LU");
    	setLSPrecond("none");
    
    Finally one can print the current options by using the
    'printLSOptions()' function.