Files
ovf/test/gvf_plot_poles.py

7 lines
299 B
Python
Raw Permalink Normal View History

2025-10-02 04:35:41 -04:00
from ovf.core.GVFManager import GVFManager
2025-10-20 11:50:10 -04:00
# gvf = GVFManager.load("outputs/mtee_gvf.pkl")
gvf = GVFManager()
gvf.load_from_datasets("examples/data/mtee.json",npoles_cplx=2,max_points=20)
gvf.save("outputs/mtee_gvf.pkl")
2025-10-02 04:35:41 -04:00
gvf.plot_poles("outputs/mtee_poles",degree=3,geometry_1="L1",geometry_2="L2")