Skip to content

Commit

Permalink
Update GASTLI.py
Browse files Browse the repository at this point in the history
Updated docstrings in classes GASTLI int and Coupling to show properly in API
  • Loading branch information
lorenaacuna authored Nov 4, 2024
1 parent 9df96aa commit a741e33
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/GASTLI.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@


class int_planet:
def __init__(self, path_to_file, j_max=30, cnt_conv_max=3, conv_prec=1e-5, \
pow_law=0.32, chk_EOS=0, EOS_lim_P=[5e11, 5e11, 5e11, 5e11, \
5e11, 5e11, 5e11, 5e11, 5e11, 5e11], corEOS=1):
r"""Class defining objects for carrying out interior structure calculations
"""Class defining objects for carrying out interior structure calculations
for a given set of mass, composition and surface conditions
Args:
Expand All @@ -34,7 +31,11 @@ def __init__(self, path_to_file, j_max=30, cnt_conv_max=3, conv_prec=1e-5, \
Type of correction on the thermodynamical parameters of Vinet EOS.
(=0: no correction / =1: range [1:1.5] / =2: range [1:5] / =3:
range [1:10]). Do not change
"""
"""

def __init__(self, path_to_file, j_max=30, cnt_conv_max=3, conv_prec=1e-5, \
pow_law=0.32, chk_EOS=0, EOS_lim_P=[5e11, 5e11, 5e11, 5e11, \
5e11, 5e11, 5e11, 5e11, 5e11, 5e11], corEOS=1):


# Arguments of __init__
Expand Down

0 comments on commit a741e33

Please sign in to comment.