Amandus: Simulations based on multilevel Schwarz methods
brusselator/parameters.h
Go to the documentation of this file.
1 /**********************************************************************
2  * Copyright (C) 2011 - 2014 by the authors
3  * Distributed under the MIT License
4  *
5  * See the files AUTHORS and LICENSE in the project root directory
6  **********************************************************************/
7 #ifndef __brusselator_parameters_h
8 #define __brusselator_parameters_h
9 
10 #include <deal.II/base/subscriptor.h>
11 
12 namespace Brusselator
13 {
14 struct Parameters : public dealii::Subscriptor
15 {
16  double A;
17  double B;
18  double alpha0;
19  double alpha1;
20 };
21 }
22 
23 #endif
Definition: explicit.h:25
Definition: brusselator/parameters.h:14
double A
Definition: brusselator/parameters.h:16
double B
Definition: brusselator/parameters.h:17
double alpha1
Definition: brusselator/parameters.h:19
double alpha0
Definition: brusselator/parameters.h:18