Hi Nolan Dyck - thanks for the helpful setup instructions!
Re: "weird command-line printout...", I run Visual Studio 2015 on Win7, and
saw that sort of output when stepping under Visual Studio debugger.
For normal runs, I get a neat console-mode "progress bar" by adding the
following block near the end of pyfr/progress_bar.py:
# Write the progress bar and pad the remaining columns
if sys.platform == 'win32':
# NN: for windows console
sys.stdout.write('\b' * 80)
sys.stdout.write('\r')
sys.stdout.write(s)
sys.stdout.flush()
else:
sys.stderr.write('\x1b[2K\x1b[G')
sys.stderr.write(s)
sys.stderr.flush()
# Update the last render time
self._last_wallt = wallt
Nigel
On Saturday, July 1, 2017 at 6:39:58 AM UTC+10, Nolan Dyck wrote:
Hello PyFR community,
>
>
--
You received this message because you are subscribed to the Google Groups "PyFR
Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send an email to [email protected].
Visit this group at https://groups.google.com/group/pyfrmailinglist.
For more options, visit https://groups.google.com/d/optout.