mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-24 20:15:26 -04:00
10 lines
259 B
Python
10 lines
259 B
Python
from openmc.examples import slab_mg
|
|
|
|
from tests.testing_harness import PyAPITestHarness
|
|
|
|
|
|
def test_mg_max_order():
|
|
model = slab_mg(reps=['iso'])
|
|
model.settings.max_order = 1
|
|
harness = PyAPITestHarness('statepoint.10.h5', model)
|
|
harness.main()
|