tfluid.h - cngf-pf - continuum model for granular flows with pore-pressure dynamics (renamed from 1d_fd_simple_shear)
(HTM) git clone git://src.adamsgaard.dk/cngf-pf
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
tfluid.h (375B)
---
1 #ifndef FLUID_H_
2 #define FLUID_H_
3
4 #include "simulation.h"
5
6 extern struct simulation sim;
7
8 void hydrostatic_fluid_pressure_distribution(struct simulation *sim);
9
10 int set_largest_fluid_timestep(struct simulation *sim, const double safety);
11
12 int darcy_solver_1d(struct simulation *sim,
13 const int max_iter,
14 const double rel_tol);
15
16 #endif