1#ifndef __CS_EQUATION_SYSTEM_PARAM_H__
2#define __CS_EQUATION_SYSTEM_PARAM_H__
#define restrict
Definition: cs_defs.h:145
#define BEGIN_C_DECLS
Definition: cs_defs.h:542
#define END_C_DECLS
Definition: cs_defs.h:543
cs_equation_system_param_t * cs_equation_system_param_free(cs_equation_system_param_t *sysp)
Free a cs_equation_system_param_t structure.
Definition: cs_equation_system_param.cpp:182
cs_equation_system_key_t
List of available keys for setting the parameters of a system of equations.
Definition: cs_equation_system_param.h:160
@ CS_SYSKEY_INCR_SOLVE
Definition: cs_equation_system_param.h:162
@ CS_SYSKEY_LINEAR_SOLVER_ATOL
Definition: cs_equation_system_param.h:163
@ CS_SYSKEY_N_KEYS
Definition: cs_equation_system_param.h:170
@ CS_SYSKEY_LINEAR_SOLVER_DTOL
Definition: cs_equation_system_param.h:164
@ CS_SYSKEY_LINEAR_SOLVER_RTOL
Definition: cs_equation_system_param.h:165
@ CS_SYSKEY_SLES_STRATEGY
Definition: cs_equation_system_param.h:167
@ CS_SYSKEY_LINEAR_SOLVER_MAX_ITER
Definition: cs_equation_system_param.h:166
@ CS_SYSKEY_VERBOSITY
Definition: cs_equation_system_param.h:168
cs_equation_system_sles_strategy_t
High-level information about the way of solving the system of equations.
Definition: cs_equation_system_param.h:60
@ CS_EQUATION_SYSTEM_N_SLES_TYPES
Definition: cs_equation_system_param.h:64
@ CS_EQUATION_SYSTEM_SLES_MUMPS
Definition: cs_equation_system_param.h:62
void cs_equation_system_param_set(cs_equation_system_param_t *sysp, cs_equation_system_key_t key, const char *keyval)
Set a parameter related to a keyname in a cs_equation_system_param_t structure.
Definition: cs_equation_system_param.cpp:250
cs_equation_system_param_t * cs_equation_system_param_create(const char *name, int block_var_dim)
Create and initialize a new cs_equation_system_param_t structure.
Definition: cs_equation_system_param.cpp:91
void cs_equation_system_param_log(const cs_equation_system_param_t *sysp)
Log the setup gathered in the structure cs_equation_system_param_t.
Definition: cs_equation_system_param.cpp:205
Structure and routines handling the SLES ((Sparse Linear Equation Solver) settings stored inside a cs...
cs_param_space_scheme_t
Type of numerical scheme for the discretization in space.
Definition: cs_param_types.h:215
Main structure storing the parameter settings.
Definition: cs_equation_system_param.h:72
cs_param_sles_t * sles_param
Definition: cs_equation_system_param.h:122
int block_var_dim
Definition: cs_equation_system_param.h:104
cs_equation_system_sles_strategy_t sles_strategy
Definition: cs_equation_system_param.h:121
cs_property_t * relax_pty
Definition: cs_equation_system_param.h:107
int verbosity
Definition: cs_equation_system_param.h:102
char *restrict name
Definition: cs_equation_system_param.h:100
cs_param_space_scheme_t space_scheme
Definition: cs_equation_system_param.h:103
bool incremental_solve
Definition: cs_equation_system_param.h:105
Structure storing all metadata related to the resolution of a linear system with an iterative solver.
Definition: cs_param_sles.h:64
Structure associated to the definition of a property relying on the cs_xdef_t structure.