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
a2b2fa9a
Commit
a2b2fa9a
authored
2 years ago
by
Stefano Di Frischia
Browse files
Options
Downloads
Plain Diff
Merge branch '
L2SS-643
-calculate-beamlet-bfweights' into 'master'
Resolve
L2SS-643
"Calculate beamlet bfweights" Closes
L2SS-643
See merge request
!294
parents
e6e421ed
4f9e6603
No related branches found
Branches containing commit
No related tags found
1 merge request
!294
Resolve L2SS-643 "Calculate beamlet bfweights"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
+27
-3
27 additions, 3 deletions
...stationcontrol/tangostationcontrol/devices/sdp/beamlet.py
with
27 additions
and
3 deletions
tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
+
27
−
3
View file @
a2b2fa9a
...
...
@@ -8,10 +8,10 @@
"""
# PyTango imports
from
tango.server
import
device_property
from
tango
import
AttrWriteType
# Additional import
from
tango.server
import
device_property
,
command
from
tango
import
AttrWriteType
,
DevVarFloatArray
,
DevVarULongArray
# Additional import
from
tangostationcontrol.common.entrypoint
import
entry
from
tangostationcontrol.clients.attribute_wrapper
import
attribute_wrapper
from
tangostationcontrol.devices.opcua_device
import
opcua_device
...
...
@@ -140,9 +140,33 @@ class Beamlet(opcua_device):
# Overloaded functions
# --------
# --------
# internal functions
# --------
def
_calculate_bf_weights
(
self
,
phases
:
numpy
.
ndarray
):
"""
Helper function that converts a difference in phase (in radiants)
to a FPGA weight (in complex number)
"""
# Convert array values in complex numbers
unit
=
numpy
.
power
(
2
,
14
)
real
=
numpy
.
array
(
unit
*
numpy
.
cos
(
phases
),
dtype
=
numpy
.
short
)
imag
=
numpy
.
array
(
unit
*
numpy
.
sin
(
phases
),
dtype
=
numpy
.
short
)
# join 16 bits of imaginary part (MSB) with 16 bits of real part (LSB)
bf_weights
=
numpy
.
array
(
numpy
.
frombuffer
(
b
''
.
join
([
imag
,
real
]),
dtype
=
numpy
.
uint32
)
)
return
bf_weights
# --------
# Commands
# --------
@command
(
dtype_in
=
DevVarFloatArray
,
dtype_out
=
DevVarULongArray
)
def
calculate_bf_weights
(
self
,
phases
:
numpy
.
ndarray
):
"""
converts a difference in phase (in radiants) to a FPGA weight (in complex number)
"""
# Calculate the FPGA weight array
bf_weights
=
self
.
_calculate_bf_weights
(
phases
)
return
bf_weights
# ----------
# Run server
...
...
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