Skip to content
Snippets Groups Projects
Commit d6f87ade authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

Add save and load function to ImpedanceModel

parent 231913a3
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ Module where the ImpedanceModel class is defined. ...@@ -5,6 +5,7 @@ Module where the ImpedanceModel class is defined.
import pandas as pd import pandas as pd
import numpy as np import numpy as np
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import pickle
from scipy.integrate import trapz from scipy.integrate import trapz
from scipy.interpolate import interp1d from scipy.interpolate import interp1d
from mpl_toolkits.axes_grid1.inset_locator import inset_axes from mpl_toolkits.axes_grid1.inset_locator import inset_axes
...@@ -61,6 +62,10 @@ class ImpedanceModel(Element): ...@@ -61,6 +62,10 @@ class ImpedanceModel(Element):
Sum all the elements with the same name in the model into sum_name. Sum all the elements with the same name in the model into sum_name.
plot_area(Z_type="Zlong", component="real", sigma=None, attr_list=None) plot_area(Z_type="Zlong", component="real", sigma=None, attr_list=None)
Plot the contributions of different kind of WakeFields. Plot the contributions of different kind of WakeFields.
save(file)
Save impedance model to file.
load(file)
Load impedance model from file.
""" """
def __init__(self, ring, wakefield_list=None, wakefiled_positions=None): def __init__(self, ring, wakefield_list=None, wakefiled_positions=None):
...@@ -522,3 +527,45 @@ class ImpedanceModel(Element): ...@@ -522,3 +527,45 @@ class ImpedanceModel(Element):
ax.set_ylabel("Power loss [W]") ax.set_ylabel("Power loss [W]")
return pf0, power_loss return pf0, power_loss
def save(self, file):
"""
Save impedance model to file.
Parameters
----------
file : str
File where the impedance model is saved.
Returns
-------
None.
"""
to_save = {"wakefields":self.wakefields,
"positions":self.positions}
with open(file,"wb") as f:
pickle.dump(to_save, f)
def load(self, file):
"""
Load impedance model from file.
Parameters
----------
file : str
File where the impedance model is saved.
Returns
-------
None.
"""
with open(file, 'rb') as f:
to_load = pickle.load(f)
self.wakefields = to_load["wakefields"]
self.positions = to_load["positions"]
self.sum_elements()
self.sum_by_name_all()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment