From 6f3d31c505c9165452cbf2e9d763b59a9c44de20 Mon Sep 17 00:00:00 2001 From: Bharat Mahajan Date: Fri, 21 Jun 2019 14:48:33 -0500 Subject: [PATCH] Removed version strings --- CMakeLists.txt | 1 - Doxyfile | 2 +- media/results.txt | 16 ++++++++-------- src/ButcherTableaus.f90 | 1 - src/ERK.f90 | 1 - src/ERKInit.f90 | 1 - src/ERKIntegrate.f90 | 1 - src/ERKInterp.f90 | 1 - src/FLINT.f90 | 2 +- src/tests/test.f90 | 1 - 10 files changed, 10 insertions(+), 17 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce7b76f..67602e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,6 @@ # _| _____|___|_| \_| _| -# Version: 0.9 # Author: Bharat Mahajan cmake_minimum_required(VERSION 3.12) diff --git a/Doxyfile b/Doxyfile index 4584daf..4753417 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = FLINT # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.9 +PROJECT_NUMBER = 0.9.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/media/results.txt b/media/results.txt index 0b26f8a..f237d10 100644 --- a/media/results.txt +++ b/media/results.txt @@ -2,10 +2,10 @@ A. Natural Step-size Method Time(s) Closing Err Jacobi Err FCalls Accepted Rejected - DOP54 0.367E+01 0.103E-01 0.853E-10 44853 7426 59 - DOP853 0.891E+00 0.578E-02 0.698E-10 15819 1071 263 - Verner65E 0.242E+01 0.284E-02 0.109E-10 32429 4011 45 - Verner98R 0.142E+01 0.209E-02 0.361E-11 15584 792 186 + DOP54 0.369E+01 0.103E-01 0.853E-10 44853 7426 59 + DOP853 0.844E+00 0.578E-02 0.698E-10 15819 1071 263 + Verner65E 0.245E+01 0.284E-02 0.109E-10 32429 4011 45 + Verner98R 0.147E+01 0.209E-02 0.361E-11 15584 792 186 X-axis (Y1) and Y-axis (Y2) crossing events EventID X Y1 Y2 Y3 2 0.399E+00 0.748E+00 0.871E-15 0.000E+00 @@ -34,10 +34,10 @@ 2 0.679E+02 0.751E+00 0.185E-12 0.000E+00 B. Interpolated Grid Method Time(s) Closing Err Jacobi Err FCalls Accepted Rejected - DOP54 0.636E+01 0.103E-01 0.890E-10 44853 7426 59 - DOP853 0.202E+01 0.578E-02 0.106E-09 18960 1071 263 - Verner65E 0.577E+01 0.284E-02 0.105E-08 36416 4011 45 - Verner98R 0.338E+01 0.209E-02 0.120E-10 19424 792 186 + DOP54 0.688E+01 0.103E-01 0.890E-10 44853 7426 59 + DOP853 0.214E+01 0.578E-02 0.106E-09 18960 1071 263 + Verner65E 0.606E+01 0.284E-02 0.105E-08 36416 4011 45 + Verner98R 0.355E+01 0.209E-02 0.120E-10 19424 792 186 X-axis (Y1) and Y-axis (Y2) crossing events EventID X Y1 Y2 Y3 2 0.399E+00 0.748E+00 0.871E-15 0.000E+00 diff --git a/src/ButcherTableaus.f90 b/src/ButcherTableaus.f90 index b764224..a3d9e5b 100644 --- a/src/ButcherTableaus.f90 +++ b/src/ButcherTableaus.f90 @@ -51,7 +51,6 @@ !! http://www.unige.ch/~hairer/prog/nonstiff/dopri5.f !! !! \author Bharat Mahajan -!! \version 0.9 !! \date 02/04/2019 ! !################################################################################################################# diff --git a/src/ERK.f90 b/src/ERK.f90 index 3875983..b2da62d 100644 --- a/src/ERK.f90 +++ b/src/ERK.f90 @@ -18,7 +18,6 @@ !! \details A module for Explicit Runge-Kutta type numerical solvers with dense-output, !! events detection, and stiffness detection. !! \author Bharat Mahajan -!! \version 0.9 !! \date 01/25/2019 ! !############################################################################################ diff --git a/src/ERKInit.f90 b/src/ERKInit.f90 index 15c051d..1fb4f6f 100644 --- a/src/ERKInit.f90 +++ b/src/ERKInit.f90 @@ -18,7 +18,6 @@ !! \details It provides implementation for the init, final, and some miscellaneous methods !! of ERK module. !! \author Bharat Mahajan -!! \version 0.9 !! \date 01/25/2019 ! !############################################################################################ diff --git a/src/ERKIntegrate.f90 b/src/ERKIntegrate.f90 index c79954a..84d5f49 100644 --- a/src/ERKIntegrate.f90 +++ b/src/ERKIntegrate.f90 @@ -17,7 +17,6 @@ !> \brief ERK Integration Submodule !! \details It provides the implementation for Integrate method of ERK_class. !! \author Bharat Mahajan -!! \version 0.9 !! \date 02/06/2019 ! !############################################################################################ diff --git a/src/ERKInterp.f90 b/src/ERKInterp.f90 index 46cdb84..f72fc01 100644 --- a/src/ERKInterp.f90 +++ b/src/ERKInterp.f90 @@ -17,7 +17,6 @@ !> \brief ERK Interpolation Module !! \details Provides implementation for the dense output features. !! \author Bharat Mahajan (bharat.mahajan@nasa.gov). -!! \version 0.9 !! \date 02/04/2019 ! !############################################################################################ diff --git a/src/FLINT.f90 b/src/FLINT.f90 index 10009c9..c6d6241 100644 --- a/src/FLINT.f90 +++ b/src/FLINT.f90 @@ -4,7 +4,7 @@ !! and multiple event-detection support. Currently, it provides four !! Explicit Runge-Kutta methods: DOP54, DOP853, Verner65E, and Verner98R. !! \author Bharat Mahajan -!! \version 0.9 +!! \version 0.9.1 !! \date 01/25/2019 !! \copyright Copyright 2019 Bharat Mahajan

!! This work was performed at Odyssey Space Research LLC, Houston, TX under diff --git a/src/tests/test.f90 b/src/tests/test.f90 index 42ac2e5..ba8f655 100644 --- a/src/tests/test.f90 +++ b/src/tests/test.f90 @@ -17,7 +17,6 @@ !> \brief TestFLINT1 Main Program !! \details Main program to run multiple test cases for FLINT. !! \author Bharat Mahajan -!! \version 0.9 !! \date 01/25/2019 ! !############################################################################################