Skip to content

Commit

Permalink
PMFv2310: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre Horgue committed Oct 13, 2023
1 parent a43dab2 commit cc96db1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
13 changes: 11 additions & 2 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion solvers/headerPMF.H
Original file line number Diff line number Diff line change
@@ -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;
}
5 changes: 4 additions & 1 deletion tutorials/runTutorials.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def run(self):
if error_found:
print("[ ERROR OpenFOAM ] ")
else:
print("[ OK ]")
print("[ OK ] in ")

os.chdir(refDir)

Expand All @@ -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("========================================================")
Expand Down

0 comments on commit cc96db1

Please sign in to comment.