Memosa-FVM  0.2
ContactFields.h
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #ifndef _CONTACTFIELDS_H_
6 #define _CONTACTFIELDS_H_
7 #include "StorageSite.h"
8 #include "Vector.h"
9 #include "FloatVarDict.h"
10 #include "Field.h"
11 #include "FieldLabel.h"
12 
13 
14 template<class T>
16 {
18  {
19  this->defineVar("gap", T(3.0e-6));
20  this->defineVar("thickness", T(2.0e-6));
21  }
22 };
23 
25 {
26 
27  ContactFields(const string baseName);
28 
30 };
31 
32 
33 
34 
35 #endif
Definition: Field.h:14
ContactFields(const string baseName)
void defineVar(const string varName, const T defaultValue)
Definition: FloatVarDict.h:94