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

Remove traces of feos.si in documentation #267

Merged
merged 1 commit into from
Jan 8, 2025
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
1 change: 0 additions & 1 deletion docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
.. toctree::
:maxdepth: 1

si
eos
dft
```
Expand Down
31 changes: 0 additions & 31 deletions docs/api/si.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/tutorials/utility/core_working_with_units.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"\n",
"> Learn how to work with `SINumber` and `SIArray` objects which represent physical quantities, i.e. one or more floating point numbers with an associated unit.\n",
"\n",
"## The `feos.si` module\n",
"## The `si-units` module\n",
"\n",
"Most interfaces in `FeOs` use dimensioned quantities as input. For example, to define a thermodynamic state at given temperature, pressure and amount of substance, all of these properties have to be multiplied by an apropriate unit before we can call the function that creates the state.\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion examples/core_working_with_units.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"\n",
"> Learn how to work with `SINumber` and `SIArray` objects which represent physical quantities, i.e. one or more floating point numbers with an associated unit.\n",
"\n",
"## The `feos.si` module\n",
"## The `si-units` module\n",
"\n",
"Most interfaces in `FeOs` use dimensioned quantities as input. For example, to define a thermodynamic state at given temperature, pressure and amount of substance, all of these properties have to be multiplied by an apropriate unit before we can call the function that creates the state.\n",
"\n",
Expand Down
1 change: 0 additions & 1 deletion src/python/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ pub fn feos(m: &Bound<'_, PyModule>) -> PyResult<()> {
#[cfg(feature = "saftvrmie")]
m.add_wrapped(wrap_pymodule!(saftvrmie_module))?;

// set_path(m, "feos.si", "quantity")?;
set_path(m, "feos.eos", "eos")?;
#[cfg(feature = "estimator")]
set_path(m, "feos.eos.estimator", "eos.estimator_eos")?;
Expand Down
Loading