#ifndef CHRONOSEULERSIMULATIONMODEL_HPP #define CHRONOSEULERSIMULATIONMODEL_HPP #include "simulationmodel.hpp" namespace chrono { namespace fea { class ChMesh; class ChNodeFEAxyzrot; } // namespace fea } // namespace chrono class ChronosEulerSimulationModel : public SimulationModel { public: ChronosEulerSimulationModel(); SimulationResults executeSimulation(const std::shared_ptr &pJob) override; static std::shared_ptr convertToChronosMesh_Euler( const std::shared_ptr &pMesh, std::vector> &edgeMeshVertsToChronosNodes); }; #endif // CHRONOSEULERSIMULATIONMODEL_HPP