1 |
|
2 |
/******************************************************* |
3 |
* |
4 |
* Copyright (c) 2003-2008 by University of Queensland |
5 |
* Earth Systems Science Computational Center (ESSCC) |
6 |
* http://www.uq.edu.au/esscc |
7 |
* |
8 |
* Primary Business: Queensland, Australia |
9 |
* Licensed under the Open Software License version 3.0 |
10 |
* http://www.opensource.org/licenses/osl-3.0.php |
11 |
* |
12 |
*******************************************************/ |
13 |
|
14 |
|
15 |
#ifndef INC_SOLVERFCT |
16 |
#define INC_SOLVERFCT |
17 |
|
18 |
#include "SystemMatrix.h" |
19 |
#include "Options.h" |
20 |
#include "performance.h" |
21 |
|
22 |
typedef struct Paso_FCTransportProblem { |
23 |
|
24 |
double theta; |
25 |
double dt_max; |
26 |
bool_t valid_matrices; |
27 |
|
28 |
Paso_SystemMatrix * transport_matrix; |
29 |
Paso_SystemMatrix * mass_matrix; |
30 |
|
31 |
double* u; |
32 |
Paso_Coupler* u_coupler; |
33 |
|
34 |
index_t *main_iptr; |
35 |
Paso_SystemMatrix * iteration_matrix; |
36 |
double* main_diagonal_low_order_transport_matrix; |
37 |
double* lumped_mass_matrix; |
38 |
|
39 |
Paso_MPIInfo *mpi_info; |
40 |
dim_t reference_counter; |
41 |
|
42 |
} Paso_FCTransportProblem; |
43 |
|
44 |
|
45 |
PASO_DLL_API |
46 |
Paso_FCTransportProblem* Paso_FCTransportProblem_getReference(Paso_FCTransportProblem* in); |
47 |
|
48 |
PASO_DLL_API |
49 |
Paso_FCTransportProblem* Paso_FCTransportProblem_alloc(double theta, Paso_SystemMatrixPattern *pattern, int block_size); |
50 |
|
51 |
PASO_DLL_API |
52 |
dim_t Paso_FCTransportProblem_getBlockSize(const Paso_FCTransportProblem* in); |
53 |
|
54 |
PASO_DLL_API |
55 |
double Paso_FCTransportProblem_getSafeTimeStepSize(Paso_FCTransportProblem* in); |
56 |
|
57 |
PASO_DLL_API |
58 |
void Paso_FCTransportProblem_setLowOrderOperator(Paso_FCTransportProblem * fc); |
59 |
|
60 |
PASO_DLL_API |
61 |
Paso_SystemMatrix* Paso_FCTransportProblem_borrowTransportMatrix(Paso_FCTransportProblem* in); |
62 |
|
63 |
PASO_DLL_API |
64 |
Paso_SystemMatrix* Paso_FCTransportProblem_borrowMassMatrix(Paso_FCTransportProblem* in); |
65 |
|
66 |
PASO_DLL_API |
67 |
double* Paso_FCTransportProblem_borrowLumpedMassMatrix(Paso_FCTransportProblem* in); |
68 |
|
69 |
PASO_DLL_API |
70 |
dim_t Paso_FCTransportProblem_getTotalNumRows(Paso_FCTransportProblem* in); |
71 |
|
72 |
PASO_DLL_API |
73 |
void Paso_FCTransportProblem_free(Paso_FCTransportProblem* in); |
74 |
|
75 |
PASO_DLL_API |
76 |
void Paso_FCTransportProblem_reset(Paso_FCTransportProblem* in); |
77 |
|
78 |
PASO_DLL_API |
79 |
void Paso_SolverFCT_solve(Paso_FCTransportProblem* fctp, double* u, double dt, double* source, Paso_Options* options); |
80 |
|
81 |
PASO_DLL_API |
82 |
void Paso_FCTransportProblem_checkinSolution(Paso_FCTransportProblem* in, double* u); |
83 |
|
84 |
PASO_DLL_API |
85 |
void Paso_FCTransportProblem_applyPreAntiDiffusionCorrection(Paso_SystemMatrix *f,const Paso_Coupler* u_coupler); |
86 |
|
87 |
PASO_DLL_API |
88 |
void Paso_SolverFCT_setQs(const Paso_Coupler* u_coupler,double* QN, double* QP, const Paso_SystemMatrix *L); |
89 |
|
90 |
PASO_DLL_API |
91 |
void Paso_FCTransportProblem_setAntiDiffusionFlux(const double dt, const Paso_FCTransportProblem * fc, Paso_SystemMatrix *flux_matrix, const Paso_Coupler* u_coupler); |
92 |
|
93 |
PASO_DLL_API |
94 |
void Paso_FCTransportProblem_setRs(const Paso_SystemMatrix *f,const double* lumped_mass_matrix,const Paso_Coupler* QN,const Paso_Coupler* QP,double* RN,double* RP); |
95 |
|
96 |
PASO_DLL_API |
97 |
void Paso_FCTransportProblem_addCorrectedFluxes(double* f,const Paso_SystemMatrix *flux_matrix,const Paso_Coupler* RN,const Paso_Coupler* RP); |
98 |
|
99 |
|
100 |
PASO_DLL_API |
101 |
void Paso_SolverFCT_setMuPaLuPbQ(double* out, const double* M, const Paso_Coupler* u_coupler, const double a, const Paso_SystemMatrix *L, const double b, const double* Q); |
102 |
|
103 |
PASO_DLL_API |
104 |
Paso_Connector* Paso_FCTransportProblem_borrowConnector(const Paso_FCTransportProblem* in); |
105 |
|
106 |
PASO_DLL_API |
107 |
void Paso_FCT_setUp(Paso_FCTransportProblem* fctp, const double dt, const double *sourceN, const double *sourceP, double* b, double* uTilde, |
108 |
Paso_Coupler* uTilde_coupler, double *QN, Paso_Coupler* QN_coupler, double *QP, Paso_Coupler* QP_coupler, |
109 |
Paso_Options* options, Paso_Performance* pp); |
110 |
|
111 |
PASO_DLL_API |
112 |
index_t Paso_FCTransportProblem_getTypeId(const index_t solver,const index_t preconditioner, const index_t package,const bool_t symmetry); |
113 |
|
114 |
#endif /* #ifndef INC_SOLVERFCT */ |