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
1388fe15
Commit
1388fe15
authored
6 years ago
by
MoritzThomasHuebner
Browse files
Options
Downloads
Patches
Plain Diff
Did some final refactoring
parent
995b9be7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!173
Resolve "Improve PowerSpectralDensity structure"
Pipeline
#29768
failed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tupak/gw/detector.py
+15
-29
15 additions, 29 deletions
tupak/gw/detector.py
with
15 additions
and
29 deletions
tupak/gw/detector.py
+
15
−
29
View file @
1388fe15
...
...
@@ -1331,7 +1331,7 @@ class Interferometer(object):
array_like: An array representation of the PSD
"""
return
self
.
power_spectral_density
.
power_spectral_density_interpolated
(
self
.
frequency_array
)
\
return
self
.
power_spectral_density
.
__
power_spectral_density_interpolated
(
self
.
frequency_array
)
\
*
self
.
strain_data
.
window_factor
@property
...
...
@@ -1681,54 +1681,40 @@ class PowerSpectralDensity(object):
@property
def
asd_file
(
self
):
"""
Test if the file contains a path (i.e., contains
'
/
'
).
If not assume the file is in the default directory.
"""
return
self
.
__asd_file
@asd_file.setter
def
asd_file
(
self
,
asd_file
):
if
'
/
'
not
in
asd_file
:
asd_file
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
noise_curves
'
,
asd_file
)
asd_file
=
self
.
__validate_file_name
(
file
=
asd_file
)
self
.
__asd_file
=
asd_file
self
.
import_amplitude_spectral_density
()
self
.
__
import_amplitude_spectral_density
()
@property
def
psd_file
(
self
):
"""
Test if the file contains a path (i.e., contains
'
/
'
).
If not assume the file is in the default directory.
"""
return
self
.
__psd_file
@psd_file.setter
def
psd_file
(
self
,
psd_file
):
if
'
/
'
not
in
psd_file
:
psd_file
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
noise_curves
'
,
psd_file
)
psd_file
=
self
.
__validate_file_name
(
file
=
psd_file
)
self
.
__psd_file
=
psd_file
self
.
import_power_spectral_density
()
self
.
__
import_power_spectral_density
()
def
import_amplitude_spectral_density
(
self
):
@staticmethod
def
__validate_file_name
(
file
):
"""
Automagically load one of the amplitude spectral density curves
contained in the noise_curves directory.
Test if the file contains a path (i.e., contains
'
/
'
).
If not assume the file is in the default directory.
"""
if
'
/
'
not
in
file
:
file
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
noise_curves
'
,
file
)
return
file
def
__import_amplitude_spectral_density
(
self
):
"""
Automagically load an amplitude spectral density curve
"""
self
.
frequency_array
,
self
.
asd_array
=
np
.
genfromtxt
(
self
.
asd_file
).
T
def
import_power_spectral_density
(
self
):
"""
Automagically load one of the power spectral density curves contained
in the noise_curves directory.
Test if the file contains a path (i.e., contains
'
/
'
).
If not assume the file is in the default directory.
"""
def
__import_power_spectral_density
(
self
):
"""
Automagically load a power spectral density curve
"""
self
.
frequency_array
,
self
.
power_spectral_density
=
np
.
genfromtxt
(
self
.
psd_file
).
T
def
get_noise_realisation
(
self
,
sampling_frequency
,
duration
):
...
...
@@ -1749,7 +1735,7 @@ class PowerSpectralDensity(object):
"""
white_noise
,
frequencies
=
utils
.
create_white_noise
(
sampling_frequency
,
duration
)
frequency_domain_strain
=
self
.
power_spectral_density_interpolated
(
frequencies
)
**
0.5
*
white_noise
frequency_domain_strain
=
self
.
__
power_spectral_density_interpolated
(
frequencies
)
**
0.5
*
white_noise
out_of_bounds
=
(
frequencies
<
min
(
self
.
frequency_array
))
|
(
frequencies
>
max
(
self
.
frequency_array
))
frequency_domain_strain
[
out_of_bounds
]
=
0
*
(
1
+
1j
)
return
frequency_domain_strain
,
frequencies
...
...
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