29 lines
1014 B
C++
29 lines
1014 B
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "ASMTItemIJ.h"
|
|
|
|
namespace MbD {
|
|
class Joint;
|
|
|
|
class EXPORT ASMTConstraintSet : public ASMTItemIJ
|
|
{
|
|
//
|
|
public:
|
|
void createMbD(std::shared_ptr<System> mbdSys, std::shared_ptr<Units> mbdUnits) override;
|
|
virtual std::shared_ptr<Joint> mbdClassNew();
|
|
void updateFromMbD() override;
|
|
void compareResults(AnalysisType type) override;
|
|
void outputResults(AnalysisType type) override;
|
|
|
|
};
|
|
}
|
|
|