-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
e245f09
commit 238f015
Showing
8 changed files
with
84 additions
and
30 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: LinkChecker | ||
|
||
on: push | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
config-file: 'mlc_config.json' |
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,15 @@ | ||
name: Spell Check | ||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run: | ||
name: Spell Check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Spell Check | ||
uses: crate-ci/typos@master |
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,13 @@ | ||
[default] | ||
extend-ignore-identifiers-re = [ | ||
"AttributeID.*Supress.*", | ||
] | ||
|
||
[default.extend-identifiers] | ||
AttributeIDSupressMenu = "AttributeIDSupressMenu" | ||
|
||
[default.extend-words] | ||
Daa = "Daa" | ||
|
||
[files] | ||
extend-exclude = ["Resources/"] |
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,23 +1,28 @@ | ||
# Scientific Visualization | ||
|
||
This repository contains a collection of useful Paraview skills for scientific visualization that I've developed and condensed into one place. | ||
I've made generous use of the default MacOS keyboard shortcuts in this collection for brevity. | ||
I've used the default MacOS keyboard shortcuts in this collection for brevity. | ||
If you are using a different operating system, the corresponding shortcuts can easily be found via a quick Google search. | ||
I've also assumed that anyone using this collection has the most recent version of Paraview. | ||
|
||
## Table of Contents | ||
|
||
### The Basics | ||
|
||
[Three Steps to Nicer Visualization](Tutorials/three-steps-to-nice-visualization.md) | ||
|
||
[Creating an Annimation](Tutorials/creating-an-annimation.md) | ||
[Creating an Animation](Tutorials/creating-an-annimation.md) | ||
|
||
### General Visualization | ||
|
||
[Contours/Isosurfaces](Tutorials/contours.md) | ||
|
||
### Volume Rendering | ||
|
||
Coming soon! | ||
|
||
### Ray Tracing | ||
|
||
Coming soon! | ||
|
||
Have something to contribute? See the contributing guidelines [Here](contributing.md) | ||
Have something to contribute? See the contributing guidelines [here.](contributing.md) |
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,28 +1,28 @@ | ||
# Contours | ||
Contours (and isosurfaces) can be very usefull in scientific visualization. | ||
In order to create contors in Paraview, you must first have point data. | ||
If your data is cell data, the `Cell Data to Point Data` filter must be applied. | ||
Contours (and isosurfaces) can be very useful in scientific visualization. | ||
To create contours in Paraview, you must first have point data. | ||
The `Cell Data to Point Data` filter must be applied if your data is cell data. | ||
After this, a `Contour` filter can be applied. | ||
The basic properties of a contour figure are shown below. | ||
|
||
<img src="../Resources/contours/A.png" alt="drawing" width="40%"/> | ||
|
||
- Contour by is the variable contours will be taken over | ||
- Isosurfaces is the list of values for which contours will be made at. | ||
You can add and remove contour values by using the plus and minus buttons. | ||
Also note that the value range can be used to help select contour values. | ||
- Isosurfaces is the list of values for which contours will be made. | ||
You can add and remove contour values using the plus and minus buttons. | ||
Also, note that the value range can help select contour values. | ||
|
||
## Usefull Settings | ||
## Useful Settings | ||
|
||
- Opacity: Make the contours slightly see through. | ||
This can be usefull if you want to show contours of one variable over a 2D image of another variable. | ||
- Opacity: Make the contours slightly see-through. | ||
This can be useful if you want to show the contours of one variable over a 2D image of another variable. | ||
|
||
- Line Width: Paraview's default linewidth of 1 pixel is often too thin. | ||
- Line Width: Paraview's default linewidth of 1 pixel often needs to be thicker. | ||
Increasing this makes your lines easier to see. | ||
|
||
- Render Lines as Tubes: This renders lines as tubes and can make contours look better in 3D. | ||
|
||
## Example | ||
The following is an image of contours of velocity magnitude for a jet inpinging a solid wall. | ||
The following is an image of contours of velocity magnitude for a jet impinging a solid wall. | ||
|
||
<img src="../Resources/contours/B.png" alt="drawing" style="border-radius: 5%"/> | ||
<img src="../Resources/contours/B.png" alt="drawing" style="border-radius: 5%"/> |
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,3 @@ | ||
{ | ||
"aliveStatusCodes": [417, 403, 200, 429, 206, 0] | ||
} |