simple_cfl_1d.hpp
Go to the documentation of this file.
1 
6 #ifndef SIMPLE_CFL_1D_HPP
7 #define SIMPLE_CFL_1D_HPP 1
8 
10 
13 {
14 public:
15 
19  explicit SimpleCFL1D(double cfl);
20 
21  double operator()
22  (const SimulationState1D& ss,
23  const EquationOfState& eos) const;
24 
25 private:
26  double cfl_;
27 };
28 
29 #endif // SIMPLE_CFL_1D_HPP
Simple CFL time step calculator.
Abstract class for a time step function.
SimpleCFL1D(double cfl)
Class constructor.
Base class for equation of state.
Base class for a time step calculator.
Package for computational domain and hydro cells.