This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Plot PyCalphad phase diagram with ESPEI dataplot containing a fixed set of phases. | |
| # The legend generator should have the superset of all modeled phases and all data phases | |
| # (usually this is what causes the colors to mismatch - the phases in the model only come from the model and the dataplot phases come only from the data). | |
| from pycalphad import Database, equilibrium, variables as v, ternplot | |
| from pycalphad.plot.utils import phase_legend | |
| from espei.datasets import load_datasets, recursive_glob | |
| from espei.plot import dataplot | |
| import matplotlib.pyplot as plt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pycalphad import Database, variables as v | |
| from symengine import Symbol | |
| from tinydb import where | |
| dbf = Database("NiTi-92Sau.tdb") | |
| # Add FUNCTION called MYFUNC | |
| myfunc = 1 + 10 * v.T + 100 * v.T**2 | |
| dbf.symbols["MYFUNC"] = myfunc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import itertools | |
| cards = ["A", 2, 3, 4, 5, 6, 7, 8, 9, 10, "J", "Q", "K"] | |
| deck = 1*4*cards # 1 deck, 4 suits | |
| def totals_for_hand(hand): | |
| totals = [0] | |
| for i, card in enumerate(hand): | |
| new_totals = [] | |
| for j, t in enumerate(totals): | |
| if card == "A": | |
| new_totals.append(t + 1) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding: utf-8 | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from pycalphad import Database, calculate, equilibrium, variables as v | |
| import pycalphad | |
| dbf = Database('Al-Mg_Zhong.tdb') | |
| comps = ['AL', 'MG', 'VA'] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import math | |
| def float_sigfigs(val, sigfigs): | |
| """Return a string representation of a floating point number rounded to some number of significant figures without scientific notation""" | |
| rounded_val = float(f"{val:0.{sigfigs}g}") | |
| num_digits = int(abs(math.log10(rounded_val))) + sigfigs | |
| return f"{rounded_val:0.{num_digits}f}" | |
| print(float_sigfigs(3.141592653589793e-20, 5)) # 0.000000000000000000031416 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ | |
| $ | |
| $ VERSION : ROUND II (January 1999) | |
| $ | |
| $ FROZEN VERSION | |
| $ COST - 507 | |
| $ | |
| $ THERMODYNAMIC DATABASE FOR LIGHT METAL ALLOYS | |
| $ | |
| $ |
NewerOlder