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

Included PolarGrid class. right now it assumes no ghost cells #136

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e0b136f
Included PolarGrid class. right now it assumes no ghost cells
ssagynbayeva Mar 9, 2023
982e449
Merge remote-tracking branch 'upstream/main' into polar-coords
ssagynbayeva Mar 9, 2023
eb71efc
Update pyro/mesh/patch.py
ssagynbayeva Mar 9, 2023
b716ca3
Update pyro/mesh/patch.py
ssagynbayeva Mar 9, 2023
196e9df
added A_x and A_y
ssagynbayeva Mar 15, 2023
f2367c1
Merge remote-tracking branch 'upstream/main' into polar-coords
ssagynbayeva Mar 15, 2023
7466128
Merge branch 'main' into polar-coords
zingale Mar 17, 2023
bbe762d
fixed the areas. They are now using self.xr and self.yr instead of ce…
ssagynbayeva Mar 21, 2023
f9afaa6
Merge branch 'polar-coords' of https://github.com/ssagynbayeva/pyro2 …
ssagynbayeva Mar 21, 2023
a8f9b65
Merge branch 'main' into polar-coords
ssagynbayeva Mar 21, 2023
c377f3b
removed _init_
ssagynbayeva Mar 21, 2023
f0f089b
Merge branch 'polar-coords' of https://github.com/ssagynbayeva/pyro2 …
ssagynbayeva Mar 21, 2023
7405339
changed areas and the cell volume
ssagynbayeva Apr 3, 2023
d2d5712
Merge branch 'main' into polar-coords
ssagynbayeva Apr 3, 2023
df648dc
fixed flake8 errors
ssagynbayeva Apr 3, 2023
f98abf7
Merge branch 'polar-coords' of https://github.com/ssagynbayeva/pyro2 …
ssagynbayeva Apr 3, 2023
8e8e0d6
added a line before main
ssagynbayeva Apr 3, 2023
ffdce53
Merge branch 'main' into polar-coords
zingale Apr 4, 2023
55c8377
recomputed areas
ssagynbayeva Apr 5, 2023
d076961
Merge branch 'polar-coords' of https://github.com/ssagynbayeva/pyro2 …
ssagynbayeva Apr 5, 2023
8fa6b97
ASCII picture
ssagynbayeva Apr 5, 2023
54ecf2d
added unit tests for the PolarGrid()
ssagynbayeva Apr 5, 2023
6173abd
changes
ssagynbayeva Apr 6, 2023
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
Prev Previous commit
Next Next commit
Update pyro/mesh/patch.py
Co-authored-by: Eric T. Johnson <yut23@users.noreply.github.com>
  • Loading branch information
ssagynbayeva and yut23 authored Mar 9, 2023
commit b716ca308311674793547d139d4089a19aa0e7de
6 changes: 3 additions & 3 deletions pyro/mesh/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
import h5py
import numpy as np

# import pyro.mesh.boundary as bnd
# from pyro.mesh.array_indexer import ArrayIndexer, ArrayIndexerFC
# from pyro.util import msg
import pyro.mesh.boundary as bnd
from pyro.mesh.array_indexer import ArrayIndexer, ArrayIndexerFC
from pyro.util import msg


class Grid2d:
Expand Down