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
bb777c1a
Commit
bb777c1a
authored
5 years ago
by
Watanyu Foosang
Committed by
Gamelin Alexis
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add a simple plot method to Bunch class
Phase space plotting method was added
parent
e6ad76ba
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
tracking/particles.py
+24
-2
24 additions, 2 deletions
tracking/particles.py
with
24 additions
and
2 deletions
tracking/particles.py
+
24
−
2
View file @
bb777c1a
...
...
@@ -4,13 +4,15 @@ Module where particles, bunches and beams are described as objects.
@author: Alexis Gamelin
@date: 11/03/2020
"""
import
numpy
as
np
import
pandas
as
pd
import
matplotlib.pyplot
as
plt
from
tracking.parallel
import
Mpi
import
seaborn
as
sns
from
scipy.constants
import
c
,
m_e
,
m_p
,
e
import
matplotlib.pyplot
as
plt
class
Particle
:
"""
...
...
@@ -319,6 +321,26 @@ class Bunch:
ax
=
fig
.
gca
()
ax
.
plot
(
bins
.
mid
,
profile
)
def
getplot
(
self
,
x
,
y
,
p_type
):
"""
Plot the parameters from particles object.
Parameters
----------
x: str, name from Bunch object to plot on hor. axis.
y: str, name from Bunch object to plot on ver. axis.
p_type: str,
"
sc
"
for a scatter plot or
"
j
"
for a joint plot.
"""
x
=
self
.
particles
[
x
]
y
=
self
.
particles
[
y
]
if
p_type
==
"
sc
"
:
plt
.
scatter
(
x
,
y
)
elif
p_type
==
"
j
"
:
sns
.
jointplot
(
x
,
y
,
kind
=
"
kde
"
)
class
Beam
:
"""
Define a Beam object composed of several Bunch objects.
...
...
@@ -578,4 +600,4 @@ class Beam:
\ 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