From: Joshua Christopher Date: Tue, 8 May 2018 14:30:47 +0000 (-0600) Subject: Proofreading of Readme, added grid convergence figure, updated strong scaling figure... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31fe7d43b64145a1cbe8d289228bed77cb0b5094;p=code-gallery.git Proofreading of Readme, added grid convergence figure, updated strong scaling figure, added more docs to BraidFuncs.cc --- diff --git a/parallel_in_time/Readme.md b/parallel_in_time/Readme.md index c28e5c4..bdc5f7d 100644 --- a/parallel_in_time/Readme.md +++ b/parallel_in_time/Readme.md @@ -164,9 +164,9 @@ For MPI, parallel_in_time looks in standard installation folders only, for that A compile process of the parallel in time code may look like, mkdir build - cd build - BRAID_DIR=/path/to/braid/ cmake ../ - make + cd build + BRAID_DIR=/path/to/braid/ cmake ../ + make There is currently no option to install parallel_in_time anywhere. The binaries are generated in the bin folder, and tests are placed into the test folder. diff --git a/parallel_in_time/doc/results/gridConvergence.png b/parallel_in_time/doc/results/gridConvergence.png new file mode 100644 index 0000000..068f1af Binary files /dev/null and b/parallel_in_time/doc/results/gridConvergence.png differ diff --git a/parallel_in_time/doc/results/strongscaling.png b/parallel_in_time/doc/results/strongscaling.png index e056534..61c76f1 100644 Binary files a/parallel_in_time/doc/results/strongscaling.png and b/parallel_in_time/doc/results/strongscaling.png differ diff --git a/parallel_in_time/src/BraidFuncs.cc b/parallel_in_time/src/BraidFuncs.cc index 89f2b3a..2160fbc 100644 --- a/parallel_in_time/src/BraidFuncs.cc +++ b/parallel_in_time/src/BraidFuncs.cc @@ -30,6 +30,13 @@ int my_Step(braid_App app, return 0; } +/** + * In this function we initialize a vector at an arbitrary time. + * At this point we don't know anything about what the solution + * looks like, and we can really initialize to anything, so in + * this case use reinit to initialize the memory and set the + * values to zero. + */ int my_Init(braid_App app, double t,