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
c348b9e5
There was a problem fetching the pipeline summary.
Commit
c348b9e5
authored
6 years ago
by
Jameson Graef Rollins
Browse files
Options
Downloads
Patches
Plain Diff
order noises in output noise dict
parent
1922e581
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwinc/gwinc.py
+6
-5
6 additions, 5 deletions
gwinc/gwinc.py
with
6 additions
and
5 deletions
gwinc/gwinc.py
+
6
−
5
View file @
c348b9e5
...
...
@@ -2,6 +2,7 @@ from __future__ import division
import
copy
import
numpy
as
np
from
numpy
import
log10
,
pi
,
sqrt
from
collections
import
OrderedDict
import
logging
from
.precomp
import
precompIFO
...
...
@@ -41,17 +42,17 @@ def noise_calc(ifo, f):
##############################
noises
=
{}
noises
=
OrderedDict
()
noises
[
'
Quantum Vacuum
'
]
=
noise
.
quantum
.
shotrad
(
f
,
ifo
)
noises
[
'
Suspension Thermal
'
]
=
noise
.
suspensionthermal
.
susptherm
(
f
,
ifo
)
noises
[
'
Excess Gas
'
]
=
noise
.
residualgas
.
gas
(
f
,
ifo
)
noises
[
'
Substrate Brownian
'
]
=
noise
.
substratethermal
.
subbrownian
(
f
,
ifo
)
noises
[
'
Coating Brownian
'
]
=
noise
.
coatingthermal
.
coatbrownian
(
f
,
ifo
)
noises
[
'
Coating Thermo-Optic
'
]
=
noise
.
coatingthermal
.
thermooptic
(
f
,
ifo
)
noises
[
'
Substrate Thermo-Elastic
'
]
=
noise
.
substratethermal
.
subtherm
(
f
,
ifo
)
noises
[
'
Newtonian Gravity
'
]
=
noise
.
newtonian
.
gravg
(
f
,
ifo
)
noises
[
'
Substrate Brownian
'
]
=
noise
.
substratethermal
.
subbrownian
(
f
,
ifo
)
noises
[
'
Seismic
'
]
=
noise
.
seismic
.
seismic
(
f
,
ifo
)[
0
]
noises
[
'
Coating Thermo-Optic
'
]
=
noise
.
coatingthermal
.
thermooptic
(
f
,
ifo
)
noises
[
'
Newtonian Gravity
'
]
=
noise
.
newtonian
.
gravg
(
f
,
ifo
)
noises
[
'
Excess Gas
'
]
=
noise
.
residualgas
.
gas
(
f
,
ifo
)
# calc semiconductor noise sources
if
'
isSemiConductor
'
in
ifo
.
Materials
.
Substrate
and
ifo
.
Materials
.
Substrate
.
isSemiConductor
:
...
...
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