AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
la.h
1#ifndef H_LA_
2#define H_LA_
3
4//matrix_utilities
5//void allocate_adh_system(SMODEL_SUPER *sm);
6//void fe_allocate_initialize_linear_system(SMODEL_SUPER *sm);
7//void create_sparsity_split_CSR(SMODEL_SUPER *sm, SGRID *grid);
8//void create_sparsity_split_CSR(SLIN_SYS *lin_sys, SMODEL_SUPER *sm, SGRID *grid);
9//int unique(int *arr, int size);
10//int compare_ints(const void *a, const void *b);
11void Screen_print_CSR(int *indptr, int *cols, double *vals, int nrow);
12void apply_Dirichlet_BC(SMODEL_SUPER *sm);
13//void allocate_petsc_objects(SMODEL_SUPER *sm);
14//void allocate_petsc_objects(SLIN_SYS *lin_sys);
15void split_CSR_mat_vec_mult(double *Ax, int *indptr_diag, int *cols_diag, double *vals_diag,
16 int *indptr_off_diag, int *cols_off_diag, double *vals_off_diag,
17 double *x, int nrows, int *ghosts, int nghost);
18void check_diag(SMODEL_SUPER *sm);
19
20
21// bcgstab solver routines
22int solve_linear_sys_bcgstab(double *x, int *indptr_diag, int *cols_diag, double *vals_diag,
23 int *indptr_off_diag, int *cols_off_diag,double *vals_off_diag, double *b,
24 double *scale_vect, int local_size, int size, int rank,
25 int *ghosts, int nghost
26#ifdef _MESSG
27 , MPI_Comm ADH_COMM
28#endif
29 );
30
31void free_bcgstab(void);
32int prep_umfpack(int *indptr_diag, int *cols_diag, double *vals_diag, int nrow);
33int solve_umfpack(double *x, int *indptr_diag, int *cols_diag, double *vals_diag, double *b, int nrow);
34void umfpack_clear(void);
35//void copy_array_to_from(double *vec_to, double *vec_from, int n);
36//void zero_dbl_array(double *v, int n);
37//void y_plus_ax(double *y, double alpha, double *x,int n );
38//double get_global_max(double x);
39//double l_infty_norm(int n, double *v1);
40//double dot_dbl_array(int n, double *x,double *y);
41//double messg_dsum(double x);
42//void scale_dbl_array(double *v, double alpha, int n);
43//double max_dbl(double a, double b);
44
45//linear system scaler
46void scale_linear_system(int *indptr_diag, int *cols_diag, double *vals_diag,
47 int *indptr_off_diag, int *cols_off_diag,double *vals_off_diag, double *b,
48 double *x, double *scale_vect, int local_size, int size, int rank,int *ghosts, int nghost);
49void unscale_linear_system(double *x, double *x0, double *scale_vect, int local_size);
50
51
52#endif
void umfpack_clear(void)
Short helper function that clears umfpack structures.
Definition: bcgstab_solver.c:331
int prep_umfpack(int *indptr_diag, int *cols_diag, double *vals_diag, int nrow)
Function that pre-factors matrix, used for preconditioner, modifies the static Symbolic and Numeric s...
Definition: bcgstab_solver.c:353
int solve_linear_sys_bcgstab(double *x, int *indptr_diag, int *cols_diag, double *vals_diag, int *indptr_off_diag, int *cols_off_diag, double *vals_off_diag, double *b, double *scale_vect, int local_size, int size, int rank, int *ghosts, int nghost)
Solves a system of already scaled equations in split CSR format using bcgstab this is also assuming t...
Definition: bcgstab_solver.c:65
int solve_umfpack(double *x, int *indptr_diag, int *cols_diag, double *vals_diag, double *b, int nrow)
Function that solves system Ax=b using umfpack, provided A is in CSR format.
Definition: bcgstab_solver.c:397
void free_bcgstab(void)
Frees all data structures allocate within this file.
Definition: bcgstab_solver.c:417
Definition: smodel_super.h:7