38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "DirectionCosineIeqcJeqc.h"
|
|
|
|
namespace MbD {
|
|
class DirectionCosineIeqctJeqc : public DirectionCosineIeqcJeqc
|
|
{
|
|
//pAijIeJept ppAijIeJepEIpt ppAijIeJepEJpt ppAijIeJeptpt
|
|
public:
|
|
DirectionCosineIeqctJeqc();
|
|
DirectionCosineIeqctJeqc(EndFrmsptr frmi, EndFrmsptr frmj, int axisi, int axisj);
|
|
|
|
void calcPostDynCorrectorIteration() override;
|
|
void initialize() override;
|
|
void initializeGlobally() override;
|
|
FRowDsptr ppvaluepEIpt() override;
|
|
FRowDsptr ppvaluepEJpt() override;
|
|
double ppvalueptpt() override;
|
|
void preAccIC() override;
|
|
void preVelIC() override;
|
|
double pvaluept() override;
|
|
|
|
double pAijIeJept;
|
|
FRowDsptr ppAijIeJepEIpt;
|
|
FRowDsptr ppAijIeJepEJpt;
|
|
double ppAijIeJeptpt;
|
|
};
|
|
}
|
|
|