From cc96db187f7f7df5b4f33ec9cd71469d52eb9136 Mon Sep 17 00:00:00 2001 From: Pierre Horgue Date: Fri, 13 Oct 2023 12:39:30 +0200 Subject: [PATCH] PMFv2310: minor changes --- ReleaseNotes.txt | 13 +++++++++++-- solvers/headerPMF.H | 2 +- tutorials/runTutorials.py | 5 ++++- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 1e4deb3c..03eda7b0 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,11 +1,20 @@ +************************ +*** PMF v2310 +*** Minor fixes and compatibility +************************ - -### Compatibility / Minor changes +### Compatibility - fix partial compatibility for Clang and v2212 +### Minor changes + - rename libraries to PMFXXXX.so +- fix keyword for output event in groundwaterTransportFoam + +- remove non-working mapFieldsFrom2D folder + ************************ *** PMF v2303 *** Dual porosity model + readthedocs diff --git a/solvers/headerPMF.H b/solvers/headerPMF.H index 0f47b3f7..2724e0f6 100644 --- a/solvers/headerPMF.H +++ b/solvers/headerPMF.H @@ -1,5 +1,5 @@ { Info << nl << "**********************************" - << nl << "Current version of PMF is 2303.0.0" + << nl << "Current version of PMF is 2310.0.0" << nl << "**********************************" << nl << endl; } diff --git a/tutorials/runTutorials.py b/tutorials/runTutorials.py index 236f1ed0..cf5b9c26 100644 --- a/tutorials/runTutorials.py +++ b/tutorials/runTutorials.py @@ -63,7 +63,7 @@ def run(self): if error_found: print("[ ERROR OpenFOAM ] ") else: - print("[ OK ]") + print("[ OK ] in ") os.chdir(refDir) @@ -80,9 +80,12 @@ def run(self): print("========================================================") start_time = time.time() + lap_time = start_time for case in testCases: test = testCase(case["solver"],case["case"]) test.run() + print("--- %s seconds ---" % (time.time() - lap_time)) + lap_time = time.time() print(" ") print("========================================================")