AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
slin_sys.h
1// An AdH System of linear equations
2#ifndef H_SLIN_SYS_
3#define H_SLIN_SYS_
4
5typedef struct {
6 //Mark making changes, the structures should all be the same now
7#ifdef _PETSC
8 Mat A;
9 KSP ksp;
10 Vec B; //Petsc residual
11 Vec X; //Persc solution
12#endif
13 //Split CSR format
14 //diagonal is locally owned dofs to process
15 int *indptr_diag; //pointers to number of nnz each row
16 int *cols_diag; //column addresses of all nonzero entries (local to process)
17 double *vals_diag; //actual matrix values
18
19 //this actually will be empty if serial run
20 int *indptr_off_diag; //pointers to number of nnz each row
21 int *cols_off_diag; //column addresses of all nonzero entries (global)
22 double *vals_off_diag; //actual matrix values
23
24 //Also needs nnz for allocation purposes
25 int nnz_diag, nnz_off_diag, nnz_diag_old, nnz_off_diag_old;
26
27 //vectors
28 double *residual;
29 double *scale_vect;
30 //actual solution of linear system is an increment within Newton iteration
31 double *dsol;
32
33 //things that are important to transforming local to global
34 int *ghosts;
35 int nghost;
36 int *local_size; // same as my_ndofs, pointer back to design model
37 int *global_size; //same as macro_ndofs
38 int *size; //same as ndofs
39 int local_range[2];
40 int local_range_old[2];
41
42 //old ones for refinement maybe, should also be pointer??
43 int *local_size_old;
44 int *size_old;
45 int *global_size_old;
46
47} SLIN_SYS;
48/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
49/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
50// Methods
51void slin_sys_alloc_array(SLIN_SYS **lin_sys, int nlin_sys);
52void slin_sys_init_ghosts(SLIN_SYS *lin_sys, SGRID *grid, int *fmap);
53void slin_sys_init_ptrs(SLIN_SYS *lin_sys, int *my_ndof_ptr, int *ndof_ptr, int *macro_ndof_ptr,
54 int *my_ndof_ptr_old, int *ndof_ptr_old, int *macro_ndof_ptr_old,
55 int start, int end, int nghost);
56void slin_sys_init_sparsity_mono(SLIN_SYS *lin_sys, int *elem3d_physics_mat_id,
57 int *elem2d_physics_mat_id, int *elem1d_physics_mat_id, SMAT_PHYSICS *elem_physics_mat,
58 SGRID *grid, int **ivars);
59
60void slin_sys_allocate_petsc_objects(SLIN_SYS *lin_sys);
61void slin_sys_free_array(SLIN_SYS *lin_sys, int nlin_sys);
62void slin_sys_free(SLIN_SYS *lin_sys);
63void lin_sys_free(SLIN_SYS *lin_sys, int nlin_sys);
65void slin_sys_init_array(SLIN_SYS *lin_sys, int nlin_sys);
66/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
67/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
68#endif
void slin_sys_init_array(SLIN_SYS *lin_sys, int nlin_sys)
Allocates and intializes an AdH Linear System.
Definition: slin_sys.c:48
void slin_sys_alloc_array(SLIN_SYS **lin_sys, int nlin_sys)
Allocates and intializes an AdH Linear System.
Definition: slin_sys.c:23
void slin_sys_CSR_printScreen(SLIN_SYS *lin_sys)
Prints CSR format matrix to screen.
Definition: slin_sys.c:83
Definition: sgrid.h:28
Definition: slin_sys.h:5
Definition: smat_physics.h:6