Cylinder_Engine: removed unnecessary Init()/Reset() method's

This commit is contained in:
Thorsten Liebig 2010-04-13 18:34:26 +02:00
parent 5bf478abbb
commit 22210247f4
2 changed files with 0 additions and 47 deletions

View File

@ -33,49 +33,6 @@ Engine_Cylinder::Engine_Cylinder(const Operator_Cylinder* op) : Engine(op)
}
}
Engine_Cylinder::~Engine_Cylinder()
{
Reset();
}
void Engine_Cylinder::Init()
{
Engine::Init();
// if (cyl_Op->GetClosedAlpha())
// {
// unsigned int lastLine = Op->numLines[1]-1; //number of last alpha-line
// unsigned int pos[3];
// for (pos[0]=0;pos[0]<Op->numLines[0];++pos[0])
// {
// for (int n=0;n<3;++n)
// {
// delete[] volt[n][pos[0]][lastLine];
// volt[n][pos[0]][lastLine] = volt[n][pos[0]][0];
// delete[] curr[n][pos[0]][lastLine];
// curr[n][pos[0]][lastLine] = curr[n][pos[0]][0];
// }
// }
// }
}
void Engine_Cylinder::Reset()
{
// if (cyl_Op->GetClosedAlpha())
// {
// unsigned int lastLine = Op->numLines[1]-1; //number of last alpha-line
// unsigned int pos[3];
// for (pos[0]=0;pos[0]<Op->numLines[0];++pos[0])
// {
// for (int n=0;n<3;++n)
// {
// volt[n][pos[0]][lastLine] = NULL;
// curr[n][pos[0]][lastLine] = NULL;
// }
// }
// }
}
inline void Engine_Cylinder::CloseAlphaVoltages()
{
unsigned int pos[3];

View File

@ -25,10 +25,6 @@ class Engine_Cylinder : public Engine
{
public:
static Engine_Cylinder* New(const Operator_Cylinder* op);
virtual ~Engine_Cylinder();
virtual void Init();
virtual void Reset();
//!Iterate a number of timesteps
virtual bool IterateTS(unsigned int iterTS);