FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit d709ae3d authored by M.D. Driver's avatar M.D. Driver
Browse files

created script for evaluating the value based on the polynomial coefficients,...

created script for evaluating the value based on the polynomial coefficients, including if different parts of the data are fitted with different coefficents.
parent f6e07c2c
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Script for calculating the Energy values when given polynomial coefficients.
This copes with fitting to positive and negative plot regions as well as
fitting over the full range.
@author: mark
"""
import logging
import numpy as np
import numpy.polynomial.polynomial as poly
logging.basicConfig()
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.WARN)
def calculate_polynomial_values(x_values, polynomial_coefficients):
"""This evaluates the polynomial function for the given x values.
If a dict is given, signifying 2 different fitting regimes, that is used,
else it just calls polyval, assuming a single numpy array of coefficients
was given.
"""
if type(polynomial_coefficients) is dict:
return calculate_poly_value_for_array_from_dict(x_values, polynomial_coefficients)
else:
return calculate_polynomial_value(x_values, polynomial_coefficients)
def calculate_poly_value_for_array_from_dict(x_values, poly_coeffs):
"""This calculates the polynomial values for the given x values,
using a different coefficient set depending on x value sign.
"""
poly_values = np.empty(x_values.shape)
for i in range(len(x_values)):
poly_values[i] = calculate_poly_value_from_dict(x_values[i], poly_coeffs)
return poly_values
def calculate_poly_value_from_dict(x_value, poly_coeffs):
"""This calculates the polynomial value
"""
if x_value < 0.0:
return calculate_polynomial_value(x_value, poly_coeffs["negative"])
else:
return calculate_polynomial_value(x_value, poly_coeffs["positive"])
def calculate_polynomial_value(x_value, polynomial_coefficients):
"""This calculates the value.
"""
return poly.polyval(x_value, polynomial_coefficients)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Script for testing the polynomialvaluecalculator.
@author: mark
"""
import logging
import numpy as np
import unittest
import solventmapcreator.polynomialanalysis.polynomialvaluecalculator as polyvalcalc
logging.basicConfig()
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.WARN)
class PolynomialValueCalculatorTestCase(unittest.TestCase):
"""Test case for the polynomialvaluecalculator script.
"""
def setUp(self):
"""Set up for tests
"""
self.poly_coeff_dict = {"positive":np.array([0.5, 0.0, 1.0]),
"negative":np.array([0.5, 0.0, -1.0])}
self.input_array = np.array([x - 2.0 for x in range(5)])
def tearDown(self):
"""Clean up after tests.
"""
del self.poly_coeff_dict
def test_calculate_polynomial_values(self):
"""Test to see if expected arrays are produced.
"""
expected_array1 = np.array([-3.5, -0.5, 0.5, 1.5, 4.5])
actual_array1 = polyvalcalc.calculate_polynomial_values(self.input_array, self.poly_coeff_dict)
np.testing.assert_array_almost_equal(expected_array1, actual_array1)
expected_array2 = np.array([4.5, 1.5, 0.5, 1.5, 4.5])
actual_array2 = polyvalcalc.calculate_polynomial_values(self.input_array, self.poly_coeff_dict["positive"])
np.testing.assert_array_almost_equal(expected_array2, actual_array2)
def test_calculate_poly_value_for_array_from_dict(self):
"""Test to see if expected array iss produced.
"""
expected_array = np.array([-3.5, -0.5, 0.5, 1.5, 4.5])
actual_array = polyvalcalc.calculate_poly_value_for_array_from_dict(self.input_array, self.poly_coeff_dict)
np.testing.assert_array_almost_equal(expected_array, actual_array)
def test_calculate_poly_value_from_dict(self):
"""Test to see if expected values are calculated based on sign.
"""
expected_value1 = 1.5
actual_value1 = polyvalcalc.calculate_poly_value_from_dict(1.0, self.poly_coeff_dict)
self.assertAlmostEqual(expected_value1, actual_value1)
expected_value2 = -0.5
actual_value2 = polyvalcalc.calculate_poly_value_from_dict(-1.0, self.poly_coeff_dict)
self.assertAlmostEqual(expected_value2, actual_value2)
def test_calculate_polynomial_value(self):
"""Test to see if expected value is returned.
"""
expected_value = 1.5
actual_value = polyvalcalc.calculate_polynomial_value(1.0, self.poly_coeff_dict["positive"])
self.assertAlmostEqual(expected_value, actual_value)
......@@ -22,6 +22,7 @@ from solventmapcreator.test.solvationcalculationtest.fractionaloccupancycalculat
from solventmapcreator.test.polynomialanalysistest.polynomialdataanalysistest import PolynomialDataAnalysisTestCase
from solventmapcreator.test.polynomialanalysistest.polynomialcomparisontest import PolynomialComparisonTestCase
from solventmapcreator.test.polynomialanalysistest.polynomialplottingtest import PolynomialPlottingTestCase
from solventmapcreator.test.polynomialanalysistest.polynomialvaluecalculatortest import PolynomialValueCalculatorTestCase
from solventmapcreator.test.clusteringanalysistest.matrixinputtest import MatrixInputTestCase
from solventmapcreator.test.clusteringanalysistest.clustercalculationtest import ClusterCalculationTestCase
from solventmapcreator.test.clusteringanalysistest.clusterstatisticstest import ClusterStatisticsTestCase
......@@ -42,7 +43,8 @@ SOLVATION_CALCULATION_TEST_CASES = [SolvationCalculatorTestCase,
POLYNOMIAL_ANALYSIS_TEST_CASES = [PolynomialDataAnalysisTestCase,
PolynomialComparisonTestCase,
PolynomialPlottingTestCase]
PolynomialPlottingTestCase,
PolynomialValueCalculatorTestCase]
CLUSTERING_ANALYSIS_TEST_CASES = [MatrixInputTestCase, ClusterCalculationTestCase,
ClusterStatisticsTestCase, ClusterAnalysisTestCase]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment