Skip to content

Commit

Permalink
Update Coupling.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenaacuna authored Nov 4, 2024
1 parent d81b71d commit 939eb0a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/Coupling.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
import sys

class coupling:
def __init__(self,path_to_file,name_grid=None,pow_law_formass=0.32,j_max=30):
r"""Class defining objects to run one interior-atmosphere coupled model
r"""Class defining objects to run one interior-atmosphere coupled model.
When this class is defined, it automatically initialises interior and atmosphere models and
defines required constants.
Args:
path_to_file:
Expand All @@ -20,11 +21,8 @@ def __init__(self,path_to_file,name_grid=None,pow_law_formass=0.32,j_max=30):
core mass fraction is very low (< 0.03 approx.) and/or planet is low mass (15-20 Earth masses approx.)
"""

'''
- Initialises interior and atm. models
- Other constants
'''


def __init__(self,path_to_file,name_grid=None,pow_law_formass=0.32,j_max=30):
self.pow_law_formass = pow_law_formass
self.path_to_file = path_to_file
self.j_max = j_max
Expand Down

0 comments on commit 939eb0a

Please sign in to comment.