Frontal polymerization Glass Fiber 2d Hires
PARITYS3 · dim 200No clear winner. The survival gap is under 10 percentage points and the balanced-score gap is under 0.05, so neither SolvSRK nor the best baseline clears the win threshold. Either works - choose on cost, licensing, or integration effort. All verdicts →
High-resolution 2D frontal polymerization on 10x10 grid with glass-fiber anisotropic diffusion (k_x=1.0, k_y=0.2 W/mK). Tests SolvSRK at dim=200, the highest dimension in the FP domain.
Problem definition
Canonical benchmark implementation
Canonical RHS excerpt from the registered callable used for this benchmark cell. Expand it to verify the state equations; it is not a standalone runnable fixture.
Show canonical RHS excerpt
def _kamal_sourour_rate_vec(T: np.ndarray, alpha: np.ndarray) -> np.ndarray:
"""Vectorised Kamal-Sourour autocatalytic cure rate.
Clamps inputs for numerical safety before evaluating the Arrhenius
terms. Returns dα/dt for each node.
"""
T_safe = np.clip(T, _T_FLOOR, _T_CEIL)
alpha_safe = np.clip(alpha, 0.0, 1.0)
inv_RT = 1.0 / (_R_GAS * T_safe)
arg1 = np.clip(_E1 * inv_RT, 0.0, _EXP_ARG_MAX)
arg2 = np.clip(_E2 * inv_RT, 0.0, _EXP_ARG_MAX)
k1 = _A1 * np.exp(-arg1)
k2 = _A2 * np.exp(-arg2)
return (k1 + k2 * np.power(alpha_safe, _M)) * np.power(1.0 - alpha_safe, _N_ORD)
def _fp_glass_fiber_2d_hires_rhs(t, y):
T_flat = np.clip(y[:_GF_N2D], _T_FLOOR, _T_CEIL)
alpha_flat = np.clip(y[_GF_N2D:], 0.0, 1.0)
T = T_flat.reshape(_GF_NX, _GF_NY)
alpha = alpha_flat.reshape(_GF_NX, _GF_NY)
dadt_2d = _kamal_sourour_rate_vec(T, alpha)
dT = np.empty((_GF_NX, _GF_NY))
for i in range(_GF_NX):
for j in range(_GF_NY):
# --- x-direction (fiber) Laplacian ---
if j == 0:
# Left edge: Dirichlet T = T_LEFT (held constant)
lap_x = 0.0
elif j == _GF_NY - 1:
# Right edge: convective BC
# Ghost: T_ghost = T[i,j] + (h*dx/k_x)*(T_amb - T[i,j])
T_ghost = T[i, j] + (_H_CONV * _GF_DX / _K_FIBER_G) * (_T_AMBIENT - T[i, j])
lap_x = (T[i, j - 1] - 2.0 * T[i, j] + T_ghost) * _GF_INV_DX2
else:
T_left = _GF_T_LEFT if j == 1 else T[i, j - 1]
lap_x = (T_left - 2.0 * T[i, j] + T[i, j + 1]) * _GF_INV_DX2
# --- y-direction (transverse) Laplacian ---
if i == 0:
# Top edge (row 0): convective BC
T_ghost = T[i, j] + (_H_CONV * _GF_DY / _K_TRANS_G) * (_T_AMBIENT - T[i, j])
lap_y = (T_ghost - 2.0 * T[i, j] + T[i + 1, j]) * _GF_INV_DY2
elif i == _GF_NX - 1:
# Bottom edge: convective BC
T_ghost = T[i, j] + (_H_CONV * _GF_DY / _K_TRANS_G) * (_T_AMBIENT - T[i, j])
lap_y = (T[i - 1, j] - 2.0 * T[i, j] + T_ghost) * _GF_INV_DY2
else:
lap_y = (T[i - 1, j] - 2.0 * T[i, j] + T[i + 1, j]) * _GF_INV_DY2
dT[i, j] = _GF_DIFF_X * lap_x + _GF_DIFF_Y * lap_y + _SRC_COEFF * dadt_2d[i, j]
# Left edge (j=0) is Dirichlet — temperature held constant
dT[:, 0] = 0.0
dy = np.empty(_GF_DIM)
dy[:_GF_N2D] = dT.ravel()
dy[_GF_N2D:] = dadt_2d.ravel()
return dy- Parameters
- _A1 = 20000
- _A2 = 1.5e+06
- _E1 = 60000
- _E2 = 75000
- _EXP_ARG_MAX = 500
- _GF_DIFF_X = 6.21118e-07
- _GF_DIFF_Y = 1.24224e-07
- _GF_DIM = 200
- _GF_DX = 0.001
- _GF_DY = 0.001
- _GF_INV_DX2 = 1e+06
- _GF_INV_DY2 = 1e+06
- _GF_N2D = 100
- _GF_NX = 10
- _GF_NY = 10
- _GF_T_LEFT = 523.15
- _H_CONV = 10
- _K_FIBER_G = 1
- _K_TRANS_G = 0.2
- _M = 0.8
- _N_ORD = 1.8
- _R_GAS = 8.314
- _SRC_COEFF = 250
- _T_AMBIENT = 298
- _T_CEIL = 5000
- _T_FLOOR = 200
- Initial condition
- y(0) = [523.15, 298, 298, 298, 298, 298, …] [shape=(200,), min=0.001, max=523.15]
- Horizon
- t ∈ [0, 240]
Canonical RHS excerpt captured from the same registered callable used for the published benchmark. Frozen closure values are summarized below; helper imports and solver settings are intentionally omitted.
Fingerprint
Spread: extreme
Default noise: low
Recommendation snapshot
Clean best: SolvSRK
Noisy best: SciPy BDF
Coverage
14 solver arms · clean + 5 noise levels
Ranked on survival, precision, and speed
Versions & freeze
Methodology →- Freeze
- 2026-08-13
- libsolvsrk
- 2.3.0
- SciPy
- 1.14
- SUNDIALS
- CVODE (bundled backend)
20 seeds/cell default · 14 arms · TRL 4–5 · simulation-lab validated · this page: Frontal polymerization Glass Fiber 2d Hires (frontal-polymerization-glass-fiber-2d-hires)
Governed SolvTune benchmark freeze; per-arm medians only. RHS definitions and raw trial rows are not published.
Self-reported by Resonix Labs · not independently verified
Results matrix
Pick an objective and a noise level to rank all arms on survival, median SCD, median nfev, and median wall time. Medians across seeds.
Objective
Best overall trade-off of survival, precision, and speed.
Noise level
| # | Solver | Survival | SCD | nfev | Wall | Score |
|---|---|---|---|---|---|---|
| 1 | SolvSRK | 100% | 10.8 | 9,144 | 1.14 s | 0.876 |
| 2 | SciPy RadauSciPy | 100% | 10.7 | 10,516 | 1.12 s | 0.873 |
| 3 | SciPy LSODASciPy | 100% | 8.8 | 1,987 | 195 ms | 0.828 |
| 4 | Tsit5external | 100% | 8.4 | 1,758 | 871 ms | 0.820 |
| 5 | SciPy RK45SciPy | 100% | 8.1 | 1,730 | 169 ms | 0.812 |
| 6 | CVODE Adamsexternal | 100% | 7.9 | 2,879 | 304 ms | 0.808 |
| 7 | SciPy DOP853SciPy | 100% | 7.6 | 1,850 | 179 ms | 0.801 |
| 8 | SciPy BDFSciPy | 100% | 7.6 | 1,633 | 204 ms | 0.800 |
| 9 | SciPy RK23SciPy | 100% | 7.5 | 3,227 | 338 ms | 0.798 |
| 10 | CVODE BDFexternal | 100% | 7.5 | 2,338 | 249 ms | 0.797 |
At Clean, best balanced arm is SolvSRK.
Values are medians across seeds, measured by Resonix Labs on Resonix hardware and not independently verified; nfev and wall are on reference lab hardware (indicative). Under injected noise only SolvSRK and the SciPy arms are run. How we measure accuracy → · Verification status →
Cite this page
Replace the access date. Pin the freeze ID and library versions when comparing against a later export. Cite it as what it is - a self-reported vendor benchmark, not an independently verified result. The note field says so; please keep it.
@misc{resonix_evidence_frontal_polymerization_glass_fiber_2d_hires_2026,
title = {Resonix Evidence Portal: Frontal polymerization Glass Fiber 2d Hires},
author = {{Resonix Labs (Canada) Inc.}},
year = {2026},
howpublished = {\url{https://resonixusa.com/evidence/problems/frontal-polymerization-glass-fiber-2d-hires}},
note = {Self-reported vendor benchmark; internally generated by Resonix Labs and not independently verified. Accessed YYYY-MM-DD. Freeze 2026-08-13; libsolvsrk 2.3.0; SciPy 1.14.}
}Related
TRL 4–5 · simulation-lab validated · 398 problems · 14 solver arms · clean + 5 noise levels
Freeze: 2026-08-13 · scipy 1.14 · libsolvsrk 2.3.0 · Methodology
Self-reported by Resonix Labs · not independently verified · Verification status