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