Skip to content

Commit 1797038

Browse files
wilfonbahenryleberresbryngelson
authored
Add note about file_per_process requirements (#268)
Co-authored-by: Henry LE BERRE <[email protected]> Co-authored-by: Spencer Bryngelson <[email protected]>
1 parent d494833 commit 1797038

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

docs/documentation/case.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ print(json.dumps({
2020
}))
2121
```
2222

23-
Thus, you can run your case file with Python to view the computed case dictionary
24-
that will be processed by MFC when you run:
23+
Thus, you can run your case file with Python to view the computed case dictionary that will be processed by MFC when you run:
2524

2625
```console
2726
$ python3 my_case_file.py
@@ -376,18 +375,17 @@ The table lists formatted database output parameters. The parameters define vari
376375

377376
- `parallel_io` activates parallel input/output (I/O) of data files. It is highly recommended to activate this option in a parallel environment.
378377
With parallel I/O, MFC inputs and outputs a single file throughout pre-process, simulation, and post-process, regardless of the number of processors used.
379-
Parallel I/O enables the use of different number of processors in each of the processes (i.e. simulation data generated using 1000 processors can be post-processed using a single processor).
378+
Parallel I/O enables the use of different number of processors in each of the processes (i.e., simulation data generated using 1000 processors can be post-processed using a single processor).
380379

381-
- `file_per_process` deactivates shared file MPI-IO and activates file per process MPI-IO. The default behaviour is to use a shared file.
382-
File per process is usefull when running on 10's of thousands of ranks.
380+
- `file_per_process` deactivates shared file MPI-IO and activates file per process MPI-IO. The default behavior is to use a shared file. File per process is useful when running on 10's of thousands of ranks. If `file_per_process` is true, then pre_process, simulation, and post_process must be run with the same number of ranks.
383381

384382
- `cons_vars_wrt` and `prim_vars_wrt` activate output of conservative and primitive state variables into the database, respectively.
385383

386384
- `[variable's name]_wrt` activates output of the each specified variable into the database.
387385

388386
- `schlieren_alpha(i)` specifies the intensity of the numerical Schlieren of $i$-th component.
389387

390-
- `fd_order` specifies the order of finite difference scheme that is used to compute the vorticity from the velocity field and the numerical schlieren from the density field by an integer of 1, 2, and 4. `fd_order` $=$ 1, 2, and 4 correspond to the first, second, and fourth order finite difference schemes, respectively.
388+
- `fd_order` specifies the order of the finite difference scheme that is used to compute the vorticity from the velocity field and the numerical schlieren from the density field by an integer of 1, 2, and 4. `fd_order` $=$ 1, 2, and 4 correspond to the first, second, and fourth-order finite difference schemes, respectively.
391389

392390
- `probe_wrt` activates output of state variables at coordinates specified by `probe(i)%[x;y,z]`.
393391

@@ -412,7 +410,7 @@ The table lists acoustic source parameters. The parameters are optionally used t
412410

413411
- `num_mono` defines the total number of source planes by an integer.
414412

415-
- `Mono(i)%pulse` specifies the choice of the acoustic wave form generated from $i$-th source plane by an integer.
413+
- `Mono(i)%pulse` specifies the choice of the acoustic waveform generated from $i$-th source plane by an integer.
416414
`Mono(i)%pulse` $=$ 1, 2, and 3 correspond to sinusoidal wave, Gaussian wave, and square wave, respectively.
417415

418416
- `Mono(i)%npulse` defines the number of cycles of the acoustic wave generated from $i$-th source plane by an integer.

0 commit comments

Comments
 (0)