Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
pygwinc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
31
Issues
31
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gwinc
pygwinc
Commits
8a4dd7d5
Commit
8a4dd7d5
authored
Aug 07, 2019
by
Jameson Graef Rollins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update README links to built-in detectors
parent
39d430dd
Pipeline
#74047
passed with stages
in 1 minute and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
README.md
README.md
+10
-7
No files found.
README.md
View file @
8a4dd7d5
...
...
@@ -35,15 +35,15 @@ $ python3 -m gwinc aLIGO
## detector description files
`pygwinc`
can load detector descriptions in different formats: the new
YAML .yaml format, the original MATLAB gwinc .mat format, or even from
a MATLAB .m file.
`pygwinc`
includes .yaml detector descriptions for
various detectors:
`pygwinc`
can load budget descriptions in different formats: python
package/module, .yaml YAML file, and MATLAB gwinc .mat or .m files.
*
[
aLIGO.yaml
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/aLIGO.yaml
)
*
[
A+.yaml
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/A+.yaml
)
*
[
Voyager.yaml
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/Voyager.yaml
)
`pygwinc`
includes budgets for various canonical detectors:
*
[
aLIGO
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/aLIGO
)
*
[
A+
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/Aplus
)
*
[
Voyager
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/Voyager
)
*
[
Cosmic Explorer
](
https://git.ligo.org/gwinc/pygwinc/blob/master/gwinc/ifo/aLIGO
)
## noise budgets
...
...
@@ -56,6 +56,7 @@ import numpy as np
from
gwinc
import
nb
from
gwinc
import
noise
class
ExcessGas
(
nb
.
Noise
):
"""Excess gas"""
style
=
dict
(
...
...
@@ -67,6 +68,7 @@ class ExcessGas(nb.Noise):
def
calc
(
self
):
return
noise
.
residualgas
.
gas
(
self
.
freq
,
self
.
ifo
)
class
MeasuredNoise
(
nb
.
Noise
):
"""My measured noise"""
style
=
dict
(
...
...
@@ -82,6 +84,7 @@ class MeasuredNoise(nb.Noise):
def
calc
(
self
):
return
self
.
data
class
MyBudget
(
nb
.
Budget
):
noises
=
[
ExcessGas
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment