Skip to content

Commit

Permalink
missing ), and include_labels arg for appendices
Browse files Browse the repository at this point in the history
  • Loading branch information
Jwely committed Feb 9, 2016
1 parent 7baf128 commit b666b6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/controler/build_tex_figs_by_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def build_tex_figs_by_run(run_id, include_cartesian=False, include_dynamic=False
z_location, av.velocity_fs, station_id)
tfp.add_scatter_plot('r_mesh', 'turb_visc_ettap_top', caption, scatter_width, create_kwargs=kwargs, write_unique=True)

kwargs = merge_dicts(log_kwargs, {"title": r"$\frac{d^2\bar{t}}{dr^2} + \frac{d}{dr}(\frac{\bar{t}}{r}$"})
kwargs = merge_dicts(log_kwargs, {"title": r"$\frac{d^2\bar{t}}{dr^2} + \frac{d}{dr}(\frac{\bar{t}}{r})$"})
caption = "Scatter plot of $\nu_T$ velocity gradient term vs radius at $z/c$={0}, $V_{{free}}$={1}, station {2}.".format(
z_location, av.velocity_fs, station_id)
tfp.add_scatter_plot('r_mesh', 'turb_visc_ettap_bot', caption, scatter_width, create_kwargs=kwargs, write_unique=True)
Expand Down Expand Up @@ -128,7 +128,7 @@ def build_tex_figs_by_run(run_id, include_cartesian=False, include_dynamic=False
tfp.add_dynamic_plot('ctke', caption, scatter_width, special_tag="005r", create_kwargs=dynamic_kwargs, write_unique=True)

# and write the appendix index file with all of the plots.
tfp.write()
tfp.write(include_labels=False)


def main():
Expand Down

0 comments on commit b666b6b

Please sign in to comment.