Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/fenicsx' into trap-density-spa…
Browse files Browse the repository at this point in the history
…ce-time
  • Loading branch information
RemDelaporteMathurin committed Nov 4, 2024
2 parents 6130c09 + db4ad6f commit 300e9bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docs/source/devguide/index.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. _developers_guide:

=================
Developer's Guide
=================
Expand Down
2 changes: 1 addition & 1 deletion docs/source/userguide/beginners_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To make the most out of FESTIM, a basic knowledge of `Python <https://www.learnp

Depending on how you install FESTIM, new users should familiarise with either `Docker <https://www.docker.com/>`_ or `Conda <https://anaconda.org/>`_.

FESTIM is under version control with `git <https://git-scm.com/>`_. Even though users don't need git to install FESTIM, it is convenient to have a basic understanding of how it works. You can fin `git turorials <https://git-scm.com/doc>`_ to help you getting started. The `FESTIM source code <https://github.com/RemDelaporteMathurin/FESTIM>`_ is hosted on GitHub. It is recommended to sign up for free to GitHub in order to receive the latest updates, follow the development and submit `bug reports <https://github.com/RemDelaporteMathurin/FESTIM/issues/new/choose>`_.
FESTIM is under version control with `git <https://git-scm.com/>`_. Even though users don't need git to install FESTIM, it is convenient to have a basic understanding of how it works. You can find `git tutorials <https://git-scm.com/doc>`_ to help you getting started. The `FESTIM source code <https://github.com/festim-dev/FESTIM>`_ is hosted on GitHub. Git knowledge and a GitHub account is required to open issues and :ref:`contribute to the code <developers_guide>`.

----------------------
Where can I find help?
Expand Down
2 changes: 0 additions & 2 deletions src/festim/hydrogen_transport_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class HydrogenTransportProblem(problem.ProblemBase):
sources: The hydrogen sources
initial_conditions: The initial conditions
boundary_conditions: The boundary conditions
solver_parameters (dict): the solver parameters of the model
exports (list of festim.Export): the exports of the model
traps (list of F.Trap): the traps of the model
Expand All @@ -60,7 +59,6 @@ class HydrogenTransportProblem(problem.ProblemBase):
sources: The hydrogen sources
initial_conditions: The initial conditions
boundary_conditions: List of Dirichlet boundary conditions
solver_parameters (dict): the solver parameters
exports (list of festim.Export): the export
traps (list of F.Trap): the traps of the model
dx (dolfinx.fem.dx): the volume measure of the model
Expand Down
1 change: 1 addition & 0 deletions src/festim/problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ def run(self):
self.iterate()
if self.show_progress_bar:
self.progress_bar.refresh() # refresh progress bar to show 100%
self.progress_bar.close()
else:
# Solve steady-state
self.solver.solve(self.u)
Expand Down

0 comments on commit 300e9bf

Please sign in to comment.