susceptibility1/flowchart.py
2024-06-17 14:01:06 +02:00

22 lines
640 B
Python

import matplotlib.gridspec as gridspec
from plotstyle import plot_style
from threefish.load import save_visualization
from threefish.RAM.plots 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()