Skip to content

Commit 721be69

Browse files
committed
_severely_ limit mechanism size to not crash github actions runners OOM
github actions runners have relatively limited memory the mechanism size that would result from this would crash the runners with OOM errors when attempting to run cantera simulations this fixes the issue by limiting the size of the mechanism. this does remove the scientific validity of the test, but at least covers some basic functionality and correctness checks
1 parent 9473f5e commit 721be69

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/regression/minimal_surface/input.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@
104104
toleranceKeepInEdge=0.0,
105105
toleranceMoveToCore=1e-1,
106106
toleranceInterruptSimulation=0.1,
107-
maximumEdgeSpecies=100000,
107+
maximumEdgeSpecies=100,
108+
maxNumSpecies=10,
108109
)
109110
options(
110111
units='si',

0 commit comments

Comments
 (0)