Skip to content

Commit

Permalink
add more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
multiphaseCFD committed Oct 13, 2023
1 parent 4edb007 commit 3e80ce6
Show file tree
Hide file tree
Showing 4 changed files with 1,553 additions and 36 deletions.
6 changes: 5 additions & 1 deletion mpitests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
)

# defaults
TOL = 1e-4
TOL = 1e-6
TOL_STOCHASTIC = 0.05

U = np.array(
[
Expand All @@ -33,6 +34,9 @@
U2 = np.array([[0, 1, 1, 1], [1, 0, 1, -1], [1, -1, 0, 1], [1, 1, -1, 0]]) / np.sqrt(3)
A = np.array([[1.02789352, 1.61296440 - 0.3498192j], [1.61296440 + 0.3498192j, 1.23920938 + 0j]])

THETA = np.linspace(0.11, 1, 3)
PHI = np.linspace(0.32, 1, 3)
VARPHI = np.linspace(0.02, 1, 3)

@pytest.fixture(scope="session")
def tol():
Expand Down
Loading

0 comments on commit 3e80ce6

Please sign in to comment.