Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
derived_couplings.h
Go to the documentation of this file.
1 /* *******************************************************************
2  * Rocstar Simulation Suite *
3  * Copyright@2015, Illinois Rocstar LLC. All rights reserved. *
4  * *
5  * Illinois Rocstar LLC *
6  * Champaign, IL *
7  * www.illinoisrocstar.com *
8  * sales@illinoisrocstar.com *
9  * *
10  * License: See LICENSE file in top level of distribution package or *
11  * http://opensource.org/licenses/NCSA *
12  *********************************************************************/
13 /* *******************************************************************
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *
15  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES *
16  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND *
17  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR *
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE *
21  * USE OR OTHER DEALINGS WITH THE SOFTWARE. *
22  *********************************************************************/
23 // $Id: derived_couplings.h,v 1.17 2008/12/06 08:45:22 mtcampbe Exp $
24 
25 #ifndef _DERIVED_COUPLINGS_H_
26 #define _DERIVED_COUPLINGS_H_
27 
28 #include "Coupling.h"
29 
30 #define DECLARE_NEW_COUPLING_SCHEME( New_scheme) \
31  class New_scheme : public Coupling { \
32  public: \
33  New_scheme(MPI_Comm com, Control_parameters *p, const RocmanControl_parameters *mp); \
34  New_scheme(const char *, MPI_Comm com, Control_parameters *p, const RocmanControl_parameters *mp);\
35  New_scheme(const char *, const char *, MPI_Comm com, Control_parameters *p, const RocmanControl_parameters *mp); \
36  New_scheme(const char *, const char *, const char*, MPI_Comm com, Control_parameters *p, const RocmanControl_parameters *mp); \
37  };
38 
39 DECLARE_NEW_COUPLING_SCHEME( FluidSolidISS);
40 
41 DECLARE_NEW_FULLY_COUPLING_SCHEME( SolidFluidBurnEnergySPC);
42 
43 #endif
44 
45 
46 
47 
48 
49 
#define DECLARE_NEW_FULLY_COUPLING_SCHEME(New_scheme)
Definition: Coupling.h:222
#define DECLARE_NEW_COUPLING_SCHEME(New_scheme)