blob: 789fe8d93e353e52bc663c1b04ebe0a242928996 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /usr/bin/env python
# Run the default regression test for the PICMI version of the EB test
# using the same reference file as for the non-PICMI test since the two
# tests are otherwise the same.
import sys
sys.path.append('../../../../warpx/Regression/Checksum/')
import checksumAPI
my_check = checksumAPI.evaluate_checksum(
'ElectrostaticSphereEB', 'Python_ElectrostaticSphereEB_plt00001',
do_particles=False, atol=1e-12
)
|