Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mbtrack2
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
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
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
PA
Collective Effects
mbtrack2
Commits
e0afa488
Commit
e0afa488
authored
2 years ago
by
Alexis GAMELIN
Browse files
Options
Downloads
Patches
Plain Diff
[Fix] read_ABCI
Fix transverse wake sign and add Wydip component which was missing.
parent
eedde804
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mbtrack2/utilities/read_impedance.py
+13
-5
13 additions, 5 deletions
mbtrack2/utilities/read_impedance.py
with
13 additions
and
5 deletions
mbtrack2/utilities/read_impedance.py
+
13
−
5
View file @
e0afa488
...
...
@@ -161,9 +161,9 @@ def read_ABCI(file, azimuthal=False):
Path to ABCI .pot file.
azimuthal : bool, optional
If True, the transverse wake potential and impedance is loaded from the
"
AZIMUTHAL
"
data.
In that case, a -1 factor is applied on the wake to
agree with mbtrack2 sign convention.
If False, it is loaded from the
"
TRANSVERSE
"
data
.
"
AZIMUTHAL
"
data.
If False, it is loaded from the
"
TRANSVERSE
"
data. In that case, a -1
factor is applied on the wake to agree with mbtrack2 sign convention
.
The default is False.
Returns
...
...
@@ -202,6 +202,8 @@ def read_ABCI(file, azimuthal=False):
names
=
[
"
Time
"
,
"
Wake
"
])
df
[
"
Time
"
]
=
df
[
"
Time
"
]
/
c
df
[
"
Wake
"
]
=
df
[
"
Wake
"
]
*
1e-12
if
(
not
azimuthal
)
and
(
file_type
[
-
3
:]
==
"
dip
"
):
df
[
"
Wake
"
]
=
df
[
"
Wake
"
]
*
-
1
df
.
set_index
(
"
Time
"
,
inplace
=
True
)
result
=
WakeFunction
(
variable
=
df
.
index
,
function
=
df
[
"
Wake
"
],
...
...
@@ -250,9 +252,15 @@ def read_ABCI(file, azimuthal=False):
tmp
.
writelines
(
body
)
tmp
.
flush
()
tmp
.
close
()
comp
=
_read_temp
(
tmp
.
name
,
abci_dict
[
header
[
0
]])
if
abci_dict
[
header
[
0
]][
1
:]
==
"
long
"
:
comp
=
_read_temp
(
tmp
.
name
,
abci_dict
[
header
[
0
]])
wake_list
.
append
(
comp
)
else
:
comp_x
=
_read_temp
(
tmp
.
name
,
"
Wxdip
"
)
comp_y
=
_read_temp
(
tmp
.
name
,
"
Wydip
"
)
wake_list
.
append
(
comp_x
)
wake_list
.
append
(
comp_y
)
os
.
unlink
(
tmp
.
name
)
wake_list
.
append
(
comp
)
elif
(
abci_dict
[
header
[
0
]][
0
]
==
"
Z
"
)
and
(
abci_dict
[
header
[
0
]][
-
2
:]
==
"
re
"
):
tmp1
=
NamedTemporaryFile
(
delete
=
False
,
mode
=
"
w+
"
)
tmp1
.
writelines
(
body
)
...
...
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