You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/intro/preface.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
# Preface
2
2
3
-
This documentation is aimed at two categories of users: (1) scientists who prefer to use prepackaged and specialized analysis tools, and (2) experienced computational Earth scientists.
4
-
If you want to modify the source code, you will likely need to be familiar with object-oriented programming, Python and C++, and finite-element analysis.
3
+
This documentation targets two categories of users: (1) scientists who prefer to use prepackaged and specialized analysis tools, and (2) experienced computational Earth scientists.
4
+
If you want to modify the source code, it is helpful to be familiar with object-oriented programming, Python and C++, and finite-element analysis.
5
5
6
6
## Citation
7
7
8
-
The Computational Infrastructure for Geodynamics (CIG) ([geodynamics.org](https://geodynamics.org/)) is making this software and source code available to you at no cost in hopes that the software will enhance your research in geophysics.
8
+
The Computational Infrastructure for Geodynamics (CIG) ([geodynamics.org](https://geodynamics.org/)) makes this software and source code available to you at no cost in hopes that the software will enhance your research in geophysics.
9
9
A number of individuals have contributed a significant portion of their careers toward the development of this software.
10
10
It is essential that you recognize these individuals in the normal scientific practice by citing the appropriate software release and peer-reviewed papers as well as making appropriate acknowledgments in talks and publications.
11
11
The preferred way to generate the list of publications (in BibTeX format) to cite is to run your simulations with the `--include-citations` command line argument, or equivalently, the `--petsc.citations` command line argument.
@@ -25,19 +25,17 @@ To cite the software and manual, use:
25
25
26
26
Open research statements are now a common requirement when publishing research.
27
27
These support reuse, validation, and citation and often take the form of *Data availability*, *Data access*, *Code availability*, *Open Research*, and *Software* availability statements.
28
-
We recommend depositing input files that allow your published research to be reproduced and output model data in support of your research outcomes and figures.
29
-
In addition, consider depositing model files that may be reused by others.
30
-
31
-
Remember to cite software and data in your text as well as in your *Data availability* or similar statement.
32
-
28
+
We recommend including all input files to allow your published research to be reproduced and output model data to support your research outcomes and figures.
29
+
In addition, consider including model files that may be useful to others.
33
30
Files should be deposited in an approved repository.
34
31
35
-
Additional information on [*Publishing*](https://geodynamics.org/software/software-bp/software-publishing) and repositories are available on the CIG website.
32
+
Remember to cite software and data in your text as well as in your *Data availability* or similar statement.
33
+
Additional information on [*Publishing*](https://geodynamics.org/software/software-bp/software-publishing) and repositories is available on the CIG website.
36
34
37
35
### Files
38
36
39
-
Common input files include `.cfg`, , `.spatialdb`, and mesh files `.exo`, `.msh`, or `mesh`.
40
-
Common output files include the solution fields and state variables as`.h5`, `.xmf`, `vtk`, and `vtu`..
37
+
Common input files include `.cfg`, `.spatialdb`, and `.exo`, `.msh`, or `mesh` mesh files.
38
+
Common output files include the solution fields and state variables in`.h5`, `.xmf`, and `vtu` files.
Copy file name to clipboardExpand all lines: docs/user/problems/output.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -216,18 +216,16 @@ This is very useful if you add fields to HDF5 files in post-processing and wish
216
216
(sec-user-data-writer-vtk)=
217
217
### VTK Output
218
218
219
-
PyLith writes legacy (non-XML) VTK files.
220
-
These are simple files with vertex coordinates, the mesh topology, and fields over vertices and/or
221
-
cells.
219
+
PyLith writes VTU files for VTK output, which are in the XML format.
220
+
The XML files contain metadata in XML tags and raw data for the vertex coordinates, mesh topology, and fields over vertices and/or cells.
222
221
Each time step is written to a different file.
223
222
The time stamp is included in the filename with the decimal point removed.
224
223
This allows automatic generation of animations with many visualization packages that use VTK files.
225
224
The default time stamp is the time in seconds, but this can be changed using the normalization constant to give a time stamp in years, tens of years, or any other value.
226
225
227
226
:::{warning}
228
-
We strongly discourage use of using VTK output.
229
-
It is slow, inefficient, and not easily read from post-processing scripts.
230
-
We strongly recommwnd using HDF5 output instead, which is the default starting in PyLith v3.0.0.
227
+
We discourage use of the VTK output as the files are not easily read from post-processing scripts.
228
+
We strongly recommend using HDF5 output instead, which is the default starting in PyLith v3.0.0.
0 commit comments