URI:
       tboundary.h - ns2dfd - 2D finite difference Navier Stokes solver for fluid dynamics
  HTML git clone git://src.adamsgaard.dk/ns2dfd
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
       tboundary.h (189B)
       ---
            1 #ifndef BOUNDARY_H_
            2 #define BOUNDARY_H_
            3 
            4 void set_boundary_conditions(int w_left, int w_right, int w_top, int w_bottom,
            5         double **P, double **U, double **V, int nx, int ny);
            6 
            7 #endif