Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8dfd766
Merge pull request #134 from akashdhruv/development
akashdhruv Jun 23, 2023
7712c88
Merge pull request #135 from akashdhruv/development
akashdhruv Jun 23, 2023
cd22d81
Merge pull request #136 from akashdhruv/development
akashdhruv Jun 23, 2023
02e427b
Merge pull request #137 from akashdhruv/development
akashdhruv Jun 23, 2023
9bc6d2c
Merge pull request #138 from akashdhruv/development
akashdhruv Jun 26, 2023
17acb7d
Merge pull request #139 from akashdhruv/development
akashdhruv Jun 27, 2023
e15b0b2
Merge pull request #140 from akashdhruv/development
akashdhruv Jun 27, 2023
b93a136
Merge pull request #141 from akashdhruv/development
akashdhruv Jun 27, 2023
ae31542
update docstrings
akashdhruv Jul 15, 2023
034577c
add READMEs
akashdhruv Jul 15, 2023
6c766d1
Merge pull request #144 from Box-Tools/development
akashdhruv Sep 28, 2023
cfa9499
Merge pull request #145 from Box-Tools/development
akashdhruv Sep 28, 2023
0cf4484
update NOTICE
akashdhruv Jul 14, 2023
bdf080a
update paper
akashdhruv Sep 7, 2023
e758705
update workflows
akashdhruv Sep 28, 2023
5d02271
update minimal
akashdhruv Sep 28, 2023
256e149
update names
akashdhruv Sep 28, 2023
d65cbc3
update names
akashdhruv Sep 28, 2023
bfc7cc4
change workflow trigger
akashdhruv Sep 28, 2023
bd62982
update minimal
akashdhruv Sep 28, 2023
a58dc99
update workflows
akashdhruv Sep 28, 2023
7e452fb
update current directory paths
akashdhruv Sep 28, 2023
d4e5960
fix setup for windows
akashdhruv Sep 28, 2023
73b1acc
test new setup on github
akashdhruv Sep 28, 2023
ff5b8a2
update setup
akashdhruv Sep 28, 2023
c7822b5
update setup again
akashdhruv Sep 28, 2023
cf1c81a
update version
akashdhruv Sep 28, 2023
2bb9284
add a place holder options.py
akashdhruv Sep 28, 2023
94a47f3
Merge remote-tracking branch 'origin/main' into update-docstrings
akashdhruv Oct 2, 2023
03850c4
Merge pull request #146 from Box-Tools/development
akashdhruv Oct 2, 2023
0aeb95d
Merge remote-tracking branch 'origin/main' into update-docstrings
akashdhruv Oct 2, 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
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ boxkit/options.py
build/*
dist/*
dask-worker-space
*.rst
boxkit/depends/boost/*
.sphinx/*/*.rst
.sphinx/build/*
.sphinx/source/media/*
.sphinx/source/tutorials/*
!.sphinx/source/index.rst
!./README.rst
!./DESIGN.rst
!requirements/README.rst
!tutorials/*/*.rst
30 changes: 12 additions & 18 deletions boxkit/library/_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,23 @@ class Block: # pylint: disable=too-many-instance-attributes
"""
Class for storing block metadata

Parameters
----------
data : Boxkit Data object
attributes : Dictionary of attributes

.. code-block::

'dx' : grid spacing x direction
'dy' : grid spacing y direction
'dz' : grid spacing z direction
'xmin' : low bound x direction
'ymin' : low bound y direction
'zmin' : low bound z direction
'xmax' : high bound x direction
'ymax' : high bound y direction
'zmax' : high bound z direction
'tag' : block ID
:param data: BoxKit Data object
:param attributes['dx']: Grid spacing in x direction
:param attributes['dy']: Grid spacing in y direction
:param attributes['dz']: Grid spacing in z direction
:param attributes['xmin']: Lower bound in x direction
:param attributes['ymin']: Lower bound in y direction
:param attributes['zmin']: Lower bound in z direction
:param attributes['xmax']: Higher bound in x direction
:param attributes['ymax']: Higher bound in y direction
:param attributes['zmax']: Higher bound in z direction
:param attributes['tag']: Block ID
"""

type_ = "default"

def __init__(self, data=None, **attributes):
"""Initialize the object and allocate the data."""
"""Initialize the object and map data."""
super().__init__()

self.dx, self.dy, self.dz = [1.0, 1.0, 1.0] # pylint: disable=invalid-name
Expand Down
1 change: 1 addition & 0 deletions requirements/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
List of various dependencies organized based on install options.
2 changes: 2 additions & 0 deletions tests/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Organization of tests based on sites and functionality. All tests should
be resolved on `development` branch before merge to main.