1d_fd_simple_shear_transient

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

fluid.h (330B)


      1 #ifndef FLUID_H_
      2 #define FLUID_H_
      3 
      4 #include "simulation.h"
      5 
      6 void hydrostatic_fluid_pressure_distribution(struct simulation* sim);
      7 
      8 void set_largest_fluid_timestep(struct simulation* sim, const double safety);
      9 
     10 int darcy_solver_1d(
     11         struct simulation* sim,
     12         const int max_iter,
     13         const double rel_tol);
     14 
     15 #endif