Memosa-FVM  0.2
MovingMeshBC.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 #include "misc.h"
6 #include "FloatVarDict.h"
7 
8 
9 template<class T>
11 {
13  {
14  this->defineVar("timeStep",T(0.1));
15  this->defineVar("underrelaxation",T(1.0));
16 
17  this->absTolerance = 1e-4;
18  this->nNodeDisplacementSweeps = 20;
19  this->relativeTolerance = 1e-1;
20  this->timeDiscretizationOrder = 1;
21  }
22  double absTolerance;
26 
27 #ifndef SWIG
28 #endif
29 };
30 
void defineVar(const string varName, const T defaultValue)
Definition: FloatVarDict.h:94