29 lines
892 B
C++
29 lines
892 B
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "KinematicIeJe.h"
|
|
|
|
namespace MbD {
|
|
class DispCompIecJecO : public KinematicIeJe
|
|
{
|
|
//axis riIeJeO
|
|
public:
|
|
DispCompIecJecO();
|
|
DispCompIecJecO(EndFrmsptr frmi, EndFrmsptr frmj, size_t axis);
|
|
|
|
void calcPostDynCorrectorIteration() override;
|
|
double value() override;
|
|
|
|
size_t axis = SIZE_MAX;
|
|
double riIeJeO;
|
|
};
|
|
}
|
|
|