From 37ffc5e7a6d1eabd03a390def67dd86b4a615481 Mon Sep 17 00:00:00 2001 From: sbosse Date: Tue, 27 Jan 2026 11:50:30 +0100 Subject: [PATCH] Tue 27 Jan 11:47:53 CET 2026 --- src/SimNDT/run_setup/engineController.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/SimNDT/run_setup/engineController.py b/src/SimNDT/run_setup/engineController.py index 45ca0c4..2b341c7 100644 --- a/src/SimNDT/run_setup/engineController.py +++ b/src/SimNDT/run_setup/engineController.py @@ -262,7 +262,21 @@ class EngineController(): pointCycle=self.simPack.Simulation.PointCycle, inspection=self.simPack.Inspection.Name, fieldShape=str(self.SimNDT_FD.Vx.shape), - materials=mats + materials=mats, + scenario=dict(\ + height=self.simPack.Scenario.Height,\ + width=self.simPack.Scenario.Width,\ + label=self.simPack.Scenario.Label,\ + m=self.simPack.Scenario.M,\ + n=self.simPack.Scenario.N,\ + pixel_mm=self.simPack.Scenario.Pixel_mm,\ + objects=self.simPack.Scenario.Objects\ + ), + sensors=dict(\ + sensorShape=self.SimNDT_SnapShots.sensorShape,\ + sensorPlacement=self.SimNDT_SnapShots.sensorPlacement,\ + sensorSize=self.SimNDT_SnapShots.sensorSize\ + ) ) self.SimNDT_SnapShots.save_summary(data)