#ifndef CHRONOSEULERNONLINEARSIMULATIONMODEL_HPP #define CHRONOSEULERNONLINEARSIMULATIONMODEL_HPP #include "chronoseulersimulationmodel.hpp" class ChronosEulerNonLinearSimulationModel : public ChronosEulerSimulationModel { public: ChronosEulerNonLinearSimulationModel(); SimulationResults executeSimulation(const std::shared_ptr &pJob); inline static std::string label{"NonLinear_" + ChronosEulerSimulationModel::label}; }; #endif // CHRONOSEULERNONLINEARSIMULATIONMODEL_HPP