From 02e0238a158e9fe9a83ad267f1115495eb773cef Mon Sep 17 00:00:00 2001 From: Ping He Date: Sun, 2 Feb 2025 11:38:23 -0600 Subject: [PATCH] Minor changes to the primal test. --- tests/runUnitTests_primal.py | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/tests/runUnitTests_primal.py b/tests/runUnitTests_primal.py index 5e1abee0..25a57ce2 100755 --- a/tests/runUnitTests_primal.py +++ b/tests/runUnitTests_primal.py @@ -6,7 +6,6 @@ from mpi4py import MPI from dafoam import PYDAFOAM import os -import numpy as np gcomm = MPI.COMM_WORLD @@ -28,10 +27,10 @@ norm = np.linalg.norm(states) norm = gcomm.allreduce(norm, op=MPI.SUM) if ((3787018.3272404578 - norm) / norm) > 1e-10: - print("SSTLM test failed!") + print("ke test failed!") exit(1) else: - print("SSTLM test passed!") + print("ke test passed!") if gcomm.rank == 0: os.system("rm -rf processor* *.bin") @@ -45,27 +44,10 @@ norm = np.linalg.norm(states) norm = gcomm.allreduce(norm, op=MPI.SUM) if ((3787032.628925756 - norm) / norm) > 1e-10: - print("SSTLM test failed!") + print("kw test failed!") exit(1) else: - print("SSTLM test passed!") - -if gcomm.rank == 0: - os.system("rm -rf processor* *.bin") - os.system("cp -r 0.compressible/* 0/") - os.system("cp -r system.subsonic/* system/") - os.system("cp -r constant/turbulenceProperties.safv3 constant/turbulenceProperties") - -DASolver = PYDAFOAM(options=daOptions, comm=gcomm) -DASolver() -states = DASolver.getStates() -norm = np.linalg.norm(states) -norm = gcomm.allreduce(norm, op=MPI.SUM) -if ((3786983.4415608784 - norm) / norm) > 1e-10: - print("SSTLM test failed!") - exit(1) -else: - print("SSTLM test passed!") + print("kw test passed!") if gcomm.rank == 0: os.system("rm -rf processor* *.bin")