CG  Version 25
MpParameters.h
Go to the documentation of this file.
1 #ifndef MP_PARAMETERS
2 #define MP_PARAMETERS
3 
4 // Parameters for the multi-physics solver
5 
6 #include "Parameters.h"
7 
8 // Here are the run time and PDE parameters
9 class MpParameters : public Parameters
10 {
11 public:
12 
14 {
20 };
21 
22 // There are different multi-domain time stepping algorithms:
24 {
27 };
28 
29 
30 MpParameters(const int & numberOfDimensions0=3);
32 
33 int
34 displayInterfaceInfo(FILE *file = stdout );
35 
36 virtual int
37 displayPdeParameters(FILE *file = stdout );
38 
39 virtual int
41 
42 virtual int
43 setParameters(const int & numberOfDimensions0=2,
44  const aString & reactionName =nullString);
45 virtual int
46 setPdeParameters(CompositeGrid & cg, const aString & command = nullString,
47  DialogData *interface =NULL );
48 
49 // virtual int
50 // setUserDefinedParameters();
51 
52 };
53 
54 #endif