Skip to content

Commit 970a821

Browse files
authored
Merge pull request #136 from anshgupta1234/docs-typo
2 parents 7eef3a8 + 101d891 commit 970a821

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Test Suite
5959
if: matrix.debug == '--debug'
60-
run: /bin/bash mfc.sh test -j $(nproc) -a --debug
60+
run: /bin/bash mfc.sh test -j $(nproc) --debug
6161

6262
- name: Test Suite
6363
if: matrix.debug == '--no-debug'

docs/documentation/running.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,12 @@ in which $t_i$ is the starting time, $t_f$ is the final time, and $SF$ is the sa
142142

143143
- Run the post_process
144144
- There are several ways to do this. Keep in mind that, regardless of the .py file used, the post_process command will generate output files in the [`t_step_start`, `t_step_stop`] range, with `t_step_save` as the spacing between files.
145-
- One way is to set `t_step_stop` to the restarting point $t_s$ in `case.py`. Then, run:
145+
- One way is to set `t_step_stop` to the restarting point $t_s$ in `case.py`. Then, run the commands below. The first command will run on timesteps $[t_i, t_s]$. The second command will run on $[t_s, t_{f2}]$. Therefore, the whole range $[t_i, t_{f2}]$ will be post processed.
146146

147147
```console
148148
$ ./mfc.sh run case.py -t post_process
149149
$ ./mfc.sh run restart_case.py -t post_process
150-
```
151-
152-
- The first command will run on timesteps $[t_i, t_s]$. The second command will run on $[t_s, t_{f2}]$. Therefore, the whole range $[t_i, t_{f2}]$ will be post processed.
150+
```
153151

154152
We have provided an example `case.py` and `restart_case.py` in `/examples/1D_vacuum_restart/`. This simulation is a duplicate of the `1D_vacuum` case. It demonstrates stopping at timestep 7000, adding a new patch, and restarting the simulation. To test this code, run:
155153

0 commit comments

Comments
 (0)