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