From 185966854a497b092d9a79a9367cdf3d928b2b07 Mon Sep 17 00:00:00 2001 From: Abdelnasser Date: Fri, 17 Jul 2026 10:26:07 -0600 Subject: [PATCH] Fix OpenMC temp settings for LTMR --- core_design/openmc_template_LTMR.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/core_design/openmc_template_LTMR.py b/core_design/openmc_template_LTMR.py index 50ec3732..0ccad1bd 100644 --- a/core_design/openmc_template_LTMR.py +++ b/core_design/openmc_template_LTMR.py @@ -659,13 +659,10 @@ def build_openmc_model_LTMR(params): else: settings.particles = 1000 - if params['Isothermal Temperature Coefficients']: - settings.temperature = { - 'default': params['Common Temperature'], - 'method': 'interpolation', - 'tolerance': 50.0 - } - else: - settings.temperature = {'method': 'interpolation'} + settings.temperature = { + 'default': params['Common Temperature'], + 'method': 'interpolation', + 'tolerance': 50.0 + } settings.export_to_xml() \ No newline at end of file