# 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.
"""Test for SiC"""
# pylint: disable=missing-function-docstring,missing-class-docstring,protected-access,invalid-name,no-self-use,no-method-argument,import-outside-toplevel
import unittest
from armi.materials.siC import SiC
from armi.materials.tests import test_materials
[docs]class Test_SiC(test_materials._Material_Test, unittest.TestCase):
"""SiC tests"""
MAT_CLASS = SiC
[docs] def test_density(self):
cur = self.mat.density(Tc=25)
ref = 3.159
delta = ref * 0.001
self.assertAlmostEqual(cur, ref, delta=delta)
[docs] def test_meltingPoint(self):
cur = self.mat.meltingPoint()
ref = 3003
delta = ref * 0.0001
self.assertAlmostEqual(cur, ref, delta=delta)
[docs] def test_heatCapacity(self):
delta = 0.0001
cur = self.mat.heatCapacity(300)
ref = 982.20789
self.assertAlmostEqual(cur, ref, delta=delta)
cur = self.mat.heatCapacity(1500)
ref = 1330.27867
self.assertAlmostEqual(cur, ref, delta=delta)
[docs] def test_propertyValidTemperature(self):
self.assertGreater(len(self.mat.propertyValidTemperature), 0)
if __name__ == "__main__":
unittest.main()