from __future__ import division, print_function import os if os.path.split(os.getcwd())[-1] == "Documents": print("Setting working directory to experiment root directory") os.chdir("../") %matplotlib inline from Modules.plotting import * # Set matplotlib parameters setpltparams(latex=False) # Plot contours of mean streamwise velocity plotwake("meanucont") plotlist = ["meanu_2tsrs", "stdu_2tsrs", "stdv_2tsrs"] plotwake(plotlist) plotperf()