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

Commit 53cce31

Browse files
authored
Merge pull request #135 from dstansby/fotran-step
Reduce default fotran tracer step size to 0.01
2 parents 115999c + e8e510e commit 53cce31

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

doc/source/changes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
0.4.1
5+
-----
6+
7+
- Reduced the default step size for the :class:`~pfsspy.tracing.FortranTracer`
8+
from 0.1 to 0.01 to give more resolved field lines by default.
9+
410
0.4.0
511
-----
612

pfsspy/tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class FortranTracer(Tracer):
6666
singularity at the poles (ie. :math:`s = \pm 1`), which means seeds placed
6767
directly on the poles will not go anywhere.
6868
"""
69-
def __init__(self, max_steps=1000, step_size=0.1):
69+
def __init__(self, max_steps=1000, step_size=0.01):
7070
from streamtracer import StreamTracer
7171
self.max_steps = max_steps
7272
self.step_size = step_size

0 commit comments

Comments
 (0)