From 86141b0dac3c1f09d35994e87e217bb2874896e4 Mon Sep 17 00:00:00 2001 From: sbosse Date: Wed, 28 Aug 2024 21:38:54 +0200 Subject: [PATCH] Wed 28 Aug 21:38:52 CEST 2024 --- src/SimNDT/core/simPack.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/SimNDT/core/simPack.py diff --git a/src/SimNDT/core/simPack.py b/src/SimNDT/core/simPack.py new file mode 100644 index 0000000..c6f2b44 --- /dev/null +++ b/src/SimNDT/core/simPack.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +# encoding: utf-8 +""" +simPack.py + +Created by Miguel Molero on 2013-10-01. +Copyright (c) 2013 MMolero. All rights reserved. +""" + +class SimPack: + + def __init__(self, scenario, materials, boundary, inspection, source, transducers, signal, simulation): + + self.Boundary = boundary + self.Inspection = inspection + self.Source = source + self.Materials = materials + self.Transducers = transducers + self.Simulation = simulation + self.Scenario = scenario + self.Signal = signal + \ No newline at end of file