diff options
Diffstat (limited to 'mkplot_MdotR.py')
-rw-r--r-- | mkplot_MdotR.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mkplot_MdotR.py b/mkplot_MdotR.py new file mode 100644 index 0000000..749bc97 --- /dev/null +++ b/mkplot_MdotR.py @@ -0,0 +1,15 @@ +""" +Plot Mass Flow Profile -- Mdot(R). +""" + +import sys +from plots import plot_MdotR + + +# Parse Arguments +iout = 1 +if len(sys.argv) == 2: + iout = int(sys.argv[1]) + +# Make Plot +plot_MdotR(iout=iout, show=True, save=False) |