Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed spelling and added labels to picture. #169

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/XmsGrid-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
run: |
tar czf ${{ github.workspace }}/${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
- name: Add Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
run: |
tar czf ${{ github.workspace }}/${{ matrix.platform }}-GCC${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
- name: Add Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/${{ matrix.platform }}-GCC${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:
run: |
tar czf ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
- name: Add Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ env.MATRIX_NAME }}
path: ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz
Expand Down
8 changes: 4 additions & 4 deletions examples/UGrids.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"\n",
"The next value, `3`, indicates how many points there are in the cell. Because we put `3`, there should be three values that follow this value.\n",
"\n",
"The next three values `0, 4, 5` are each indicies that tell the indexes in `locations` that hold the points that make up the cell. The following code illustrates this.\n"
"The next three values `0, 4, 5` are each indicies that tell the indices in `locations` that hold the points that make up the cell. The following code illustrates this.\n"
]
},
{
Expand Down Expand Up @@ -218,7 +218,7 @@
"tags": []
},
"source": [
"![The ugrid generated by our code imported into GMS](images/ugrid.png)"
"![The ugrid generated by our code imported into GMS](images/triangle-ugrid.png)"
]
},
{
Expand Down Expand Up @@ -424,7 +424,7 @@
"\n",
"The cell definitions mirror VTK cell definitions which are available on page 9 of VTK File Formats for VTK version 4.2 at https://www.vtk.org/wp-content/uploads/2015/04/file-formats.pdf.\n",
"\n",
"For convinience, the `xmugrid_celltype_enum` was created to put human-readable names to the numerical shape declarations."
"For convenience, the `xmugrid_celltype_enum` was created to put human-readable names to the numerical shape declarations."
]
},
{
Expand Down Expand Up @@ -1231,7 +1231,7 @@
"id": "3cb12a2a-6671-4268-8b9f-ebb64f2aa2a7",
"metadata": {},
"source": [
"This will return a tuple of indexes of the cells that are adjacent to the given cells. <br>"
"This will return a tuple of indices of the cells that are adjacent to the given cells. <br>"
]
},
{
Expand Down
Binary file added examples/images/triangle-ugrid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions examples/output_files/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
Loading