PlasCom2  1.0
XPACC Multi-physics simluation application
MaxwellBC.H
Go to the documentation of this file.
1 #ifndef __MAXWELL_BC_H__
2 #define __MAXWELL_BC_H__
3 
4 
5 
6 namespace Maxwell {
7 
8  namespace bc {
9 
10  int ComputeDirichletBC(const std::vector<size_t> &bufferIndices, double *variable, const double &value);
11 
12  int ComputeSATDirichletBC(const std::vector<size_t> &bufferIndices, double *rhsVar, double *stateVar,
13  const double &value, const double &weight);
14 
15  }
16 
17 }
18 #endif
int ComputeSATDirichletBC(const std::vector< size_t > &bufferIndices, double *rhsVar, double *stateVar, const double &value, const double &weight)
Definition: MaxwellBC.C:25
int ComputeDirichletBC(const std::vector< size_t > &bufferIndices, double *variable, const double &value)
Definition: MaxwellBC.C:11