Package wiat :: Package MM
[hide private]
[frames] | no frames]

Source Code for Package wiat.MM

 1  # Copyright 2008 Antoine Lefebvre 
 2  # 
 3  # This file is part of "The Wind Instrument Acoustic Toolkit". 
 4  # 
 5  # "The Wind Instrument Acoustic Toolkit" is free software: 
 6  # you can redistribute it and/or modify it under the terms of 
 7  # the GNU General Public License as published by the 
 8  # Free Software Foundation, either version 3 of the License, or 
 9  # (at your option) any later version. 
10  # 
11  # "The Wind Instrument Acoustic Toolkit" is distributed in the hope 
12  # that it will be useful, but WITHOUT ANY WARRANTY; without even 
13  # the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
14  # See the GNU General Public License for more details. 
15  # 
16  # You should have received a copy of the GNU General Public License 
17  # along with "The Wind Instrument Acoustic Toolkit". 
18  # If not, see <http://www.gnu.org/licenses/>. 
19  # 
20  # All rights reserved. 
21   
22  """ Multimodal (MM) acoustic input impedance calculation 
23   
24      This package is used for the calculation of varying cross-section 
25      acoustic waveguides frequency response. 
26   
27  """ 
28   
29  __version__ = "0.0.0.1" 
30  __author__ = "Antoine Lefebvre" 
31  __credits__ = "FQRNT" 
32  __license__ = "GPLv3" 
33   
34   
35  import Waveguides 
36  import Radiation 
37  import Solver 
38  #import Solver as s 
39  #from Solver import * 
40   
41  #__all__ = [] 
42  #__all__ += s.__all__ 
43