ParMooN
 All Classes Functions Variables Friends Pages
PeriodicJoint.h
1 // =======================================================================
2 // @(#)PeriodicJoint.h 1.1 04/21/99
3 //
4 // Class: TPeriodicJoint
5 // Purpose: connects two cells on different parts of the domain
6 // where we have periodic boundary conditions
7 //
8 // Author: Volker Behns 16.04.99
9 //
10 // =======================================================================
11 
12 #ifndef __PERIODICJOINT__
13 #define __PERIODICJOINT__
14 
15 #include <JointEqN.h>
16 
18 class TPeriodicJoint : public TJointEqN
19 {
20  public:
21  // Constructors
23  TPeriodicJoint(TBaseCell *neighb0);
24 
26  TPeriodicJoint(TBaseCell *neighb0, TBaseCell *neighb1);
27 
28  // Methods
30  virtual TJoint *NewInst(double T_0, double T_1, TBaseCell *Me);
31  virtual TJoint *NewInst();
32 };
33 
34 #endif
TPeriodicJoint(TBaseCell *neighb0)
Definition: PeriodicJoint.C:15
Definition: JointEqN.h:20
Definition: Joint.h:48
information for finite element data structure
Definition: BaseCell.h:25
virtual TJoint * NewInst(double T_0, double T_1, TBaseCell *Me)
Definition: PeriodicJoint.C:28
Definition: PeriodicJoint.h:18