Introduction
Introduction Statistics Contact Development Disclaimer Help
tutility.h - ns2dfd - 2D finite difference Navier Stokes solver for fluid dynam…
git clone git://src.adamsgaard.dk/ns2dfd
Log
Files
Refs
LICENSE
---
tutility.h (461B)
---
1 #ifndef UTILITY_H_
2 #define UTILITY_H_
3
4 int allocate_matrix(double ***M, int nx, int ny);
5 void free_matrix(double ***M, int nx);
6
7 int allocate_memory(double ***P, double ***U, double ***V, int nx, int n…
8 void free_memory(double **P, double **U, double **V, int nx);
9
10 double select_time_step(double tau, double re, double dx, double dy,
11 int nx, int ny, double **U, double **V);
12
13 void print_matrix(char* description, double **M, int nx, int ny);
14
15 #endif
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.