Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LISA Instrument
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LISA Simulation
LISA Instrument
Commits
7eedc437
Commit
7eedc437
authored
2 years ago
by
Jean-Baptiste Bayle
Browse files
Options
Downloads
Patches
Plain Diff
Update TTL coefficient distributions
parent
a0faef3d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!140
Resolve "Update TTL coefficient levels"
Pipeline
#204115
passed
2 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lisainstrument/instrument.py
+16
-16
16 additions, 16 deletions
lisainstrument/instrument.py
with
16 additions
and
16 deletions
lisainstrument/instrument.py
+
16
−
16
View file @
7eedc437
...
...
@@ -160,8 +160,9 @@ class Instrument:
oms_fknees: dictionary of cutoff frequencies for OMS noise
ttl_coeffs: tuple (local_phi, distant_phi, local_eta, distant_eta) of dictionaries of
tilt-to-length coefficients on each MOSA [m/rad],
'
default
'
for a default set of
coefficients, or
'
random
'
to randomly generate a set of coefficients in a uniform
distribution [-2.3, 2.3] mm/rad
coefficients, or
'
random
'
to draw a set of coefficients from uniform distributions
(LISA-UKOB-INST-ML-0001-i2 LISA TTL STOP Model, summary table, 2.4 mm/rad and
2.2mm/rad for distant and local coefficients, respectively)
sc_jitter_asds: tuple of dictionaries of angular jitter amplitude spectral densities
for spacecraft, ordered as (yaw, pitch, roll) [rad/sqrt(Hz)]
sc_jitter_fknees: tuple of dictionaries of cutoff frequencies for spacecraft angular jitter,
...
...
@@ -347,29 +348,28 @@ class Instrument:
# Tilt-to-length
if
ttl_coeffs
==
'
default
'
:
# Default values drawn from uniform distribution [-2.3, 2.3] mm/rad
# for local and distant coeffs using `np.random.uniform()`
# Default values drawn from distributions set in 'random'
self
.
ttl_coeffs_local_phis
=
ForEachMOSA
({
'
12
'
:
-
3.79868389
e-0
4
,
'
23
'
:
1.27445665
e-0
3
,
'
31
'
:
-
8.19115231
e-0
4
,
'
13
'
:
-
5.03792762
e-0
5
,
'
32
'
:
8.2434840
7e-0
4
,
'
21
'
:
1.8077207
9e-0
3
,
'
12
'
:
2.005835
e-0
3
,
'
23
'
:
2.105403
e-0
4
,
'
31
'
:
-
1.815399
e-0
3
,
'
13
'
:
-
2.865050
e-0
4
,
'
32
'
:
-
1.98665
7e-0
3
,
'
21
'
:
9.36831
9e-0
4
,
})
self
.
ttl_coeffs_distant_phis
=
ForEachMOSA
({
'
12
'
:
-
1.
24812926
e-03
,
'
23
'
:
7.49010812
e-04
,
'
31
'
:
-
6.50959027
e-0
5
,
'
13
'
:
-
1.33360362
e-03
,
'
32
'
:
6.12997141
e-0
4
,
'
21
'
:
-
2.53955346
e-04
,
'
12
'
:
1.
623910
e-03
,
'
23
'
:
1.522873
e-04
,
'
31
'
:
-
1.842871
e-0
3
,
'
13
'
:
-
2.091585
e-03
,
'
32
'
:
1.300866
e-0
3
,
'
21
'
:
-
8.445374
e-04
,
})
self
.
ttl_coeffs_local_etas
=
ForEachMOSA
({
'
12
'
:
-
6.2611514
9e-0
4
,
'
23
'
:
-
2.13028857
e-0
4
,
'
31
'
:
6.62915985
e-0
4
,
'
13
'
:
5.46940002
e-04
,
'
32
'
:
-
9.50450080
e-0
4
,
'
21
'
:
2.72098575
e-04
,
'
12
'
:
-
1.67038
9e-0
3
,
'
23
'
:
1.460681
e-0
3
,
'
31
'
:
-
1.039064
e-0
3
,
'
13
'
:
1.640473
e-04
,
'
32
'
:
1.205353
e-0
3
,
'
21
'
:
-
9.205764
e-04
,
})
self
.
ttl_coeffs_distant_etas
=
ForEachMOSA
({
'
12
'
:
1.
8
76
59513
e-03
,
'
23
'
:
-
1.26813952
e-0
3
,
'
31
'
:
8.64052482
e-0
4
,
'
13
'
:
-
4.54433476
e-0
4
,
'
32
'
:
-
1.46396776
e-0
3
,
'
21
'
:
-
2.06925864
e-0
4
,
'
12
'
:
-
1.
0
76
470
e-03
,
'
23
'
:
5.228848
e-0
4
,
'
31
'
:
-
5.662766
e-0
5
,
'
13
'
:
1.960050
e-0
3
,
'
32
'
:
9.021890
e-0
4
,
'
21
'
:
1.908239
e-0
3
,
})
elif
ttl_coeffs
==
'
random
'
:
self
.
ttl_coeffs_local_phis
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
3
E-3
,
2.
3
E-3
))
self
.
ttl_coeffs_distant_phis
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
3
E-3
,
2.
3
E-3
))
self
.
ttl_coeffs_local_etas
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
3
E-3
,
2.
3
E-3
))
self
.
ttl_coeffs_distant_etas
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
3
E-3
,
2.
3
E-3
))
self
.
ttl_coeffs_local_phis
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
2
E-3
,
2.
2
E-3
))
self
.
ttl_coeffs_distant_phis
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
4
E-3
,
2.
4
E-3
))
self
.
ttl_coeffs_local_etas
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
2
E-3
,
2.
2
E-3
))
self
.
ttl_coeffs_distant_etas
=
ForEachMOSA
(
lambda
_
:
np
.
random
.
uniform
(
-
2.
4
E-3
,
2.
4
E-3
))
else
:
self
.
ttl_coeffs_local_phis
=
ForEachMOSA
(
ttl_coeffs
[
0
])
self
.
ttl_coeffs_distant_phis
=
ForEachMOSA
(
ttl_coeffs
[
1
])
...
...
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