VERB4D
Convection_2D.h
Go to the documentation of this file.
1 
16 #ifndef CONVECTION_2D_ULTIMATE_QUICKEST_H_
17 #define CONVECTION_2D_ULTIMATE_QUICKEST_H_
18 
19 #include "Matrix.h"
20 #include "MatrixSolver.h"
21 
22 
24 
25 
31  int P_size, int R_size,
34  string P_LBC_type, string P_UBC_type,
35  string R_LBC_type, string R_UBC_type,
38  double dt, double min_PSD, double min_V);
39 
40 #endif
Matrix 1D, 2D, 3D and 4D and operations with them.
Solves model matrices for diffusion calculations and has functionality for derivative approximations ...
A matrix of 1 dimensions that is immutable.
Definition: Matrix.h:49
Calculates the convection in 1D given a 1D matrix of Phase Space Densities, boundary conditions...
bool Convection_2D(Matrix2D< double > &PSD_PR, Matrix2D< double > P, Matrix2D< double > R, int P_size, int R_size, Matrix1D< double > P_LBC, Matrix1D< double > P_UBC, Matrix1D< double > R_LBC, Matrix1D< double > R_UBC, string P_LBC_type, string P_UBC_type, string R_LBC_type, string R_UBC_type, Matrix2D< double > DP, Matrix2D< double > DR, Matrix2D< double > Sources, Matrix2D< double > Losses, double dt, double min_PSD, double min_V)
Definition: Convection_2D.cpp:50
A matrix of 2 dimensions that is immutable.
Definition: Matrix.h:139