Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
STITCH
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Pascal Engeler
STITCH
Commits
3ed45714
Commit
3ed45714
authored
7 months ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Fixed output units
parent
fc29e2ab
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
stitch_project/api/Stitch/Stitchtility.py
+6
-3
6 additions, 3 deletions
stitch_project/api/Stitch/Stitchtility.py
with
6 additions
and
3 deletions
stitch_project/api/Stitch/Stitchtility.py
+
6
−
3
View file @
3ed45714
...
...
@@ -41,10 +41,13 @@ def dataToAmpsPhase(data):
if
sindata
[
i
]
&
(
2
**
63
)
!=
0
:
sindata
[
i
]
=
sindata
[
i
]
-
2
**
64
amps
=
[
2
**-
15
*
np
.
sqrt
(
2.
*
cosdata
[
i
]
**
2
+
2.
*
sindata
[
i
]
**
2
)
/
numdata
[
i
]
for
i
in
range
(
len
(
numdata
))]
#probably pm
#do 2**-18 to bring sin,cos to [-1,1]
#a 2**-6 already done by LockInAccumulator output, so do additional 2**6 to get to pm
#now do 10**-3 to get to nm
amps
=
[
2
**-
12
*
10
**-
3
*
np
.
sqrt
(
2.
*
cosdata
[
i
]
**
2
+
2.
*
sindata
[
i
]
**
2
)
/
numdata
[
i
]
for
i
in
range
(
len
(
numdata
))]
#nm
angles
=
[
2.
*
np
.
arctan
(
sindata
[
i
]
/
cosdata
[
i
])
for
i
in
range
(
len
(
numdata
))]
angles
=
np
.
angle
(
np
.
array
(
cosdata
)
+
1j
*
np
.
array
(
sindata
))
angles_unwr
=
np
.
unwrap
(
angles
)
cosportion
=
[
2
**-
1
5
*
np
.
abs
(
np
.
sqrt
(
2
)
*
cosdata
[
i
])
/
numdata
[
i
]
for
i
in
range
(
len
(
amps
))]
sinportion
=
[
2
**-
1
5
*
np
.
abs
(
np
.
sqrt
(
2
)
*
sindata
[
i
])
/
numdata
[
i
]
for
i
in
range
(
len
(
amps
))]
cosportion
=
[
2
**-
1
2
*
10
**-
3
*
np
.
abs
(
np
.
sqrt
(
2
)
*
cosdata
[
i
])
/
numdata
[
i
]
for
i
in
range
(
len
(
amps
))]
sinportion
=
[
2
**-
1
2
*
10
**-
3
*
np
.
abs
(
np
.
sqrt
(
2
)
*
sindata
[
i
])
/
numdata
[
i
]
for
i
in
range
(
len
(
amps
))]
return
np
.
array
(
amps
),
[
np
.
array
(
angles
),
np
.
array
(
angles_unwr
)],
np
.
array
(
cosportion
),
np
.
array
(
sinportion
),
np
.
array
(
numdata
)
\ No newline at end of file
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