Files
solver/OndselSolver/PosICDragLimitNewtonRaphson.h
2024-04-03 08:56:40 +02:00

29 lines
1.1 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "AnyPosICNewtonRaphson.h"
namespace MbD {
class Part;
class PosICDragLimitNewtonRaphson : public AnyPosICNewtonRaphson
{
//Kinematics with under constrained system
public:
static std::shared_ptr<PosICDragLimitNewtonRaphson> With();
void preRun() override;
void initializeGlobally() override;
void setdragParts(std::shared_ptr<std::vector<std::shared_ptr<Part>>> dragParts);
void run() override;
std::shared_ptr<std::vector<std::shared_ptr<Part>>> dragParts;
};
}