From 31cd6e08a8af0f3c4a3c9d8282e90c945ee59569 Mon Sep 17 00:00:00 2001 From: Lucie <122538128+lucie-farrell@users.noreply.github.com> Date: Fri, 27 Oct 2023 21:57:53 +0000 Subject: [PATCH] - fixin stuff --- .../propertyValidator.cpython-310.pyc | Bin 3029 -> 3076 bytes DataTools/propertyValidator.py | 77 +++--------------- PyQAlloyReport2023-27-Oct-20-56.md | 31 +++++++ PyQAlloyReport2023-27-Oct-21-04.md | 31 +++++++ PyQAlloyReport2023-27-Oct-21-10.md | 31 +++++++ PyQAlloyReport2023-27-Oct-21-20.md | 7 ++ PyQAlloyReport2023-27-Oct-21-24.md | 31 +++++++ PyQAlloyReport2023-27-Oct-21-49.md | 31 +++++++ 8 files changed, 173 insertions(+), 66 deletions(-) create mode 100644 PyQAlloyReport2023-27-Oct-20-56.md create mode 100644 PyQAlloyReport2023-27-Oct-21-04.md create mode 100644 PyQAlloyReport2023-27-Oct-21-10.md create mode 100644 PyQAlloyReport2023-27-Oct-21-20.md create mode 100644 PyQAlloyReport2023-27-Oct-21-24.md create mode 100644 PyQAlloyReport2023-27-Oct-21-49.md diff --git a/DataTools/__pycache__/propertyValidator.cpython-310.pyc b/DataTools/__pycache__/propertyValidator.cpython-310.pyc index 7a805bfc4b631cc8c31a29c5380890b90b947878..d8eb98d66dab29fe580188641a1f1b588a00756b 100644 GIT binary patch delta 617 zcmZ9Kzi-n(6vyw`7uVQzTKPxpOIj7v4s-zqM#dsG{(^Ksx~fB@k~n6{J9S9^fJn!b zDU}$?h`P|p1FV3A#F8CVLSkh^yt_sju!pbTd!P4xcTfJ2Ulh^nC<+)o&!0Ry`SKwO z0X}L0O}BQ@nF28M(Vc>FNjWL6x&8%{bEJA`>ZF^N3vm-8Y~vPgpL!~;Tj(HQYw8}c z863C!u1Zv@GR&&)=q((~E{*%f!jXyj8a0^6VBn0Gm>R8q8cL>X%JM{oN9_3Vx$0oJ z@UU|UD#rvn)bIy$RRB9H=^(jalD&Z$R4G;O;*MYgX9nY~b%rRDsghMEAKgl(iqS0= ztM1RIObLu>rsz);z-A6(9iLoab7J``**BdCzR_>~jvMa+r zrYKB2;MCpMZ{2dgp$zq|h>0aAw*C{lg&jS2d%K3)U2}8GQEZ*&dYhM)*jp1fmY~== z-RPIRghmf}w%1tK2mkL@?#qJBjE6uu{&Wmk%lRI)9donV}1NFiiOp+lEK)=XWSA#fpsO&TjI1oDnhoGpvt zwx$7R%~nL_KntBp>5?JoU+7ReltPB~-Pve~Kzi?e_r33XPtr+xlZ0==&}VeLtG(FS z{ul-T@3nyI2y5sLLAew;MV`C*Hyph>!~kb7#95rf`CU&%IY$QpD?@jKjbJNy?W$PS zRRbH@7xcysHZA}dR>zKvO*SYnmVVDU_=a^8vs?Y$X&e_AY_P3W)x=<2!R7_1gnSag zBzp_lJ;u|jDH!$sEo)+s#yut~9sD3PFg-nI1X*Q*NoG${qeJM`E>i*{@>)I60MsP6aoyj>6PEPTiYkWhpQ|W3q+y zGj`4&tS=<#PP_ZIyDh5Bn)mfDx4T%7;9^NRwG^tY!Kq&36Go?GTv`UzR^w9ldG}di z2k}euuF2@#oAH)P)P9>mA)m List[str]: prop_names.append(data['property']['name']) prop_values.append(data['property']['value']) + pprint(prop_names) + raw_formulas = adjustLen(raw_formulas) percentile_formulas = adjustLen(percentile_formulas) @@ -53,6 +55,9 @@ def adjustLen(strArray: List[str]) -> List[str]: maxWarningList.append(propDict['maxWarning']) minWarningList.append(propDict['minWarning']) + pprint(nameList) + pprint(abbrevList) + propValidationList = [nameList, abbrevList, maxErrorList, minErrorList, maxWarningList, minWarningList] @@ -66,11 +71,13 @@ def adjustLen(strArray: List[str]) -> List[str]: else: for name in nameList: nameIndex = nameList.index(name) - if ((abbrevList[nameIndex] is not None) and ((prop == abbrevList[nameIndex][0]) - or (prop == abbrevList[nameIndex][1]))): - propIndex = nameIndex - elif (prop == nameList[nameIndex]): + if (prop == name): propIndex = nameIndex + break + elif (abbrevList[nameIndex] is not None): + if ((prop == abbrevList[nameIndex][0]) or (prop == abbrevList[nameIndex][1])): + propIndex = nameIndex + break else: propIndex = None # validations.append('Uncommon property!') @@ -119,65 +126,3 @@ def adjustLen(strArray: List[str]) -> List[str]: in zip(markers, raw_formulas, percentile_formulas, prop_names, validations) ] - - - # for propDict in conditionList: - # # test = f"Testing: {propDict} " - # # print(test) - # if propDict['abbrevs'] is None: - # abbrevList = [' ', ' '] - # else: - # abbrevList = propDict['abbrevs'] - - # print(abbrevList) - # print(abbrevList[0]) - # print(abbrevList[1]) - - # if prop == abbrevList[0] or prop == abbrevList[1] or prop == propDict['name']: - # if propDict['maxError'] is not None and value > propDict['maxError']: - # validations.append(f"Unreasonably high {prop} value of {value}") - # markers.append('🔴') - # elif propDict['minError'] is not None and value < propDict['minError']: - # validations.append(f"Unreasonably low {prop} value of {value}") - # markers.append('🔴') - # elif propDict['maxWarning'] is not None and value > propDict['maxWarning']: - # validations.append(f"High {prop} value of {value}") - # markers.append('🟠') - # elif propDict['minWarning'] is not None and value < propDict['minWarning']: - # validations.append(f"Low {prop} value of {value}") - # markers.append('🟠') - # else: - # validations.append('') - # markers.append('🟢') - # else: - # validations.append('Uncommon property!') - # # use green or orange ? - # markers.append('🟠') - - # create yaml file for properties, abbrevs, and upper lower bounds - # ^ similar to adam example sent in email - # ^ error different from warning - # ^ ex: can't have compressive ducility > 100%, so error - # compressive ductility warning would be around > 85% - # ^^^ so need to consider physical limitations like this for each property - # create at least 3-4 property distributions in mongodb - # ^ use these for bounds in yaml file - # if no abbrev or bound, use null or none in place - - - - # if propDict['maxError'] is not None and value > propDict['maxError']: - # validations.append(f"Unreasonably high {prop} value of {value}") - # markers.append('🔴') - # elif propDict['minError'] is not None and value < propDict['minError']: - # validations.append(f"Unreasonably low {prop} value of {value}") - # markers.append('🔴') - # elif propDict['maxWarning'] is not None and value > propDict['maxWarning']: - # validations.append(f"High {prop} value of {value}") - # markers.append('🟠') - # elif propDict['minWarning'] is not None and value < propDict['minWarning']: - # validations.append(f"Low {prop} value of {value}") - # markers.append('🟠') - # else: - # validations.append('') - # markers.append('🟢') \ No newline at end of file diff --git a/PyQAlloyReport2023-27-Oct-20-56.md b/PyQAlloyReport2023-27-Oct-20-56.md new file mode 100644 index 0000000..4b56c62 --- /dev/null +++ b/PyQAlloyReport2023-27-Oct-20-56.md @@ -0,0 +1,31 @@ + +# PyQAlloyReport 2023-27-Oct-20-56 + +**Legend:**   🟢 Successful Upload / 🟠 Abnormal Upload / 🔴 Failed Upload + +| | Raw Formula | Percentile Formula | Property | Comment | +|:--- |:--- |:--- |:--- |:--- | +| 🟠 | Fe60 Ni20 Cr10 Zr10 | Zr10 Cr10 Fe60 Ni20 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr20 Zr10 | Zr10 Cr20 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr10 Zr20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe25 Ni25 Cr25 Zr25 | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | Ti0.1 (ZrHfNb)0.3 | Hf30 Zr30 Ti10 Nb30 | | No property data! | +| 🟠 | Fe0.60 Ni0.10 Cr0.10 Zr0.20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | CreepRate | Uncommon property! | +| 🟠 | W90 Mo5 Ti5 | Ti5 W90 Mo5 | | No property data! | +| 🟠 | HfMoNbZrTiCrAlW | Hf12.5 Zr12.5 Ti12.5 Nb12.5 W12.5 Mo12.5 Cr12.5 Al12.5 | | No property data! | +| 🟠 | CoCrFeNi | Cr25 Fe25 Co25 Ni25 | tensile ductility | Uncommon property! | +| 🟠 | CoCrFeNiMo0.2 | Mo4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | CoNiFe | Fe33.3 Co33.3 Ni33.3 | tensile ductility | Uncommon property! | +| 🟠 | FeCrCoMnNi | Cr20 Mn20 Fe20 Co20 Ni20 | tensile ductility | Uncommon property! | +| 🟠 | Co20.6Cr19.9Fe19.5Ni20.9Mn19.1 | Cr19.9 Mn19.1 Fe19.5 Co20.6 Ni20.9 | tensile ductility | Uncommon property! | +| 🟠 | FeCoNiCrTi0.2 | Ti4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🔴 | Un40 O60 | | | Can't parse composition!: Un40 O60 --> Can't parse Element or Species from str: Un. | + diff --git a/PyQAlloyReport2023-27-Oct-21-04.md b/PyQAlloyReport2023-27-Oct-21-04.md new file mode 100644 index 0000000..a3ea90f --- /dev/null +++ b/PyQAlloyReport2023-27-Oct-21-04.md @@ -0,0 +1,31 @@ + +# PyQAlloyReport 2023-27-Oct-21-04 + +**Legend:**   🟢 Successful Upload / 🟠 Abnormal Upload / 🔴 Failed Upload + +| | Raw Formula | Percentile Formula | Property | Comment | +|:--- |:--- |:--- |:--- |:--- | +| 🟠 | Fe60 Ni20 Cr10 Zr10 | Zr10 Cr10 Fe60 Ni20 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr20 Zr10 | Zr10 Cr20 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr10 Zr20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe25 Ni25 Cr25 Zr25 | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | Ti0.1 (ZrHfNb)0.3 | Hf30 Zr30 Ti10 Nb30 | | No property data! | +| 🟠 | Fe0.60 Ni0.10 Cr0.10 Zr0.20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | CreepRate | Uncommon property! | +| 🟠 | W90 Mo5 Ti5 | Ti5 W90 Mo5 | | No property data! | +| 🟠 | HfMoNbZrTiCrAlW | Hf12.5 Zr12.5 Ti12.5 Nb12.5 W12.5 Mo12.5 Cr12.5 Al12.5 | | No property data! | +| 🟠 | CoCrFeNi | Cr25 Fe25 Co25 Ni25 | tensile ductility | Uncommon property! | +| 🟠 | CoCrFeNiMo0.2 | Mo4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | CoNiFe | Fe33.3 Co33.3 Ni33.3 | tensile ductility | Uncommon property! | +| 🟠 | FeCrCoMnNi | Cr20 Mn20 Fe20 Co20 Ni20 | tensile ductility | Uncommon property! | +| 🟠 | Co20.6Cr19.9Fe19.5Ni20.9Mn19.1 | Cr19.9 Mn19.1 Fe19.5 Co20.6 Ni20.9 | tensile ductility | Uncommon property! | +| 🟠 | FeCoNiCrTi0.2 | Ti4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🔴 | Un40 O60 | | | Can't parse composition!: Un40 O60 --> Can't parse Element or Species from str: Un. | + diff --git a/PyQAlloyReport2023-27-Oct-21-10.md b/PyQAlloyReport2023-27-Oct-21-10.md new file mode 100644 index 0000000..79a3239 --- /dev/null +++ b/PyQAlloyReport2023-27-Oct-21-10.md @@ -0,0 +1,31 @@ + +# PyQAlloyReport 2023-27-Oct-21-10 + +**Legend:**   🟢 Successful Upload / 🟠 Abnormal Upload / 🔴 Failed Upload + +| | Raw Formula | Percentile Formula | Property | Comment | +|:--- |:--- |:--- |:--- |:--- | +| 🟠 | Fe60 Ni20 Cr10 Zr10 | Zr10 Cr10 Fe60 Ni20 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr20 Zr10 | Zr10 Cr20 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr10 Zr20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe25 Ni25 Cr25 Zr25 | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | Ti0.1 (ZrHfNb)0.3 | Hf30 Zr30 Ti10 Nb30 | | No property data! | +| 🟠 | Fe0.60 Ni0.10 Cr0.10 Zr0.20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | CreepRate | Uncommon property! | +| 🟠 | W90 Mo5 Ti5 | Ti5 W90 Mo5 | | No property data! | +| 🟠 | HfMoNbZrTiCrAlW | Hf12.5 Zr12.5 Ti12.5 Nb12.5 W12.5 Mo12.5 Cr12.5 Al12.5 | | No property data! | +| 🟠 | CoCrFeNi | Cr25 Fe25 Co25 Ni25 | tensile ductility | Uncommon property! | +| 🟠 | CoCrFeNiMo0.2 | Mo4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | CoNiFe | Fe33.3 Co33.3 Ni33.3 | tensile ductility | Uncommon property! | +| 🟠 | FeCrCoMnNi | Cr20 Mn20 Fe20 Co20 Ni20 | tensile ductility | Uncommon property! | +| 🟠 | Co20.6Cr19.9Fe19.5Ni20.9Mn19.1 | Cr19.9 Mn19.1 Fe19.5 Co20.6 Ni20.9 | tensile ductility | Uncommon property! | +| 🟠 | FeCoNiCrTi0.2 | Ti4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🔴 | Un40 O60 | | | Can't parse composition!: Un40 O60 --> Can't parse Element or Species from str: Un. | + diff --git a/PyQAlloyReport2023-27-Oct-21-20.md b/PyQAlloyReport2023-27-Oct-21-20.md new file mode 100644 index 0000000..61b5ceb --- /dev/null +++ b/PyQAlloyReport2023-27-Oct-21-20.md @@ -0,0 +1,7 @@ + +# PyQAlloyReport 2023-27-Oct-21-20 + +**Legend:**   🟢 Successful Upload / 🟠 Abnormal Upload / 🔴 Failed Upload + +| | Raw Formula | Percentile Formula | Property | Comment | +|:--- |:--- |:--- |:--- |:--- | diff --git a/PyQAlloyReport2023-27-Oct-21-24.md b/PyQAlloyReport2023-27-Oct-21-24.md new file mode 100644 index 0000000..f6ba220 --- /dev/null +++ b/PyQAlloyReport2023-27-Oct-21-24.md @@ -0,0 +1,31 @@ + +# PyQAlloyReport 2023-27-Oct-21-24 + +**Legend:**   🟢 Successful Upload / 🟠 Abnormal Upload / 🔴 Failed Upload + +| | Raw Formula | Percentile Formula | Property | Comment | +|:--- |:--- |:--- |:--- |:--- | +| 🟠 | Fe60 Ni20 Cr10 Zr10 | Zr10 Cr10 Fe60 Ni20 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr20 Zr10 | Zr10 Cr20 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe60 Ni10 Cr10 Zr20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | Fe25 Ni25 Cr25 Zr25 | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | UTS | Uncommon property! | +| 🟠 | Ti0.1 (ZrHfNb)0.3 | Hf30 Zr30 Ti10 Nb30 | | No property data! | +| 🟠 | Fe0.60 Ni0.10 Cr0.10 Zr0.20 | Zr20 Cr10 Fe60 Ni10 | UTS | Uncommon property! | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | CreepRate | Uncommon property! | +| 🟠 | W90 Mo5 Ti5 | Ti5 W90 Mo5 | | No property data! | +| 🟠 | HfMoNbZrTiCrAlW | Hf12.5 Zr12.5 Ti12.5 Nb12.5 W12.5 Mo12.5 Cr12.5 Al12.5 | | No property data! | +| 🟠 | CoCrFeNi | Cr25 Fe25 Co25 Ni25 | tensile ductility | Uncommon property! | +| 🟠 | CoCrFeNiMo0.2 | Mo4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | CoNiFe | Fe33.3 Co33.3 Ni33.3 | tensile ductility | Uncommon property! | +| 🟠 | FeCrCoMnNi | Cr20 Mn20 Fe20 Co20 Ni20 | tensile ductility | Uncommon property! | +| 🟠 | Co20.6Cr19.9Fe19.5Ni20.9Mn19.1 | Cr19.9 Mn19.1 Fe19.5 Co20.6 Ni20.9 | tensile ductility | Uncommon property! | +| 🟠 | FeCoNiCrTi0.2 | Ti4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Uncommon property! | +| 🔴 | Un40 O60 | | | Can't parse composition!: Un40 O60 --> Can't parse Element or Species from str: Un. | + diff --git a/PyQAlloyReport2023-27-Oct-21-49.md b/PyQAlloyReport2023-27-Oct-21-49.md new file mode 100644 index 0000000..48b292d --- /dev/null +++ b/PyQAlloyReport2023-27-Oct-21-49.md @@ -0,0 +1,31 @@ + +# PyQAlloyReport 2023-27-Oct-21-49 + +**Legend:**   🟢 Successful Upload / 🟠 Abnormal Upload / 🔴 Failed Upload + +| | Raw Formula | Percentile Formula | Property | Comment | +|:--- |:--- |:--- |:--- |:--- | +| 🔴 | Fe60 Ni20 Cr10 Zr10 | Zr10 Cr10 Fe60 Ni20 | UTS | Unreasonably high UTS value of 750000000.0 | +| 🔴 | Fe60 Ni10 Cr20 Zr10 | Zr10 Cr20 Fe60 Ni10 | UTS | Unreasonably high UTS value of 650000000.0 | +| 🔴 | Fe60 Ni10 Cr10 Zr20 | Zr20 Cr10 Fe60 Ni10 | UTS | Unreasonably high UTS value of 700000000.0 | +| 🔴 | Fe25 Ni25 Cr25 Zr25 | Zr25 Cr25 Fe25 Ni25 | UTS | Unreasonably high UTS value of 550000000.0 | +| 🔴 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | UTS | Unreasonably high UTS value of 580000000.0 | +| 🟠 | Ti0.1 (ZrHfNb)0.3 | Hf30 Zr30 Ti10 Nb30 | | No property data! | +| 🔴 | Fe0.60 Ni0.10 Cr0.10 Zr0.20 | Zr20 Cr10 Fe60 Ni10 | UTS | Unreasonably high UTS value of 670000000.0 | +| 🟠 | FeNiCrZr | Zr25 Cr25 Fe25 Ni25 | CreepRate | Uncommon property! | +| 🟠 | W90 Mo5 Ti5 | Ti5 W90 Mo5 | | No property data! | +| 🟠 | HfMoNbZrTiCrAlW | Hf12.5 Zr12.5 Ti12.5 Nb12.5 W12.5 Mo12.5 Cr12.5 Al12.5 | | No property data! | +| 🔴 | CoCrFeNi | Cr25 Fe25 Co25 Ni25 | tensile ductility | Unreasonably high tensile ductility value of 48.0 | +| 🔴 | CoCrFeNiMo0.2 | Mo4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Unreasonably high tensile ductility value of 47.0 | +| 🔴 | CoNiFe | Fe33.3 Co33.3 Ni33.3 | tensile ductility | Unreasonably high tensile ductility value of 47.0 | +| 🔴 | FeCrCoMnNi | Cr20 Mn20 Fe20 Co20 Ni20 | tensile ductility | Unreasonably high tensile ductility value of 47.0 | +| 🔴 | Co20.6Cr19.9Fe19.5Ni20.9Mn19.1 | Cr19.9 Mn19.1 Fe19.5 Co20.6 Ni20.9 | tensile ductility | Unreasonably high tensile ductility value of 60.5 | +| 🔴 | FeCoNiCrTi0.2 | Ti4.8 Cr23.8 Fe23.8 Co23.8 Ni23.8 | tensile ductility | Unreasonably high tensile ductility value of 46.0 | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🟠 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile yield strength | Uncommon property! | +| 🔴 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Unreasonably high tensile ductility value of 22.4 | +| 🔴 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Unreasonably high tensile ductility value of 34.0 | +| 🔴 | Ti30 Zr30 Hf16 Nb24 | Hf16 Zr30 Ti30 Nb24 | tensile ductility | Unreasonably high tensile ductility value of 25.6 | +| 🔴 | Un40 O60 | | | Can't parse composition!: Un40 O60 --> Can't parse Element or Species from str: Un. | +