Source code for armi.materials.tests.test_b4c

# Copyright 2019 TerraPower, LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Tests for boron carbide."""
import unittest

from armi.materials.b4c import B4C, DEFAULT_THEORETICAL_DENSITY_FRAC
from armi.materials.tests.test_materials import _Material_Test


[docs]class B4C_TestCase(_Material_Test, unittest.TestCase): MAT_CLASS = B4C def setUp(self): _Material_Test.setUp(self) self.mat = B4C() self.B4C_theoretical_density = B4C() self.B4C_theoretical_density.applyInputParams(theoretical_density=0.5) self.B4C_TD_frac = B4C() self.B4C_TD_frac.applyInputParams(TD_frac=0.4) self.B4C_both = B4C() self.B4C_both.applyInputParams(theoretical_density=0.5, TD_frac=0.4)
[docs] def test_theoretical_pseudoDensity(self): ref = self.mat.pseudoDensity(500) reduced = self.B4C_theoretical_density.pseudoDensity(500) self.assertAlmostEqual(ref * 0.5 / DEFAULT_THEORETICAL_DENSITY_FRAC, reduced) reduced = self.B4C_TD_frac.pseudoDensity(500) self.assertAlmostEqual(ref * 0.4 / DEFAULT_THEORETICAL_DENSITY_FRAC, reduced) reduced = self.B4C_both.pseudoDensity(500) self.assertAlmostEqual(ref * 0.4 / DEFAULT_THEORETICAL_DENSITY_FRAC, reduced)
[docs] def test_propertyValidTemperature(self): self.assertGreater(len(self.mat.propertyValidTemperature), 0)