Fri 29 Nov 2024 04:30:50 PM CET
This commit is contained in:
parent
10deef20da
commit
ec1438edac
42
src/SimNDT/core/simPack.py
Normal file
42
src/SimNDT/core/simPack.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
#!/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, geom_objects, receivers, snapShots, Library):
|
||||
"""
|
||||
Initializes the SimPack class with the provided simulation components.
|
||||
|
||||
Parameters:
|
||||
- scenario: The scenario object.
|
||||
- materials: List of material objects.
|
||||
- boundary: List of boundary condition objects.
|
||||
- inspection: The inspection object.
|
||||
- source: The source object.
|
||||
- transducers: List of transducer objects.
|
||||
- signal: The signal object.
|
||||
- simulation: The simulation object.
|
||||
- SimNDT_geom_objects: List of geometric objects.
|
||||
- SimNDT_Receivers: The receivers object.
|
||||
- SimNDT_SnapShots: The snapshots object.
|
||||
"""
|
||||
self.Boundary = boundary
|
||||
self.Inspection = inspection
|
||||
self.Source = source
|
||||
self.Materials = materials
|
||||
self.Transducers = transducers
|
||||
self.Simulation = simulation
|
||||
self.Scenario = scenario
|
||||
self.Signal = signal
|
||||
self.Geom_objects = geom_objects
|
||||
self.Receivers = receivers
|
||||
self.SnapShots = snapShots
|
||||
self.Library = Library
|
||||
|
Loading…
Reference in New Issue
Block a user