mirror of
https://github.com/vale981/master-thesis
synced 2025-03-05 10:01:43 -05:00
remove references to fs from figsaver
This commit is contained in:
parent
85398ad3d1
commit
3a4b6bb5c0
1 changed files with 3 additions and 3 deletions
|
@ -326,7 +326,7 @@ def plot_interaction_consistency(
|
|||
(diff.value < diff.σ).sum() / len(diff.value[0]) * 100
|
||||
)
|
||||
|
||||
_, _, (line, _) = fs.plot_with_σ(
|
||||
_, _, (line, _) = plot_with_σ(
|
||||
data.time[:],
|
||||
energy,
|
||||
ax=ax,
|
||||
|
@ -336,7 +336,7 @@ def plot_interaction_consistency(
|
|||
bath=0,
|
||||
)
|
||||
|
||||
fs.plot_with_σ(
|
||||
plot_with_σ(
|
||||
data.time[:],
|
||||
interaction_ref,
|
||||
ax=ax,
|
||||
|
@ -389,7 +389,7 @@ def plot_flow_bcf(models, label_fn=lambda model: f"$ω_c={model.ω_c:.2f}$", **k
|
|||
for model in models:
|
||||
with aux.get_data(model) as data:
|
||||
flow = model.bath_energy_flow(data, **kwargs)
|
||||
_, _, (line, _) = fs.plot_with_σ(
|
||||
_, _, (line, _) = plot_with_σ(
|
||||
data.time[:],
|
||||
flow,
|
||||
ax=ax,
|
||||
|
|
Loading…
Add table
Reference in a new issue