Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #135 from dstansby/fotran-step
Browse files Browse the repository at this point in the history
Reduce default fotran tracer step size to 0.01
  • Loading branch information
dstansby authored Jan 3, 2020
2 parents 115999c + e8e510e commit 53cce31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions doc/source/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

0.4.1
-----

- Reduced the default step size for the :class:`~pfsspy.tracing.FortranTracer`
from 0.1 to 0.01 to give more resolved field lines by default.

0.4.0
-----

Expand Down
2 changes: 1 addition & 1 deletion pfsspy/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class FortranTracer(Tracer):
singularity at the poles (ie. :math:`s = \pm 1`), which means seeds placed
directly on the poles will not go anywhere.
"""
def __init__(self, max_steps=1000, step_size=0.1):
def __init__(self, max_steps=1000, step_size=0.01):
from streamtracer import StreamTracer
self.max_steps = max_steps
self.step_size = step_size
Expand Down

0 comments on commit 53cce31

Please sign in to comment.