3 import matplotlib.pyplot 
as plt
 
    7 sys.path.append(
'../../bin')
 
    8 from class_files.winnet_class 
import winnet
 
   11 fig  = plt.figure(figsize=(8,4))
 
   14 mrsn_example = winnet(
'.')
 
   17 mrsn_example.read_finab()
 
   19 mrsn_example.plot_final_isotopes(figure=fig,lower_limit=1e-5)
 
   24 fig2  = plt.figure(figsize=(8,4))
 
   27 mrsn_example.read_timescales()
 
   28 mrsn_example.plot_timescales(figure=fig2)
 
   32 ax2.set_xlim(3e-2,1e2)
 
   33 ax2.set_ylim(1e-11,1e13)
 
   35 fig.savefig(
"final_mass_fractions_isotopes_weakr_obergaulinger.pdf",bbox_inches=
"tight")
 
   36 fig2.savefig(
"timescales_weakr_obergaulinger.pdf",bbox_inches=
"tight")