33 lines
1.4 KiB
Python
33 lines
1.4 KiB
Python
#from utils0import default_settings
|
|
#from plt_RAM import model_and_data_isi, model_cells
|
|
#from threefish.utils0 import default_settings, resave_small_files
|
|
#from plt_RAM import model_and_data, model_and_data_sheme, model_and_data_vertical2
|
|
# from threefish.utils0 import default_settings, resave_small_files
|
|
# from plt_RAM import model_and_data, model_and_data_sheme, model_and_data_vertical2
|
|
|
|
from threefish.plot_suscept import flowchart_core
|
|
# from threefish.utils0 import default_settings, resave_small_files
|
|
# from plt_RAM import model_and_data, model_and_data_sheme, model_and_data_vertical2
|
|
# from threefish.utils0 import default_settings, resave_small_files
|
|
# from plt_RAM import model_and_data, model_and_data_sheme, model_and_data_vertical2
|
|
import matplotlib.gridspec as gridspec
|
|
|
|
from plotstyle import plot_style
|
|
from threefish.core_load import save_visualization
|
|
from threefish.plot_suscept import flowchart_core
|
|
from threefish.defaults import default_figsize
|
|
|
|
|
|
def flowchart():
|
|
plot_style()
|
|
default_figsize(column=2, length=4.7) #5.3 5.8
|
|
grid_orig = gridspec.GridSpec(1, 1, wspace=0.15, bottom=0.07,
|
|
hspace=0.1, left=0.05, right=0.96,
|
|
top=0.9) # , height_ratios = [0.4,3]
|
|
flowchart_core(grid_orig[0]) # grid_sheme grid_lower[3]
|
|
|
|
save_visualization()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
flowchart() |