Files
solver/OndselSolver/ExternalSystem.h
aiksiongkoh fe99ad2593 Solve dragging (#47)
runPreDrag, runDragStep, runPostDrag, PosICDragNewtonRaphson
2024-01-11 14:28:38 +01:00

43 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 <memory>
#include "enum.h"
#include <string>
//#include "CADSystem.h"
//#include "ASMTAssembly.h"
namespace MbD {
class CADSystem;
class ASMTAssembly;
class System;
class ExternalSystem
{
//
public:
void preMbDrun(std::shared_ptr<System> mbdSys);
void updateFromMbD();
void outputFor(AnalysisType type);
void logString(std::string& str);
void logString(double value);
void runOndselPiston();
void runPiston();
void postMbDrun();
CADSystem* cadSystem;
ASMTAssembly* asmtAssembly;
};
}