17 lines
539 B
C++
17 lines
539 B
C++
#ifndef CHRONOSEULERNONLINEARSIMULATIONMODEL_HPP
|
|
#define CHRONOSEULERNONLINEARSIMULATIONMODEL_HPP
|
|
|
|
#include "chronoseulersimulationmodel.hpp"
|
|
|
|
class ChronosEulerNonLinearSimulationModel
|
|
: public ChronosEulerSimulationModel {
|
|
public:
|
|
ChronosEulerNonLinearSimulationModel();
|
|
SimulationResults
|
|
executeSimulation(const std::shared_ptr<SimulationJob> &pJob);
|
|
inline static std::string label{"NonLinear_" +
|
|
ChronosEulerSimulationModel::label};
|
|
};
|
|
|
|
#endif // CHRONOSEULERNONLINEARSIMULATIONMODEL_HPP
|