Skip to content

Commit

Permalink
Add hints to Gray-Scott
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceyron committed Mar 18, 2024
1 parent 3660d40 commit 8708f0c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions exponax/reaction/_gray_scott.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ def __init__(
num_circle_points: int = 16,
circle_radius: float = 1.0,
):
"""
See also this papers:
https://www.ljll.fr/hecht/ftp/ff++/2015-cimpa-IIT/edp-tuto/Pearson.pdf
There the two parameters are called F and k, named feed rate and kill
rate. The arguments to this equation are such that b=F and d=F+k. The
paper used the domain extent of 2.5. The epsilon values (=the two
diffusivities) are the same.
"""
self.epsilon_1 = epsilon_1
self.epsilon_2 = epsilon_2
self.b = b
Expand Down

0 comments on commit 8708f0c

Please sign in to comment.