ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERF_ProblemDispatch.H
Go to the documentation of this file.
1 #ifndef ERF_PROBLEM_DISPATCH_H_
2 #define ERF_PROBLEM_DISPATCH_H_
3 
4 #include <string>
5 
7 
8 enum class CustomVelocityInitializer : unsigned char {
9  None,
12 };
13 
15 custom_velocity_initializer (const std::string& problem_name) noexcept
16 {
17  if (problem_name == "cloud chamber" || problem_name == "cloudchamber") {
19  }
20  if (problem_name == "userdefined") {
22  }
24 }
25 
26 } // namespace erf_problem_dispatch
27 
28 #endif
Definition: ERF_ProblemDispatch.H:6
CustomVelocityInitializer custom_velocity_initializer(const std::string &problem_name) noexcept
Definition: ERF_ProblemDispatch.H:15
CustomVelocityInitializer
Definition: ERF_ProblemDispatch.H:8