tadded boundary header file - ns2dfd - 2D finite difference Navier Stokes solver for fluid dynamics
(HTM) git clone git://src.adamsgaard.dk/ns2dfd
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 83e65a0e85e82f9cb7c48f0f1bbbeaf2dbb319c9
(DIR) parent a9c5e210c85110662bd2c31c3fd5d3c3c8c12291
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
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(-)
---
(DIR) 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