23 #ifndef _aspect_prescribed_stokes_solution_interface_h 24 #define _aspect_prescribed_stokes_solution_interface_h 28 #include <deal.II/base/point.h> 29 #include <deal.II/base/parameter_handler.h> 31 #include <deal.II/base/function.h> 41 namespace PrescribedStokesSolution
66 void stokes_solution (
const Point<dim> &p, Vector<double> &value)
const = 0;
91 const std::string &description,
92 void (*declare_parameters_function) (ParameterHandler &),
106 std::unique_ptr<Interface<dim>>
143 #define ASPECT_REGISTER_PRESCRIBED_STOKES_SOLUTION(classname,name,description) \ 144 template class classname<2>; \ 145 template class classname<3>; \ 146 namespace ASPECT_REGISTER_PRESCRIBED_STOKES_SOLUTION_ ## classname \ 148 aspect::internal::Plugins::RegisterHelper<aspect::PrescribedStokesSolution::Interface<2>,classname<2>> \ 149 dummy_ ## classname ## _2d (&aspect::PrescribedStokesSolution::register_prescribed_stokes_solution_model<2>, \ 150 name, description); \ 151 aspect::internal::Plugins::RegisterHelper<aspect::PrescribedStokesSolution::Interface<3>,classname<3>> \ 152 dummy_ ## classname ## _3d (&aspect::PrescribedStokesSolution::register_prescribed_stokes_solution_model<3>, \ 153 name, description); \
void register_prescribed_stokes_solution_model(const std::string &name, const std::string &description, void(*declare_parameters_function)(ParameterHandler &), std::unique_ptr< Interface< dim >>(*factory_function)())
void declare_parameters(ParameterHandler &prm)
std::unique_ptr< Interface< dim > > create_prescribed_stokes_solution(ParameterHandler &prm)
void write_plugin_graph(std::ostream &output_stream)