Skip to content

Commit

Permalink
changed oceans_sf to FluidSF/fluidsf
Browse files Browse the repository at this point in the history
  • Loading branch information
cassidymwagner committed May 31, 2024
1 parent 68886bd commit e528a50
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# for mod_name in MOCK_MODULES:
# sys.modules[mod_name] = mock.Mock()

import oceans_sf
import fluidsf

# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
Expand Down
6 changes: 3 additions & 3 deletions docs/source/ex1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@
"metadata": {},
"outputs": [],
"source": [
"import oceans_sf as ocsf\n",
"import fluidsf\n",
"\n",
"sf = ocsf.generate_structure_functions(u, v, x, y)"
"sf = fluidsf.generate_structure_functions(u, v, x, y)"
]
},
{
Expand Down Expand Up @@ -229,7 +229,7 @@
"metadata": {},
"outputs": [],
"source": [
"sf_all = ocsf.generate_structure_functions(u, v, x, y, scalar=q, traditional_order=3)"
"sf_all = fluidsf.generate_structure_functions(u, v, x, y, scalar=q, traditional_order=3)"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions docs/source/ex2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@
"metadata": {},
"outputs": [],
"source": [
"import oceans_sf as ocsf\n",
"import fluidsf\n",
"\n",
"sfs_list = [\n",
" ocsf.generate_structure_functions(u[d][0], v[d][0], x, y) \n",
" fluidsf.generate_structure_functions(u[d][0], v[d][0], x, y) \n",
" for d in u.keys()]"
]
},
Expand Down
8 changes: 4 additions & 4 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
oceans_sf Documentation
FluidSF Documentation
=======================

.. toctree::
Expand All @@ -14,7 +14,7 @@ oceans_sf Documentation
Overview
********

oceans_sf is a Python package for calculating structure functions from oceanographic data.
FluidSF is a Python package for calculating structure functions from fluid data.
These structure functions can be used to estimate turbulence cascade rates without the constraints
of spectral methods. This package serves as a useful tool for analyzing turbulent dynamics in the ocean.

Expand All @@ -32,8 +32,8 @@ Usage
Development and Contributing
****************************

The development of oceans_sf started as a Ph.D. project for Cassidy Wagner,
The development of FluidSF started as a Ph.D. project for Cassidy Wagner,
advised by Brodie Pearson. The developers welcome contributions and suggestions
through the `oceans_sf GitHub repository <https://github.com/cassidymwagner/oceans_sf>`_
through the `FluidSF GitHub repository <https://github.com/cassidymwagner/FluidSF>`_
Feel free to open an issue, submit a pull request, and/or
`contact the owner directly <https://github.com/cassidymwagner>`_.
4 changes: 2 additions & 2 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Installation instructions
=========================

Fork or clone the `oceans_sf repository <https://github.com/cassidymwagner/oceans_sf>`_ to your local machine.
Install oceans_sf with pip:
Fork or clone the `FluidSF repository <https://github.com/cassidymwagner/FluidSF>`_ to your local machine.
Install FluidSF with pip:

.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/source/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Functions
.. toctree::
:maxdepth: 4

oceans_sf
FluidSF
6 changes: 3 additions & 3 deletions docs/source/oceans_sf.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
oceans\_sf package
FluidSF package

oceans\_sf function documentation
FluidSF function documentation
---------------------------------

.. automodule:: oceans_sf
.. automodule:: fluidsf
:members:
:undoc-members:
:show-inheritance:
4 changes: 2 additions & 2 deletions docs/source/overview.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Overview of Oceans SF
Overview of FluidSF
======================

oceans_sf is a Python package for calculating structure functions from oceanographic data.
FluidSF is a Python package for calculating structure functions from fluid data.
These structure functions can be used to estimate turbulence cascade rates without the constraints
of spectral methods. This package serves as a useful tool for analyzing turbulent dynamics in the ocean.

0 comments on commit e528a50

Please sign in to comment.