| tadded boundary header file - ns2dfd - 2D finite difference Navier Stokes solve… | |
| git clone git://src.adamsgaard.dk/ns2dfd | |
| Log | |
| Files | |
| Refs | |
| LICENSE | |
| --- | |
| commit 83e65a0e85e82f9cb7c48f0f1bbbeaf2dbb319c9 | |
| parent a9c5e210c85110662bd2c31c3fd5d3c3c8c12291 | |
| Author: Anders Damsgaard <[email protected]> | |
| Date: Thu, 6 Mar 2014 15:55:13 +0100 | |
| added boundary header file | |
| Diffstat: | |
| A src/boundary.h | 7 +++++++ | |
| 1 file changed, 7 insertions(+), 0 deletions(-) | |
| --- | |
| diff --git a/src/boundary.h b/src/boundary.h | |
| t@@ -0,0 +1,7 @@ | |
| +#ifndef BOUNDARY_H_ | |
| +#define BOUNDARY_H_ | |
| + | |
| +void set_boundary_conditions(int w_left, int w_right, int w_top, int w_bottom, | |
| + double **P, double **U, double **V, int nx, int ny); | |
| + | |
| +#endif |