Skip to content

Commit dd1fce1

Browse files
author
MFC Action
committed
Docs @ e521a8a
1 parent 3ba877e commit dd1fce1

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

documentation/md_case.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,9 @@ <h2><a class="anchor" id="autotoc_md6"></a>
228228
<tr class="markdownTableRowOdd">
229229
<td class="markdownTableBodyRight"><code>t_step_stop</code> </td><td class="markdownTableBodyCenter">Integer </td><td class="markdownTableBodyLeft">Simulation stopping time step </td></tr>
230230
<tr class="markdownTableRowEven">
231-
<td class="markdownTableBodyRight"><code>t_step_save</code> </td><td class="markdownTableBodyCenter">Integer </td><td class="markdownTableBodyLeft">Frequency to output data </td></tr>
231+
<td class="markdownTableBodyRight"><code>t_step_save</code> </td><td class="markdownTableBodyCenter">Integer </td><td class="markdownTableBodyLeft">Frequency to output data </td></tr>
232+
<tr class="markdownTableRowOdd">
233+
<td class="markdownTableBodyRight"><code>t_step_print</code> </td><td class="markdownTableBodyCenter">Integer </td><td class="markdownTableBodyLeft">Frequency to print the current step number to standard output (default 1) </td></tr>
232234
</table>
233235
<p>The parameters define the boundaries of the spatial and temporal domains, and their discretization that are used in simulation.</p>
234236
<ul>

documentation/md_getting-started.html

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -215,19 +215,13 @@ <h1><a class="anchor" id="autotoc_md65"></a>
215215
<div class="fragment"><div class="line">touch ~/.bash_profile</div>
216216
<div class="line">open ~/.bash_profile</div>
217217
</div><!-- fragment --><p>An editor should open. Please paste the following lines into it before saving the file. If you wish to use a version of GNU's GCC other than 13, modify the first assignment. These lines ensure that LLVM's Clang, and Apple's modified version of GCC, won't be used to compile MFC. Further reading on <code>open-mpi</code> incompatibility with <code>clang</code>-based <code>gcc</code> on macOS: <a href="https://stackoverflow.com/questions/27930481/how-to-build-openmpi-with-homebrew-and-gcc-4-9">here</a>. We do <em>not</em> support <code>clang</code> due to conflicts with the Silo dependency.</p>
218-
<div class="fragment"><div class="line"># === MFC MPI Installation ===</div>
219-
<div class="line">export MFC_GCC_VER=13</div>
220-
<div class="line">export OMPI_MPICC=gcc-$MFC_GCC_VER</div>
221-
<div class="line">export OMPI_CXX=g++-$MFC_GCC_VER</div>
222-
<div class="line">export OMPI_FC=gfortran-$MFC_GCC_VER</div>
218+
<div class="fragment"><div class="line">export MFC_GCC_VER=13</div>
223219
<div class="line">export CC=gcc-$MFC_GCC_VER</div>
224220
<div class="line">export CXX=g++-$MFC_GCC_VER</div>
225221
<div class="line">export FC=gfortran-$MFC_GCC_VER</div>
226-
<div class="line"># === MFC MPI Installation ===</div>
227222
</div><!-- fragment --><p><b>Close the open editor and terminal window</b>. Open a <b>new terminal</b> window before executing the commands below.</p>
228-
<div class="fragment"><div class="line">brew install wget make python make cmake coreutils gcc@$MFC_GCC_VER</div>
229-
<div class="line">HOMEBREW_MAKE_JOBS=$(nproc) brew install --cc=gcc-$MFC_GCC_VER --verbose --build-from-source open-mpi</div>
230-
</div><!-- fragment --><p>They will download the dependencies MFC requires to build itself. <code>open-mpi</code> will be compiled from source, using the version of GCC we specified above with the environment variables <code>HOMEBREW_CC</code> and <code>HOMEBREW_CXX</code>. Building this package might take a while.</p>
223+
<div class="fragment"><div class="line">brew install wget make python make cmake coreutils gcc@$MFC_GCC_VER mpich</div>
224+
</div><!-- fragment --><p>They will download the dependencies MFC requires to build itself.</p>
231225
<p></p>
232226
</details>
233227
<details >

0 commit comments

Comments
 (0)