Skip to content

Commit

Permalink
[doc] Update Fluid_Simulation
Browse files Browse the repository at this point in the history
  • Loading branch information
holl- committed Oct 25, 2023
1 parent 67a8171 commit 04f1283
Show file tree
Hide file tree
Showing 6 changed files with 6,003 additions and 108 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python --version
python -m pip install --upgrade pip
pip install --quiet pdoc3 tensorflow torch jax jaxlib plotly "nbformat==5.4.0" ipython notebook ipywidgets
pip install --quiet pdoc3 tensorflow torch jax jaxlib plotly "nbformat==5.4.0" ipython notebook ipywidgets tqdm
pip install .
pip list
Expand Down
5,994 changes: 5,994 additions & 0 deletions docs/Fluid_Simulation.ipynb

Large diffs are not rendered by default.

99 changes: 0 additions & 99 deletions docs/Fluid_Simulation.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/Physics.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Physics

The module [`phi.physics`](phi/physics/) provides a library of common operations used to solve partial differential equations like [fluids](Fluid_Simulation.md).
The module [`phi.physics`](phi/physics/) provides a library of common operations used to solve partial differential equations like [fluids](Fluid_Simulation.html).
It builds on the [field](Fields.md), [geometry](Geometry.md) and [math](Math.html) modules and constitutes the highest-level API for physical simulations in Φ<sub>Flow</sub>.
Similar to the field module, physics functions act on data structures represented by the [`Field`](phi/field/#phi.field.Field) class.

Expand Down
12 changes: 6 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@

### Module Documentation

| Module API | Documentation |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [phi.vis](phi/vis) | [Visualization](Visualization.md): Plotting, interactive user interfaces <br /> [Dash](Web_Interface.md): Web interface <br /> [Console](ConsoleUI.md): Command line interface |
| [phi.physics](phi/physics) <br /> [phi.physics.advect](phi/physics/advect.html) <br /> [phi.physics.fluid](phi/physics/fluid.html) <br /> [phi.physics.diffuse](phi/physics/diffuse.html) | [Fluids Tutorial](Fluids_Tutorial.html): Introduction to core classes and fluid-related functions. <br /> [Higher-order schemes](Taylor_Green_Comparison.html): Compares the accuracy of various numerial schemes. <br /> [Overview](Physics.md): Domains, built-in physics functions <br /> [Functions for Fluid Simulations](Fluid_Simulation.md): Advection, projection, diffusion |
| [phi.field](phi/field) | [Overview](Fields.md): Grids, particles <br /> [Staggered Grids](Staggered_Grids.html): Data layout, usage <br /> [Reading and Writing Simulation Data](Reading_and_Writing_Data.md) <br /> [Scene Format Specification](Scene_Format_Specification.md): Directory layout, file format |
| [phi.geom](phi/geom) | [Overview](Geometry.md): Differentiable Geometry |
| Module API | Documentation |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [phi.vis](phi/vis) | [Visualization](Visualization.md): Plotting, interactive user interfaces <br /> [Dash](Web_Interface.md): Web interface <br /> [Console](ConsoleUI.md): Command line interface |
| [phi.physics](phi/physics) <br /> [phi.physics.advect](phi/physics/advect.html) <br /> [phi.physics.fluid](phi/physics/fluid.html) <br /> [phi.physics.diffuse](phi/physics/diffuse.html) | [Fluids Tutorial](Fluids_Tutorial.html): Introduction to core classes and fluid-related functions. <br /> [Higher-order schemes](Taylor_Green_Comparison.html): Compares the accuracy of various numerial schemes. <br /> [Overview](Physics.md): Domains, built-in physics functions <br /> [Functions for Fluid Simulations](Fluid_Simulation.html): Advection, projection, diffusion |
| [phi.field](phi/field) | [Overview](Fields.md): Grids, particles <br /> [Staggered Grids](Staggered_Grids.html): Data layout, usage <br /> [Reading and Writing Simulation Data](Reading_and_Writing_Data.md) <br /> [Scene Format Specification](Scene_Format_Specification.md): Directory layout, file format |
| [phi.geom](phi/geom) | [Overview](Geometry.md): Differentiable Geometry |


### Core Classes
Expand Down

0 comments on commit 04f1283

Please sign in to comment.