Skip to content

Commit

Permalink
Bunp version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bendudson committed Mar 12, 2019
1 parent 72940e5 commit e6eefec
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,13 @@ References
* YoungMu Jeon, [Development of a free boundary Tokamak Equlibrium Solver](http://link.springer.com/article/10.3938/jkps.67.843) [arXiv:1503.03135](https://arxiv.org/abs/1503.03135)
* S.Jardin "Computational Methods in Plasma Physics" CRC Press


Versions
--------

0.2.0 12th March 2019
- Add field line tracer, `freegs.fieldtracer`
- Add Equilibrium.Btor toroidal field calculation
- Add Equilibrium.plasmaVolume
- Fix rlim, zlim saved into GEQDSK files

6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ def __getattr__(cls, name):

# General information about the project.
project = u'FreeGS'
copyright = u'2017, Ben Dudson'
copyright = u'2017-2019, Ben Dudson'
author = u'Ben Dudson'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'0.1'
version = u'0.2'
# The full version, including alpha/beta/rc tags.
release = u'0.1'
release = u'0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/diagnostics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ does the actual field line following::

result = tracer.follow([1.35], [0.0], np.linspace(0.0, 2*np.pi, 20))

This follows a magnetic field in the direction of B, starting at ``R=1.35``m,
``Z=0.0``m, outputting positions at 20 toroidal angles between 0 and 2pi
This follows a magnetic field in the direction of B, starting at :math:`R=1.35m`,
:math:`Z=0`, outputting positions at 20 toroidal angles between 0 and 2pi
i.e. one toroidal turn. The R and Z starting locations should be an array or
list with the same shape.

Expand Down
4 changes: 2 additions & 2 deletions freegs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
License
-------
Copyright 2016-2018 Ben Dudson, University of York. Email: benjamin.dudson@york.ac.uk
Copyright 2016-2019 Ben Dudson, University of York. Email: benjamin.dudson@york.ac.uk
FreeGS is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
Expand All @@ -28,7 +28,7 @@
"""

__version__ = "0.1.6"
__version__ = "0.2.0"

from .equilibrium import Equilibrium

Expand Down

0 comments on commit e6eefec

Please sign in to comment.