Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Climate Lab Test Stand
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
MSK-SW
Low-Level Radio Frequency
Climate Lab
Climate Lab Test Stand
Commits
94718c3e
Commit
94718c3e
authored
2 years ago
by
Martin Killenberg
Browse files
Options
Downloads
Patches
Plain Diff
added first plot phase/mag vs. temperature
parent
4b710899
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Python_script/analysis.py
+65
-0
65 additions, 0 deletions
Python_script/analysis.py
with
65 additions
and
0 deletions
Python_script/analysis.py
0 → 100644
+
65
−
0
View file @
94718c3e
import
pandas
as
pd
import
matplotlib.pyplot
as
plt
def
extract_stable_data
(
datafile
):
datapoint
=
{}
#df is a pandas data frame
df
=
pd
.
read_csv
(
datafile
)
#extract phase mean and variance for stable measurements (don't ask what loc means)
phases
=
df
.
loc
[
df
[
'
EQUILIBRIUM_INDICATOR
'
]
==
31
,
'
S21_PHASE
'
]
if
phases
.
size
==
0
:
return
None
datapoint
[
'
phase_mean
'
]
=
phases
.
mean
()
datapoint
[
'
phase_var
'
]
=
phases
.
var
()
magnitudes
=
df
.
loc
[
df
[
'
EQUILIBRIUM_INDICATOR
'
]
==
31
,
'
S21_MAGNITUDE
'
]
datapoint
[
'
magnitude_mean
'
]
=
magnitudes
.
mean
()
datapoint
[
'
magnitude_var
'
]
=
magnitudes
.
var
()
temperatures
=
df
.
loc
[
df
[
'
EQUILIBRIUM_INDICATOR
'
]
==
31
,
'
READBACK_TEMPERATURE
'
]
datapoint
[
'
temperature_mean
'
]
=
temperatures
.
mean
()
datapoint
[
'
temperature_var
'
]
=
temperatures
.
var
()
humidities
=
df
.
loc
[
df
[
'
EQUILIBRIUM_INDICATOR
'
]
==
31
,
'
READBACK_HUMIDITY
'
]
datapoint
[
'
humidity_mean
'
]
=
humidities
.
mean
()
datapoint
[
'
humidity_var
'
]
=
humidities
.
var
()
return
datapoint
#FIXME: Come up with a naming scheme
def
plot_temperature_sweep
(
start_temp
,
stop_temp
,
humidity
,
basename
):
temps
=
[]
phases
=
[]
phase_vars
=
[]
magnitudes
=
[]
magnitude_vars
=
[]
for
temp
in
range
(
start_temp
,
stop_temp
+
1
):
datafile
=
str
(
temp
)
+
'
deg_
'
+
str
(
humidity
)
+
'
rh_
'
+
basename
+
'
.csv
'
print
(
datafile
)
datapoint
=
extract_stable_data
(
datafile
)
if
datapoint
is
None
:
continue
temps
.
append
(
datapoint
[
'
temperature_mean
'
])
phases
.
append
(
datapoint
[
'
phase_mean
'
])
phase_vars
.
append
(
datapoint
[
'
phase_var
'
])
magnitudes
.
append
(
datapoint
[
'
magnitude_mean
'
])
magnitude_vars
.
append
(
datapoint
[
'
magnitude_var
'
])
fig
,
ax1
=
plt
.
subplots
()
ax1
.
errorbar
(
temps
,
phases
,
phase_vars
,
marker
=
'
+
'
,
linewidth
=
0
)
ax1
.
set_xlabel
(
'
temperature [deg C]
'
)
ax1
.
set_ylabel
(
'
S21 phase [deg]
'
,
color
=
'
blue
'
)
ax2
=
ax1
.
twinx
()
ax2
.
errorbar
(
temps
,
magnitudes
,
magnitude_vars
,
marker
=
'
x
'
,
color
=
'
red
'
,
linewidth
=
0
)
ax2
.
set_ylabel
(
'
S21 magnitude [lin]
'
,
color
=
'
red
'
)
fig
.
tight_layout
()
# otherwise the right y-label is slightly clipped
plt
.
show
()
if
__name__
==
'
__main__
'
:
plot_temperature_sweep
(
20
,
30
,
40
,
'
tempsweep1
'
)
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