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
c4ade3cb
Commit
c4ade3cb
authored
7 years ago
by
Jameson Graef Rollins
Browse files
Options
Downloads
Patches
Plain Diff
simplify gwinc() to just take frequency vector as first required argument
parent
3350be40
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1
code cleanup, IFO as yaml, CLI, test
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gwinc/__main__.py
+8
-6
8 additions, 6 deletions
gwinc/__main__.py
gwinc/gwinc.py
+3
-11
3 additions, 11 deletions
gwinc/gwinc.py
with
11 additions
and
17 deletions
gwinc/__main__.py
+
8
−
6
View file @
c4ade3cb
...
...
@@ -27,6 +27,8 @@ parser.add_argument('--flo', '-fl', default=FLO,
help
=
"
lower frequency bound in Hz [{}]
"
.
format
(
FLO
))
parser
.
add_argument
(
'
--fhi
'
,
'
--fh
'
,
default
=
FHI
,
help
=
"
upper frequency bound in Hz [{}]
"
.
format
(
FHI
))
parser
.
add_argument
(
'
--npoints
'
,
'
-n
'
,
default
=
NPOINTS
,
help
=
"
number of frequency points [{}]
"
.
format
(
NPOINTS
))
parser
.
add_argument
(
'
--title
'
,
'
-t
'
,
help
=
"
plot title
"
)
parser
.
add_argument
(
'
--matlab
'
,
'
-m
'
,
action
=
'
store_true
'
,
...
...
@@ -52,10 +54,11 @@ def main():
print
(
'
{:50} {}
'
.
format
(
k
,
v
))
return
freq
=
np
.
logspace
(
np
.
log10
(
args
.
flo
),
np
.
log10
(
args
.
fhi
),
args
.
npoints
)
if
args
.
matlab
:
from
.gwinc_matlab
import
gwinc_matlab
def
gwinc
(
flo
,
fhi
,
ifo
,
**
kwargs
):
freq
=
np
.
logspace
(
np
.
log10
(
flo
),
np
.
log10
(
fhi
),
NPOINTS
)
def
gwinc
(
freq
,
ifo
,
**
kwargs
):
score
,
noises
,
ifo
=
gwinc_matlab
(
freq
,
ifo
,
**
kwargs
)
plot_noise
(
noises
)
# FIXME: weird import issue requires doing this here instead of
...
...
@@ -66,8 +69,7 @@ def main():
if
args
.
interactive
:
ipshell
=
InteractiveShellEmbed
(
user_ns
=
{
'
gwinc
'
:
gwinc
,
'
flo
'
:
args
.
flo
,
'
fhi
'
:
args
.
fhi
,
'
freq
'
:
freq
,
'
ifo
'
:
ifo
,
},
banner1
=
'''
...
...
@@ -79,12 +81,12 @@ You may interact with plot using "plt." methods, e.g.:
>>>
plt
.
savefig
(
"
foo.pdf
"
)
'''
)
ipshell
.
enable_pylab
()
ipshell
.
run_code
(
"
output = gwinc(f
lo, fhi
, ifo, fig=True)
"
)
ipshell
.
run_code
(
"
output = gwinc(f
req
, ifo, fig=True)
"
)
if
args
.
title
:
ipshell
.
run_code
(
"
plt.title(
'
{}
'
)
"
.
format
(
args
.
title
))
ipshell
()
else
:
gwinc
(
args
.
flo
,
args
.
fhi
,
ifo
,
fig
=
True
)
gwinc
(
freq
,
ifo
,
fig
=
True
)
if
args
.
title
:
plt
.
title
(
args
.
title
)
if
args
.
save
:
...
...
This diff is collapsed.
Click to expand it.
gwinc/gwinc.py
+
3
−
11
View file @
c4ade3cb
...
...
@@ -96,17 +96,15 @@ def noise_calc(ifo, f):
return
noises
def
gwinc
(
flo
,
fhi
,
ifoin
,
source
=
None
,
fig
=
False
):
def
gwinc
(
f
,
ifoin
,
source
=
None
,
fig
=
False
):
"""
Calculates strain noise due to various noise sources, for a
specified set of interferometer parameters. Also evaluates the
sensitivity of the interferometer to the detection of several potential
gravitational wave sources. Usage:
VARARGOUT = GWINC(F
LO,FHI
,IFO,SOURCE,VARARGIN)
VARARGOUT = GWINC(F,IFO,SOURCE,VARARGIN)
FLO, FHI = minimum and maximum frequencies between which
calculations are made
F = frequency array
IFO = structure containing interferometer parameters
SOURCE = structure containing source parameters
...
...
@@ -154,12 +152,6 @@ def gwinc(flo, fhi, ifoin, source=None, fig=False):
pass
#warning(['Thermal lensing limits input power to ' num2str(pbs/prfactor, 3) ' W']);
# Frequency grid on which everything is calculated
if
'
freq
'
in
ifo
.
__dict__
:
f
=
ifo
.
freq
else
:
f
=
np
.
logspace
(
log10
(
flo
),
log10
(
fhi
),
250
)
noises
=
noise_calc
(
ifo
,
f
)
n
=
noises
[
'
Total
'
]
...
...
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