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

fix some spelling #199

Merged
merged 2 commits into from
Jul 14, 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
2 changes: 1 addition & 1 deletion pyro/incompressible/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def preevolve(self):
self.cc_data.fill_BC("y-velocity")

# 1. do the initial projection. This makes sure that our original
# velocity field satisties div U = 0
# velocity field satisfies div U = 0

# next create the multigrid object. We want Neumann BCs on phi
# at solid walls and periodic on phi for periodic BCs
Expand Down
2 changes: 1 addition & 1 deletion pyro/lm_atm/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def preevolve(self):
self.cc_data.fill_BC("y-velocity")

# 1. do the initial projection. This makes sure that our original
# velocity field satisties div U = 0
# velocity field satisfies div U = 0

# the coefficient for the elliptic equation is beta_0^2/rho
coeff = 1/rho
Expand Down
2 changes: 1 addition & 1 deletion pyro/multigrid/examples/project_periodic.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
projection uses the divergence of the velocity field from the previous
iteration as its source term.

Note: the output file created stores the original field, the poluted
Note: the output file created stores the original field, the polluted
field, and the recovered field.
"""

Expand Down