RKF45 algorithm

This commit is contained in:
2023-05-15 20:29:06 -04:00
parent 315e9a98de
commit 5db3680b31
5 changed files with 325 additions and 62 deletions

View File

@@ -29,6 +29,9 @@ limitations under the License.
#define INIT_FILE 3
#define INIT_FILE_TXT 4
#define ALGORITHM_RK4 4
#define ALGORITHM_RK4 1
#define ALGORITHM_RK2 2
#define ALGORITHM_ADAPTIVE_THRESHOLD 1000
// adaptive algorithms: index > ALGORITHM_ADAPTIVE_THRESHOLD
#define ALGORITHM_RKF45 1001