From 7daf16e8d4394ed1ac178b777ecb7178fbb2d5c1 Mon Sep 17 00:00:00 2001 From: manschub <77398197+manschub@users.noreply.github.com> Date: Fri, 22 Mar 2024 09:27:43 +0100 Subject: [PATCH 1/3] Update test_solarsystem.pf as part of fixing compilation with ifort --- tests/test_solarsystem.pf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_solarsystem.pf b/tests/test_solarsystem.pf index 7114ea9..e4ecae5 100644 --- a/tests/test_solarsystem.pf +++ b/tests/test_solarsystem.pf @@ -15,7 +15,7 @@ !------------------------------------------------------------------------ module test_solarsystem use funit - use solarsystem + use solarsystem, only: Solarsystem_class use neptuneClass implicit none @@ -111,4 +111,4 @@ module test_solarsystem -end module test_solarsystem \ No newline at end of file +end module test_solarsystem From 02481fae74f95ef315a2781906b4e81527899d3c Mon Sep 17 00:00:00 2001 From: manschub <77398197+manschub@users.noreply.github.com> Date: Fri, 22 Mar 2024 09:28:27 +0100 Subject: [PATCH 2/3] Update test_radiation.pf as part of fixing compilation with ifort --- tests/test_radiation.pf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_radiation.pf b/tests/test_radiation.pf index 9c5170b..78e4e2d 100644 --- a/tests/test_radiation.pf +++ b/tests/test_radiation.pf @@ -15,13 +15,13 @@ !------------------------------------------------------------------------ module test_radiation use funit -use radiation +use radiation, only: Radiation_class use slam_reduction_class, only: Reduction_type use slam_math use slam_error_handling use satellite -use solarsystem -use Neptuneclass +use solarsystem, only: Solarsystem_class, initSolarSystem +use Neptuneclass, only: Neptune_class, time_t implicit none @@ -330,4 +330,4 @@ end subroutine test_getSrpAcceleration ! end subroutine test_getShadow -end module test_radiation \ No newline at end of file +end module test_radiation From ef4eac8197672c517e15d074e73e8736bf5cb5b7 Mon Sep 17 00:00:00 2001 From: manschub <77398197+manschub@users.noreply.github.com> Date: Fri, 22 Mar 2024 09:29:10 +0100 Subject: [PATCH 3/3] Update test_thirdbody.pf as part of fixing the compilation with ifort --- tests/test_thirdbody.pf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_thirdbody.pf b/tests/test_thirdbody.pf index 78744ee..5bd7501 100644 --- a/tests/test_thirdbody.pf +++ b/tests/test_thirdbody.pf @@ -19,8 +19,8 @@ use thirdbody use slam_reduction_class, only: Reduction_type use slam_math use slam_error_handling -use solarsystem -use neptuneClass +use solarsystem, only: Solarsystem_class, initSolarSystem +use neptuneClass, only: time_t implicit none contains @@ -121,4 +121,4 @@ contains -end module test_thirdbody \ No newline at end of file +end module test_thirdbody