Skip to content

Commit

Permalink
small fix in the parameters file
Browse files Browse the repository at this point in the history
  • Loading branch information
repepo committed Oct 3, 2023
1 parent 8472f7c commit d2dd844
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ def Ncheb(Ek):
# Additional arguments for 'Two zone' or 'User defined' case (modify if needed).
rc = 0.7 # transition radius
h = 0.1 # transition width
sym = -1 # radial symmetry
args = [rc, h, sym]
rsy = -1 # radial symmetry
args = [rc, h, rsy]

# Thermal boundary conditions
# 0 for isothermal, theta=0
Expand Down Expand Up @@ -239,10 +239,10 @@ def Ncheb(Ek):
BV2_comp = 0.0

# Additional arguments for 'Two zone' or 'User defined' case (modify if needed).
rc = 0.7 # transition radius
h = 0.1 # transition width
sym = -1 # radial symmetry
args_comp = [rc, h, sym]
rcc = 0.7 # transition radius
hc = 0.1 # transition width
rsyc = -1 # radial symmetry
args_comp = [rcc, hc, rsyc]

# Compositional boundary conditions
# 0 for constant composition, xi=0
Expand Down

0 comments on commit d2dd844

Please sign in to comment.