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)