Skip to content

Commit

Permalink
add anhydrous HP igneous solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
bobmyhill committed May 28, 2024
1 parent 5f640f3 commit 731aacf
Show file tree
Hide file tree
Showing 4 changed files with 561 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
dataset = HGP_2018_ds633
mbr_dataset = "HGP_2018_ds633"
solution_file = "tc-thermoinput-igneous-2022-01-23/tc-ig50NCKFMASHTOCr.txt"
solution_file = "tc-thermoinput-igneous-2022-01-23/tc-ig50NCKFMASTOCr.txt"
first_model = "pl4tr" # melt and fl are (currently unreadable) Temkin models

# logging.basicConfig(stream=sys.stderr, level=logging.DEBUG)
Expand Down Expand Up @@ -146,8 +147,12 @@ def ordering_modifier(property_modifier, ordered):
if increment_i:
i += 1

n_data = len(data)

noods = []
for k in range(16):
while True:
if i > n_data - 3:
break
name = data[i][0]
n_mbrs = int(data[i][1])
logging.debug(f"Solution: {name}")
Expand Down
1 change: 1 addition & 0 deletions burnman/minerals/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
from . import JH_2015
from . import HGP_2018_ds633
from . import ig50NCKFMASHTOCr
from . import ig50NCKFMASTOCr

# Kurnosov et al. 2017
from . import KMFBZ_2017
Expand Down
Loading

0 comments on commit 731aacf

Please sign in to comment.