Files
solver/OndselSolver/OrbitAngleZIecJec.h
Aik-Siong Koh 5907363be7 rackscrew.asmt now runs.
CMakeLists.txt

gitignore

rackscrew.asmt now runs.

CMakeLists.txt

remove cached assembly.asmt
2023-12-13 14:52:16 -06:00

41 lines
1.5 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "KinematicIeJe.h"
#include "DispCompIecJecIe.h"
namespace MbD {
class OrbitAngleZIecJec : public KinematicIeJe
{
//thez xIeJeIe yIeJeIe cosOverSSq sinOverSSq twoCosSinOverSSqSq dSqOverSSqSq
public:
OrbitAngleZIecJec();
OrbitAngleZIecJec(EndFrmsptr frmi, EndFrmsptr frmj);
void calcPostDynCorrectorIteration() override;
virtual void init_xyIeJeIe() = 0;
void initialize() override;
void initializeGlobally() override;
void initializeLocally() override;
void postInput() override;
void postPosICIteration() override;
void preAccIC() override;
void prePosIC() override;
void preVelIC() override;
void simUpdateAll() override;
double value() override;
double thez = std::numeric_limits<double>::min();
double cosOverSSq, sinOverSSq, twoCosSinOverSSqSq, dSqOverSSqSq;
std::shared_ptr<DispCompIecJecIe> xIeJeIe, yIeJeIe;
};
}