Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
ToolBox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
SCS
ToolBox
Commits
ccc14a8b
Commit
ccc14a8b
authored
5 years ago
by
Laurent Mercadier
Browse files
Options
Downloads
Patches
Plain Diff
Improved repRate() function
parent
e4ea7f80
No related branches found
No related tags found
1 merge request
!77
Improved repRate() function
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bunch_pattern.py
+37
-9
37 additions, 9 deletions
bunch_pattern.py
with
37 additions
and
9 deletions
bunch_pattern.py
+
37
−
9
View file @
ccc14a8b
...
@@ -9,6 +9,9 @@
...
@@ -9,6 +9,9 @@
import
numpy
as
np
import
numpy
as
np
import
xarray
as
xr
import
xarray
as
xr
import
ToolBox
as
tb
import
ToolBox
as
tb
import
os
from
extra_data.read_machinery
import
find_proposal
from
extra_data
import
RunDirectory
def
extractBunchPattern
(
bp_table
=
None
,
key
=
'
sase3
'
,
runDir
=
None
):
def
extractBunchPattern
(
bp_table
=
None
,
key
=
'
sase3
'
,
runDir
=
None
):
'''
generate the bunch pattern and number of pulses of a source directly from the
'''
generate the bunch pattern and number of pulses of a source directly from the
...
@@ -161,24 +164,49 @@ def pulsePatternInfo(data, plot=False):
...
@@ -161,24 +164,49 @@ def pulsePatternInfo(data, plot=False):
plt
.
tight_layout
()
plt
.
tight_layout
()
def
repRate
(
data
,
sase
=
'
sase3
'
):
def
repRate
(
data
=
None
,
runNB
=
None
,
proposalNB
=
None
,
key
=
'
sase3
'
):
'''
Calculates the pulse repetition rate (in kHz) in sase
'''
Calculates the pulse repetition rate (in kHz) in sase
according to the bunch pattern and assuming a grid of
according to the bunch pattern and assuming a grid of
4.5 MHz.
4.5 MHz.
Inputs:
Inputs:
data: xarray Dataset containing pulse pattern
data: xarray Dataset containing pulse pattern, needed if runNB is none
sase: sase in which the repetition rate is
runNB: int or str, run number. Needed if data is None
calculated (1,2 or 3)
proposal: int or str, proposal where to find the run. Needed if data is None
key: str in [sase1, sase2, sase3, scs_ppl], source for which the
repetition rate is calculated
Output:
Output:
f: repetition rate in kHz
f: repetition rate in kHz
'''
'''
assert
sase
in
data
,
'
key
"
{}
"
not found in data!
'
.
format
(
sase
)
if
runNB
is
None
and
data
is
None
:
sase
=
data
[
sase
].
where
(
data
[
'
npulses_{}
'
.
format
(
sase
)]
>
1
,
raise
ValueError
(
'
Please provide either the runNB + proposal or the data argument.
'
)
drop
=
True
).
values
if
runNB
is
not
None
and
proposalNB
is
None
:
if
len
(
sase
)
==
0
:
raise
ValueError
(
'
Proposal is missing.
'
)
if
runNB
is
not
None
:
if
isinstance
(
runNB
,
int
):
runNB
=
'
r{:04d}
'
.
format
(
runNB
)
if
isinstance
(
proposalNB
,
int
):
proposalNB
=
'
p{:06d}
'
.
format
(
proposalNB
)
runFolder
=
os
.
path
.
join
(
find_proposal
(
proposalNB
),
'
raw
'
,
runNB
)
runDir
=
RunDirectory
(
runFolder
)
bp_mnemo
=
tb
.
mnemonics
[
'
bunchPatternTable
'
]
if
bp_mnemo
[
'
source
'
]
not
in
runDir
.
all_sources
:
raise
ValueError
(
'
Source {} not found in run
'
.
format
(
bp_mnemo
[
'
source
'
]))
else
:
bp_table
=
runDir
.
get_array
(
bp_mnemo
[
'
source
'
],
bp_mnemo
[
'
key
'
],
extra_dims
=
bp_mnemo
[
'
dim
'
])
a
,
b
,
mask
=
extractBunchPattern
(
bp_table
,
key
=
key
)
else
:
if
key
not
in
[
'
sase1
'
,
'
sase3
'
]:
a
,
b
,
mask
=
extractBunchPattern
(
key
=
key
,
runDir
=
data
.
attrs
[
'
run
'
])
else
:
a
=
data
[
key
]
b
=
data
[
f
'
npulses_
{
key
}
'
]
a
=
a
.
where
(
b
>
1
,
drop
=
True
).
values
if
len
(
a
)
==
0
:
print
(
'
Not enough pulses to extract repetition rate
'
)
print
(
'
Not enough pulses to extract repetition rate
'
)
return
0
return
0
f
=
1
/
((
sase
[
0
,
1
]
-
sase
[
0
,
0
])
*
12e-3
/
54.1666667
)
f
=
1
/
((
a
[
0
,
1
]
-
a
[
0
,
0
])
*
12e-3
/
54.1666667
)
return
f
return
f
def
sortBAMdata
(
data
,
key
=
'
sase3
'
):
def
sortBAMdata
(
data
,
key
=
'
sase3
'
):
...
...
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