-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
183 changed files
with
5,135 additions
and
3,943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Description | ||
|
||
Please describe the changes/features in this pull request. | ||
Please describe the changes/features in this pull request. | ||
|
||
# Issue Number | ||
|
||
If there is an issue created for these changes, link it here | ||
|
||
# Checklist | ||
|
||
Please make sure to check developer documentation on specfem docs. | ||
Please make sure to check developer documentation on specfem docs. | ||
|
||
[] I ran the code through pre-commit to check style | ||
[] My code passes all the integration tests | ||
[] I have added sufficient unittests to test my changes | ||
[] I have added/updated documentation for the changes I am proposing | ||
[] I have updated CMakeLists to ensure my code builds | ||
[] My code builds across all platforms | ||
- [ ] I ran the code through pre-commit to check style | ||
- [ ] My code passes all the integration tests | ||
- [ ] I have added sufficient unittests to test my changes | ||
- [ ] I have added/updated documentation for the changes I am proposing | ||
- [ ] I have updated CMakeLists to ensure my code builds | ||
- [ ] My code builds across all platforms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ firebase*.yml | |
*.out | ||
debug.sh | ||
output.log | ||
output.txt | ||
results/ | ||
timing.sh | ||
examples/*/*_config.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.. _mesh_reader: | ||
|
||
Mesh Reader | ||
=========== | ||
|
||
|
||
The below functions are helper functions for the Fortran binary mesh database | ||
reader. The functions are called in :cpp:func:`specfem::IO::read_mesh` | ||
in sequential order and faciliate the reading of the mesh database. | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_mesh_database_header | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_coorg_elements | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_properties | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_mesh_database_attenuation | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_material_properties | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_boundaries | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_coupled_interfaces | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_tangential_elements | ||
|
||
.. doxygenfunction:: specfem::IO::mesh::impl::fortran::read_axial_elements | ||
|
||
Finally, we add tags to the :cpp:struct:`specfem::mesh::mesh` using the | ||
:cpp:struct:`specfem::mesh::tags` struct. The description of which can be found | ||
here: :ref:`mesh_tags`. |
Oops, something went wrong.