Skip to content

Commit 9931f7f

Browse files
authored
Merge pull request #65 from jduriez/docTypos
Correcting documentation typos
2 parents 1de2163 + 2f9a7c6 commit 9931f7f

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

developer/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Always use `clang-format` to format your code. Runnning `sh ../clang-tools/forma
2929

3030
## Code documentation
3131

32-
**Documentation is an integral part of code development and must go in-sync with feature development and bug fixes. Documentation is always more important than the facy new feature** Always add in-code docuemntation using Doxygen.
32+
**Documentation is an integral part of code development and must go in-sync with feature development and bug fixes. Documentation is always more important than the fancy new feature** Always add in-code documentation using Doxygen.
3333

3434
To document a C++ class:
3535

user/postprocess/hdf5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HDF5
22

3-
The CB-Geo mpm code writes HDF5 data of partices at each output time step. The HDF5 data can be read using Python / Pandas. If `pandas` package is not installed, run `pip3 install pandas`.
3+
The CB-Geo mpm code writes HDF5 data of particles at each output time step. The HDF5 data can be read using Python / Pandas. If `pandas` package is not installed, run `pip3 install pandas`.
44

55
To read a particles HDF5 data, for example `particles00.h5` at step 0:
66

user/postprocess/vtk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VTK
22

3-
When the CB-Geo mpm code is compiled with VTK libraries, the MPM code can be set to write VTK data of partices at a specified output frequency. The input JSON configuration takes as optional `vtk` argument. The following attributes are valid options for VTK: `"stresses`, `strains`, and `velocities`. When the attribute `vtk` is not specified or an incorrect argument is defined, the code will write all available options.
3+
When the CB-Geo mpm code is compiled with VTK libraries, the MPM code can be set to write VTK data of particles at a specified output frequency. The input JSON configuration takes as optional `vtk` argument. The following attributes are valid options for VTK: `"stresses`, `strains`, and `velocities`. When the attribute `vtk` is not specified or an incorrect argument is defined, the code will write all available options.
44

55
```JSON
66
"post_processing": {

user/preprocess/ascii-mesh-particles.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The ASCII mesh has the following format:
66
```
77
nnodes ncells
88
# nodal coordinates
9-
x_0 y_0 z_0
9+
x_0 y_0 z_0
1010
x_1 y_1 z_1
1111
...
1212
x_i y_i z_i
@@ -23,7 +23,7 @@ ni_i ni_j ni_k ni_l ni_w ni_x ni_y ni_z
2323
nn_i nn_j nn_k nn_l nn_w nn_x nn_y nn_z
2424
```
2525

26-
`nnz` is the number of nodes.
26+
`nnodes` is the number of nodes.
2727

2828
`ncells` the number of cells.
2929

@@ -32,9 +32,6 @@ $x_i$, $y_i$, $z_i$ correspond to the Cartesian coordinates of each node.
3232
Each node will be assigned a unique id from `0` to `nnodes -1`, and will be assigned in the
3333
order in which they appear.
3434

35-
`ncells` refers to the number of nodes per element.
36-
37-
3835
`n1_1, n1_2... n1_nn` corresponds to the node ids forming each cell. Cell ids should be arranged in the same order as the shape functions. This code uses the standard GMSH order for numbering nodes in cells.
3936

4037
An example of a 3D mesh comprising of two cells and twelve nodes is shown below:
@@ -74,11 +71,11 @@ x_i y_i z_i
7471
x_n y_n z_n
7572
```
7673

77-
`nparticles` is the total number of particles. $x_i$, $y_i$, $z_i$ correspond to the Cartesian coordinates of each material point. The material points are assigned a unique id from 0 to `n - 1`.
74+
`nparticles` is the total number of particles. $x_i$, $y_i$, $z_i$ correspond to the Cartesian coordinates of each material point. The material points are assigned a unique id from 0 to `nparticles - 1`.
7875

7976
The `particles-cell.txt` file which describes the initial cell location of each material point has the following format:
8077
```
81-
p_1 c_0
78+
p_0 c_0
8279
p_1 c_1
8380
...
8481
p_i c_i
@@ -99,7 +96,7 @@ sigma_xx,1 sigma_yy,1 sigma_zz,1 tau_xy,1 tau_yz,1 tau_zx,1
9996
...
10097
sigma_xx,i sigma_yy,i sigma_zz,i tau_xy,i tau_yz,i tau_zx,i
10198
...
102-
sigma_11,n sigma_22,n sigma_33,n tau_12,n tau_23,n tau_31,n
99+
sigma_xx,n sigma_yy,n sigma_zz,n tau_xy,n tau_yz,n tau_zx,n
103100
```
104101

105-
`nparticles` is the total number of particles. $\sigma_{xx,i}$, $\sigma_{yy,i}$, $\sigma_{zz,i}$, $\tau_{xy,i}$, $\tau_{yz,i}$, $\tau_{zx,i}$ correspond to the insitu stresses on each material point. Stresses are assigned in order to each material point based on the unique id from 0 to `n - 1`. If including a `particles_stresses.txt` file, stresses must be assigned for all material points.
102+
`nparticles` is the total number of particles. $\sigma_{xx,i}$, $\sigma_{yy,i}$, $\sigma_{zz,i}$, $\tau_{xy,i}$, $\tau_{yz,i}$, $\tau_{zx,i}$ correspond to the insitu stresses on each material point. Stresses are assigned in order to each material point based on the unique id from 0 to `nparticles - 1`. If including a `particles_stresses.txt` file, stresses must be assigned for all material points.

user/preprocess/entity-sets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ The model can be divided into several sets of particles or nodes by using the `e
4444

4545
`c0_i` is the id of a cell within the set id 0.
4646

47-
Each entity (particle or node or cell) set will be assigned a unique id and a vector with the entity's (particles or nodes) id belonging to this set. The entity's id respect the order of the entity input file -- e.g. a particle id of 3 is the fourth particle in the input file `particles.txt`.
47+
Each entity (particle or node or cell) set will be assigned a unique id and a vector with the entity's (particles or nodes) id belonging to this set. The entity's id respects the order of the entity input file -- e.g. a particle id of 3 is the fourth particle in the input file `particles.txt`.

0 commit comments

Comments
 (0)