Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
LOFAR2.0
tango
Commits
1514898a
Commit
1514898a
authored
3 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-554
: Explained and simplified test for distance test
parent
e11237ba
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tangostationcontrol/tangostationcontrol/test/beam/test_delays.py
+12
-14
12 additions, 14 deletions
...ationcontrol/tangostationcontrol/test/beam/test_delays.py
with
12 additions
and
14 deletions
tangostationcontrol/tangostationcontrol/test/beam/test_delays.py
+
12
−
14
View file @
1514898a
...
@@ -75,29 +75,27 @@ class TestDelays(base.TestCase):
...
@@ -75,29 +75,27 @@ class TestDelays(base.TestCase):
def
test_light_second_delay
(
self
):
def
test_light_second_delay
(
self
):
"""
"""
This test measures
the delay
between 2 positions 1 light second apart.
This test measures
whether the distance
between 2 positions
is 0.
1 light second apart.
"""
"""
# # create a frame tied to the reference position
reference_itrf
=
[
3826577.066
,
461022.948
,
5064892.786
]
# CS002LBA, in ITRF2005 epoch 2012.5
d
=
delay_calculator
(
reference_itrf
)
d
=
delay_calculator
(
reference_itrf
)
# set the antenna position identical to the reference position
# set the antenna position 0.1 lightsecond in the Z direction of the ITRF,
# which is aligned with the North Pole, see
# https://en.wikipedia.org/wiki/Earth-centered,_Earth-fixed_coordinate_system#Structure
speed_of_light
=
299792458.0
speed_of_light
=
299792458.0
antenna_itrf
=
[[
reference_itrf
[
0
],
reference_itrf
[
1
]
-
speed_of_light
,
reference_itrf
[
2
]]]
# CS001LBA, in ITRF2005 epoch 2012.5
antenna_itrf
=
[[
0
,
0
,
0.1
*
speed_of_light
]]
# # set the timestamp to solve for
# We need to point along the same direction in order to have the delay reflect the distance.
timestamp
=
datetime
.
datetime
(
2000
,
1
,
1
,
0
,
0
,
0
)
#
# We point at the North Celestial Pole in J2000, which is always at 90 degrees declanation,
# see https://gssc.esa.int/navipedia/index.php/Conventional_Celestial_Reference_System
timestamp
=
datetime
.
datetime
(
2022
,
3
,
1
,
0
,
0
,
0
)
# timestamp does not actually matter, but casacore doesn't know that.
d
.
set_measure_time
(
timestamp
)
d
.
set_measure_time
(
timestamp
)
direction
=
"
J2000
"
,
"
0deg
"
,
"
90deg
"
# compute the delays for an antennas w.r.t. the reference position
# # obtain the direction vector for a specific pointing
direction
=
"
J2000
"
,
"
0deg
"
,
"
0deg
"
# calculate the delays based on the set reference position, the set time and now the set direction and antenna positions.
# calculate the delays based on the set reference position, the set time and now the set direction and antenna positions.
delays
=
d
.
convert
(
direction
,
antenna_itrf
)
delays
=
d
.
convert
(
direction
,
antenna_itrf
)
self
.
assertAlmostEqual
(
0.1
,
delays
[
0
],
6
,
f
"
delays[0] =
{
delays
[
0
]
}
"
)
self
.
assertTrue
(
0.98
<=
delays
[
0
]
<=
1.02
,
f
"
delays[0] =
{
delays
[
0
]
}
"
)
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