rc('font',**{'family':'sans-serif','sans-serif':['Helvetica'], 'size':15})
gs=GridSpec(1,2, width_ratios=[1,1], wspace=0.1, hspace=0.12)
fig=plt.figure(figsize=(12,4))
ax2=fig.add_subplot(gs[0,0])
ax1=fig.add_subplot(gs[0,1])
ax2.plot(x,f(x), label='$\\mathrm{Empirical\ model}$')
ax2.scatter(Reb_S, ratios_eps, marker='s', color='k', s=50, label='$\\mathrm{Data}$')
ax2.axhline(3.75, color='orange', linestyle='--', label='$\\mathrm{Isotropy}$')
ax2.set_xlim(0,25)
ax2.set_ylim(1,4)
ax2.set_xlabel('$Re_b^S$')
ax2.set_title('$Re\, \\varepsilon / \\langle S^2 \\rangle$',size=16)
ax1.plot(x,g(x), label='$\\mathrm{Empirical\ model}$')
ax1.scatter(Reb_S, ratios_chi, marker='s', color='k', s=50, label='$\\mathrm{Data}$')
ax1.axhline(3, color='orange', linestyle='--', label='$\\mathrm{Isotropy}$')
ax1.set_xlim(0,25)
ax1.set_ylim(1,4)
ax1.set_xlabel('$Re_b^S$')
ax1.set_yticklabels('')
ax1.legend(loc='lower right')
ax1.set_title('$Re Pr Fr^2\\chi /\\langle (\partial \\rho/\partial z)^2 \\rangle $',size=16)
fig.show()