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 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 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 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 | |
$ | |
$ |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder