Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
b699ad84
Commit
b699ad84
authored
6 years ago
by
Moritz Huebner
Browse files
Options
Downloads
Patches
Plain Diff
Fix detector_tensor caching
parent
2cc55641
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
bilby/gw/detector.py
+2
-0
2 additions, 0 deletions
bilby/gw/detector.py
test/detector_test.py
+40
-9
40 additions, 9 deletions
test/detector_test.py
with
44 additions
and
9 deletions
CHANGELOG.md
+
2
−
0
View file @
b699ad84
...
...
@@ -4,6 +4,8 @@
Changes currently on master, but not under a tag.
-
Fixed a bug which caused
`Interferometer.detector_tensor`
not to update when
`latitude`
,
`longitude`
,
`xarm_azimuth`
,
`yarm_azimuth`
,
`xarm_tilt`
,
`yarm_tilt`
were updated.
## [0.3.1] 2018-11-06
### Changes
...
...
This diff is collapsed.
Click to expand it.
bilby/gw/detector.py
+
2
−
0
View file @
b699ad84
...
...
@@ -1134,6 +1134,8 @@ class Interferometer(object):
array_like: A 3x3 array representation of the detector tensor
"""
if
not
self
.
__x_updated
or
not
self
.
__y_updated
:
_
,
_
=
self
.
x
,
self
.
y
# noqa
if
not
self
.
__detector_tensor_updated
:
self
.
__detector_tensor
=
0.5
*
(
np
.
einsum
(
'
i,j->ij
'
,
self
.
x
,
self
.
x
)
-
np
.
einsum
(
'
i,j->ij
'
,
self
.
y
,
self
.
y
))
self
.
__detector_tensor_updated
=
True
...
...
This diff is collapsed.
Click to expand it.
test/detector_test.py
+
40
−
9
View file @
b699ad84
...
...
@@ -179,18 +179,50 @@ class TestDetector(unittest.TestCase):
_
=
self
.
ifo
.
detector_tensor
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
m
.
return_value
=
1
self
.
assertIsInstance
(
self
.
ifo
.
detector_tensor
,
np
.
ndarray
)
expected
=
np
.
array
([[
-
9.24529394e-06
,
1.02425803e-04
,
3.24550668e-04
],
[
1.02425803e-04
,
1.37390844e-03
,
-
8.61137566e-03
],
[
3.24550668e-04
,
-
8.61137566e-03
,
-
1.36466315e-03
]])
self
.
assertTrue
(
np
.
allclose
(
expected
,
self
.
ifo
.
detector_tensor
))
def
test_detector_tensor_with_x_update
(
self
):
def
test_detector_tensor_with_x_azimuth_update
(
self
):
_
=
self
.
ifo
.
detector_tensor
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
m
.
return_value
=
1
self
.
ifo
.
xarm_azimuth
=
12
self
.
assertEqual
(
self
.
ifo
.
detector_tensor
,
0
)
self
.
ifo
.
xarm_azimuth
=
1
self
.
assertEqual
(
0
,
self
.
ifo
.
detector_tensor
)
def
test_detector_tensor_with_y_azimuth_update
(
self
):
_
=
self
.
ifo
.
detector_tensor
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
m
.
return_value
=
1
self
.
ifo
.
yarm_azimuth
=
1
self
.
assertEqual
(
0
,
self
.
ifo
.
detector_tensor
)
def
test_detector_tensor_with_y_update
(
self
):
def
test_detector_tensor_with_x_tilt_update
(
self
):
_
=
self
.
ifo
.
detector_tensor
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
m
.
return_value
=
1
self
.
ifo
.
yarm_azimuth
=
12
self
.
ifo
.
xarm_tilt
=
1
self
.
assertEqual
(
0
,
self
.
ifo
.
detector_tensor
)
def
test_detector_tensor_with_y_tilt_update
(
self
):
_
=
self
.
ifo
.
detector_tensor
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
m
.
return_value
=
1
self
.
ifo
.
yarm_tilt
=
1
self
.
assertEqual
(
0
,
self
.
ifo
.
detector_tensor
)
def
test_detector_tensor_with_longitude_update
(
self
):
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
m
.
return_value
=
1
self
.
ifo
.
longitude
=
1
self
.
assertEqual
(
0
,
self
.
ifo
.
detector_tensor
)
def
test_detector_tensor_with_latitude_update
(
self
):
with
mock
.
patch
(
'
numpy.einsum
'
)
as
m
:
_
=
self
.
ifo
.
detector_tensor
m
.
return_value
=
1
self
.
ifo
.
latitude
=
1
self
.
assertEqual
(
self
.
ifo
.
detector_tensor
,
0
)
def
test_antenna_response_default
(
self
):
...
...
@@ -312,7 +344,6 @@ class TestDetector(unittest.TestCase):
float
(
self
.
maximum_frequency
),
float
(
self
.
length
),
float
(
self
.
latitude
),
float
(
self
.
longitude
),
float
(
self
.
elevation
),
float
(
self
.
xarm_azimuth
),
float
(
self
.
yarm_azimuth
),
float
(
self
.
xarm_tilt
),
float
(
self
.
yarm_tilt
))
print
(
repr
(
self
.
ifo
))
self
.
assertEqual
(
expected
,
repr
(
self
.
ifo
))
...
...
@@ -825,12 +856,12 @@ class TestPowerSpectralDensityWithoutFiles(unittest.TestCase):
def
test_power_spectral_density_interpolated_from_asd_array
(
self
):
expected
=
np
.
array
([
25.
])
psd
=
bilby
.
gw
.
detector
.
PowerSpectralDensity
(
frequency_array
=
self
.
frequency_array
,
asd_array
=
self
.
asd_array
)
psd
=
bilby
.
gw
.
detector
.
PowerSpectralDensity
(
frequency_array
=
self
.
frequency_array
,
asd_array
=
self
.
asd_array
)
self
.
assertEqual
(
expected
,
psd
.
power_spectral_density_interpolated
(
2
))
def
test_power_spectral_density_interpolated_from_psd_array
(
self
):
expected
=
np
.
array
([
25.
])
psd
=
bilby
.
gw
.
detector
.
PowerSpectralDensity
(
frequency_array
=
self
.
frequency_array
,
psd_array
=
self
.
psd_array
)
psd
=
bilby
.
gw
.
detector
.
PowerSpectralDensity
(
frequency_array
=
self
.
frequency_array
,
psd_array
=
self
.
psd_array
)
self
.
assertEqual
(
expected
,
psd
.
power_spectral_density_interpolated
(
2
))
def
test_from_amplitude_spectral_density_array
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment