cngf-pf

continuum model for granular flows with pore-pressure dynamics
git clone git://src.adamsgaard.dk/1d_fd_simple_shear
Log | Files | Refs | README | LICENSE Back to index

fluid.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