From 888cc604b50a7475ef58892899bbe10373bbd7f6 Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Mon, 29 Apr 2024 12:47:06 +0200 Subject: [PATCH] EgtMachKernel : - piccola miglioria a simulazione (aumentato limite massimo dello step). --- Simulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simulator.cpp b/Simulator.cpp index dd4c47f..6a14cc5 100644 --- a/Simulator.cpp +++ b/Simulator.cpp @@ -44,7 +44,7 @@ using namespace std ; //---------------------------------------------------------------------------- static const double MIN_STEP = 1.0 ; -static const double MAX_STEP = 100.0 ; +static const double MAX_STEP = 500.0 ; static const double MID_STEP = 50.0 ; static const double COLL_STEP = 10. ; static const double SQ_COEFF_ROT_MOVE = 100. ;