Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pygwinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
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
gwinc
pygwinc
Commits
71912107
Commit
71912107
authored
4 years ago
by
Kevin Kuns
Browse files
Options
Downloads
Patches
Plain Diff
add aLIGO excess gas sub-budget for H2, N2, and H2O
parent
d94a4f53
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!121
Residual gas sub-budgets and updates
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gwinc/ifo/aLIGO/__init__.py
+17
-0
17 additions, 0 deletions
gwinc/ifo/aLIGO/__init__.py
gwinc/ifo/aLIGO/ifo.yaml
+14
-3
14 additions, 3 deletions
gwinc/ifo/aLIGO/ifo.yaml
gwinc/ifo/noises.py
+54
-0
54 additions, 0 deletions
gwinc/ifo/noises.py
with
85 additions
and
3 deletions
gwinc/ifo/aLIGO/__init__.py
+
17
−
0
View file @
71912107
...
...
@@ -19,6 +19,23 @@ class QuantumVacuum(nb.Budget):
]
class
ExcessGas
(
nb
.
Budget
):
"""
Excess Gas
"""
style
=
dict
(
label
=
'
Excess Gas
'
,
color
=
'
#add00d
'
,
linestyle
=
'
--
'
,
)
noises
=
[
ExcessGasH2
,
ExcessGasN2
,
ExcessGasH2O
,
]
class
aLIGO
(
nb
.
Budget
):
name
=
'
Advanced LIGO
'
...
...
This diff is collapsed.
Click to expand it.
gwinc/ifo/aLIGO/ifo.yaml
+
14
−
3
View file @
71912107
...
...
@@ -33,9 +33,20 @@ Infrastructure:
Length
:
3995
# m
Temp
:
290
# K
ResidualGas
:
pressure
:
4.0e-7
# Pa
mass
:
3.35e-27
# kg; Mass of H_2 (ref. 10)
polarizability
:
7.8e-31
# m^3
H2
:
pressure
:
4.0e-7
# Pa
mass
:
3.35e-27
# kg; Mass of H_2 (ref. 10)
polarizability
:
7.8e-31
# m^3
N2
:
pressure
:
1.33e-8
mass
:
4.65e-26
polarizability
:
1.79e-30
H2O
:
pressure
:
1.33e-8
mass
:
2.99e-26
polarizability
:
1.71e-30
TCS
:
# The presumably dominant effect of a thermal lens in the ITMs is an increased
...
...
This diff is collapsed.
Click to expand it.
gwinc/ifo/noises.py
+
54
−
0
View file @
71912107
...
...
@@ -777,3 +777,57 @@ class ExcessGas(nb.Noise):
# should be re-evaluated at some point.
dhdl_sqr
,
sinc_sqr
=
dhdl
(
self
.
freq
,
self
.
ifo
.
Infrastructure
.
Length
)
return
n
*
2
/
sinc_sqr
class
ExcessGasH2
(
nb
.
Noise
):
"""
Excess gas for H2
"""
style
=
dict
(
label
=
'
H2
'
,
color
=
'
xkcd:red orange
'
)
def
calc
(
self
):
cavity
=
arm_cavity
(
self
.
ifo
)
species
=
self
.
ifo
.
Infrastructure
.
ResidualGas
.
H2
n
=
noise
.
residualgas
.
residual_gas_cavity
(
self
.
freq
,
self
.
ifo
,
cavity
,
species
)
dhdl_sqr
,
sinc_sqr
=
dhdl
(
self
.
freq
,
self
.
ifo
.
Infrastructure
.
Length
)
return
n
*
2
/
sinc_sqr
class
ExcessGasN2
(
nb
.
Noise
):
"""
Excess gas for N2
"""
style
=
dict
(
label
=
'
N2
'
,
color
=
'
xkcd:emerald
'
)
def
calc
(
self
):
cavity
=
arm_cavity
(
self
.
ifo
)
species
=
self
.
ifo
.
Infrastructure
.
ResidualGas
.
N2
n
=
noise
.
residualgas
.
residual_gas_cavity
(
self
.
freq
,
self
.
ifo
,
cavity
,
species
)
dhdl_sqr
,
sinc_sqr
=
dhdl
(
self
.
freq
,
self
.
ifo
.
Infrastructure
.
Length
)
return
n
*
2
/
sinc_sqr
class
ExcessGasH2O
(
nb
.
Noise
):
"""
Excess gas for H2O
"""
style
=
dict
(
label
=
'
H2O
'
,
color
=
'
xkcd:water blue
'
)
def
calc
(
self
):
cavity
=
arm_cavity
(
self
.
ifo
)
species
=
self
.
ifo
.
Infrastructure
.
ResidualGas
.
H2O
n
=
noise
.
residualgas
.
residual_gas_cavity
(
self
.
freq
,
self
.
ifo
,
cavity
,
species
)
dhdl_sqr
,
sinc_sqr
=
dhdl
(
self
.
freq
,
self
.
ifo
.
Infrastructure
.
Length
)
return
n
*
2
/
sinc_sqr
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