1
- import abc
2
- import sys
3
1
from enum import Enum
4
- from pathlib import Path
5
2
6
3
import numpy as np
7
4
8
- from pyroomacoustics .doa import spher2cart
9
- from pyroomacoustics .utilities import all_combinations , requires_matplotlib
5
+ from ..doa import spher2cart
6
+ from ..utilities import all_combinations , requires_matplotlib
7
+ from .base import Directivity
8
+ from .direction import DirectionVector
10
9
11
10
12
11
class DirectivityPattern (Enum ):
@@ -29,104 +28,6 @@ class DirectivityPattern(Enum):
29
28
OMNI = 1.0
30
29
31
30
32
- class DirectionVector (object ):
33
- """
34
- Object for representing direction vectors in 3D, parameterized by an azimuth and colatitude
35
- angle.
36
-
37
- Parameters
38
- ----------
39
- azimuth : float
40
- colatitude : float, optional
41
- Default to PI / 2, only XY plane.
42
- degrees : bool
43
- Whether provided values are in degrees (True) or radians (False).
44
- """
45
-
46
- def __init__ (self , azimuth , colatitude = None , degrees = True ):
47
- if degrees is True :
48
- azimuth = np .radians (azimuth )
49
- if colatitude is not None :
50
- colatitude = np .radians (colatitude )
51
- self ._azimuth = azimuth
52
- if colatitude is None :
53
- colatitude = np .pi / 2
54
- assert colatitude <= np .pi and colatitude >= 0
55
-
56
- self ._colatitude = colatitude
57
-
58
- self ._unit_v = np .array (
59
- [
60
- np .cos (self ._azimuth ) * np .sin (self ._colatitude ),
61
- np .sin (self ._azimuth ) * np .sin (self ._colatitude ),
62
- np .cos (self ._colatitude ),
63
- ]
64
- )
65
-
66
- def get_azimuth (self , degrees = False ):
67
- if degrees :
68
- return np .degrees (self ._azimuth )
69
- else :
70
- return self ._azimuth
71
-
72
- def get_colatitude (self , degrees = False ):
73
- if degrees :
74
- return np .degrees (self ._colatitude )
75
- else :
76
- return self ._colatitude
77
-
78
- @property
79
- def unit_vector (self ):
80
- """Direction vector in cartesian coordinates."""
81
- return self ._unit_v
82
-
83
-
84
- class Directivity (abc .ABC ):
85
- """
86
- Abstract class for directivity patterns.
87
-
88
- """
89
-
90
- def __init__ (self , orientation ):
91
- assert isinstance (orientation , DirectionVector )
92
- self ._orientation = orientation
93
-
94
- @property
95
- def is_impulse_response (self ):
96
- """
97
- Indicates whether the array returned has coefficients
98
- for octave bands or is a full-size impulse response
99
- """
100
- return False
101
-
102
- def get_azimuth (self , degrees = True ):
103
- return self ._orientation .get_azimuth (degrees , degrees = degrees )
104
-
105
- def get_colatitude (self , degrees = True ):
106
- return self ._orientation .get_colatitude (degrees , degrees = degrees )
107
-
108
- def set_orientation (self , orientation ):
109
- """
110
- Set orientation of directivity pattern.
111
-
112
- Parameters
113
- ----------
114
- orientation : DirectionVector
115
- New direction for the directivity pattern.
116
- """
117
- assert isinstance (orientation , DirectionVector )
118
- self ._orientation = orientation
119
-
120
- @abc .abstractmethod
121
- def get_response (
122
- self , azimuth , colatitude = None , magnitude = False , frequency = None , degrees = True
123
- ):
124
- """
125
- Get response for provided angles and frequency.
126
- """
127
- return
128
-
129
-
130
31
class CardioidFamily (Directivity ):
131
32
"""
132
33
Object for directivities coming from the
0 commit comments