base_flow.hpp
Go to the documentation of this file.
1 #ifndef BASE_FLOW_H
2 #define BASE_FLOW_H
3 #include <petscksp.h>
4 #include "class.hpp"
5 
6 namespace SPE
7 {
19  int base_flow(
20  SPE &data
21  );
30  int _bblf(
31  const PetscScalar input[3],
32  PetscScalar output[3]
33  );
34 
39  int base_flow_dim(
40  SPE &data
41  );
42 }
43 #endif
Namespace containing all functions and data classes for this solver.
Definition: Ax_b.hpp:5
int base_flow(SPE &data)
set plane channel or blasius boundary layer flow velocity variables and etc Note: type_base_flow has...
Definition: base_flow.cpp:14
int _bblf(const PetscScalar input[3], PetscScalar output[3])
Blasius boundary layer function to integrate. Similarity Blasius ODE broken into three coupled equati...
Definition: base_flow.cpp:1670
int base_flow_dim(SPE &data)
Use this after base_flow(data) call to set the ny matrices to size dim. So U is set into U_dim...
Definition: base_flow.cpp:1679