Skip to content

Commit

Permalink
Merge pull request #36 from generein/main
Browse files Browse the repository at this point in the history
Correct temperature calculation
  • Loading branch information
shimwell authored Jun 11, 2023
2 parents 55fa45b + 09d9981 commit b424398
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/neutronics_material_maker/data/breeder_materials.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Li": {
"chemical_equation": "Li",
"density": "0.515 - 1.01e-4 * (temperature + 273.15 - 200)",
"density": "0.515 - 1.01e-4 * (temperature - 273.15 - 200)",
"density_unit": "g/cm3",
"comment": "http://aries.ucsd.edu/LIB/PROPS/PANOS/li.html",
"percent_type": "ao",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Pb842Li158": {
"chemical_equation": "Pb842Li158",
"density": "99.90*(0.1-16.8e-6*(temperature + 273.15))",
"density": "99.90*(0.1-16.8e-6*(temperature - 273.15))",
"density_unit": "g/cm3",
"comment": "density equation valid for in the range 240-350 C. source http://aries.ucsd.edu/LIB/PROPS/PANOS/lipb.html",
"percent_type": "ao",
Expand All @@ -10,7 +10,7 @@
},
"lithium-lead": {
"chemical_equation": "Pb842Li158",
"density": "99.90*(0.1-16.8e-6*(temperature + 273.15))",
"density": "99.90*(0.1-16.8e-6*(temperature - 273.15))",
"density_unit": "g/cm3",
"comment": "density equation valid for in the range 240-350 C. source http://aries.ucsd.edu/LIB/PROPS/PANOS/lipb.html",
"percent_type": "ao",
Expand All @@ -29,7 +29,7 @@
},
"FLiBe": {
"chemical_equation": "F2Li2BeF2",
"density": "2.214 - 4.2e-4 * (temperature + 273.15)",
"density": "2.214 - 4.2e-4 * (temperature - 273.15)",
"density_unit": "g/cm3",
"comment": "source http://aries.ucsd.edu/LIB/MEETINGS/0103-TRANSMUT/gohar/Gohar-present.pdf",
"percent_type": "ao",
Expand Down

0 comments on commit b424398

Please sign in to comment.