Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bilby_Psi4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Samson Leong
Bilby_Psi4
Commits
fc8600d9
Commit
fc8600d9
authored
2 years ago
by
Samson Leong
Browse files
Options
Downloads
Patches
Plain Diff
Prevent repeated psi4 correction.
parent
cb98a67a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bilby/gw/detector/psd.py
+8
-5
8 additions, 5 deletions
bilby/gw/detector/psd.py
with
8 additions
and
5 deletions
bilby/gw/detector/psd.py
+
8
−
5
View file @
fc8600d9
...
...
@@ -55,6 +55,7 @@ class PowerSpectralDensity(object):
self
.
asd_array
=
asd_array
self
.
psd_file
=
psd_file
self
.
asd_file
=
asd_file
self
.
__is_psi4_psd
=
False
def
_update_cache
(
self
,
frequency_array
):
psd_array
=
self
.
power_spectral_density_interpolated
(
frequency_array
)
...
...
@@ -229,11 +230,13 @@ class PowerSpectralDensity(object):
return
psi4_psd
def
convert_strain_power_spectral_density_to_psi4_power_spectral_density
(
self
,
sampling_frequency
):
psi4_psd
=
self
.
psi4_power_spectral_density
(
self
.
psd_array
,
self
.
frequency_array
,
1
/
sampling_frequency
)
self
.
__psd_array_bkup
=
self
.
psd_array
self
.
__psd_array
=
psi4_psd
self
.
__asd_array
=
psi4_psd
**
0.5
self
.
__interpolate_power_spectral_density
()
if
not
self
.
__is_psi4_psd
:
psi4_psd
=
self
.
psi4_power_spectral_density
(
self
.
psd_array
,
self
.
frequency_array
,
1
/
sampling_frequency
)
self
.
__psd_array_bkup
=
self
.
psd_array
self
.
__psd_array
=
psi4_psd
self
.
__asd_array
=
psi4_psd
**
0.5
self
.
__interpolate_power_spectral_density
()
self
.
__is_psi4_psd
=
True
@property
def
psd_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