2010-04-24 17:26:44 -07:00
|
|
|
import os
|
2010-10-23 12:49:15 -07:00
|
|
|
|
2010-04-29 22:29:35 -07:00
|
|
|
import inspect
|
|
|
|
import numpy as np
|
2010-04-24 17:26:44 -07:00
|
|
|
|
2011-03-22 10:10:19 -07:00
|
|
|
import logging
|
|
|
|
log = logging.getLogger("interp")
|
2010-04-24 17:26:44 -07:00
|
|
|
|
2009-12-27 09:48:27 -08:00
|
|
|
def rms(errors):
|
|
|
|
"""
|
|
|
|
root mean square calculation
|
|
|
|
"""
|
|
|
|
r = 0.0
|
|
|
|
for i in errors:
|
|
|
|
r += np.power(i, 2)
|
|
|
|
r = np.sqrt(r / len(errors))
|
|
|
|
return r
|
2010-01-30 11:15:00 -08:00
|
|
|
|
2011-03-23 23:26:27 -07:00
|
|
|
def baker_exact_2D(X):
|
2010-03-08 12:05:42 -08:00
|
|
|
"""
|
2011-03-22 13:20:48 -07:00
|
|
|
the exact function (2D) used from baker's article (for testing)
|
2010-03-08 12:05:42 -08:00
|
|
|
"""
|
2011-02-20 18:23:01 -08:00
|
|
|
x ,y = X
|
2011-03-22 13:20:48 -07:00
|
|
|
answer = np.power((np.sin(x * np.pi) * np.cos(y * np.pi)), 2)
|
|
|
|
log.debug(answer)
|
|
|
|
return answer
|
|
|
|
|
2011-03-23 23:26:27 -07:00
|
|
|
def friendly_exact_2D(X):
|
2011-03-22 13:20:48 -07:00
|
|
|
"""
|
|
|
|
A friendlier 2D func
|
|
|
|
"""
|
|
|
|
x ,y = X
|
|
|
|
answer = 1.0 + x*x + y*y
|
2010-11-01 14:54:12 -07:00
|
|
|
log.debug(answer)
|
|
|
|
return answer
|
2010-03-18 22:18:59 -07:00
|
|
|
|
2011-03-23 23:26:27 -07:00
|
|
|
def baker_exact_3D(X):
|
2010-03-18 22:18:59 -07:00
|
|
|
"""
|
|
|
|
the exact function (3D) used from baker's article (for testing)
|
|
|
|
"""
|
|
|
|
x = X[0]
|
|
|
|
y = X[1]
|
|
|
|
z = X[2]
|
2010-11-01 14:54:12 -07:00
|
|
|
answer = np.power((np.sin(x * np.pi / 2.0) * np.sin(y * np.pi / 2.0) * np.sin(z * np.pi / 2.0)), 2)
|
|
|
|
log.debug(answer)
|
|
|
|
return answer
|
2010-04-23 08:58:30 -07:00
|
|
|
|
2011-03-23 23:26:27 -07:00
|
|
|
def friendly_exact_3D(X):
|
2011-03-02 22:44:08 -08:00
|
|
|
x,y,z = X
|
|
|
|
return 1 + x*x + y*y + z*z
|
|
|
|
|
2011-03-28 21:11:38 -07:00
|
|
|
def improved_answer(answer, exact):
|
2010-04-29 22:29:35 -07:00
|
|
|
if not answer['error']:
|
2011-05-02 20:56:41 -07:00
|
|
|
# was probably just a linear interpolation
|
|
|
|
return False
|
2011-03-22 13:20:48 -07:00
|
|
|
|
2010-10-29 11:42:05 -07:00
|
|
|
log.debug('qlin: %s' % answer['qlin'])
|
|
|
|
log.debug('error: %s' % answer['error'])
|
|
|
|
log.debug('final: %s' % answer['final'])
|
|
|
|
log.debug('exact: %s' % exact)
|
2010-04-23 08:58:30 -07:00
|
|
|
|
2010-04-30 10:56:01 -07:00
|
|
|
if np.abs(answer['final'] - exact) <= np.abs(answer['qlin'] - exact):
|
2010-10-29 11:42:05 -07:00
|
|
|
log.debug(":) improved result")
|
2010-04-23 15:29:31 -07:00
|
|
|
return True
|
2010-04-23 08:58:30 -07:00
|
|
|
else:
|
2010-10-29 11:42:05 -07:00
|
|
|
log.debug(":( damaged result")
|
2010-04-23 15:29:31 -07:00
|
|
|
return False
|
2011-05-18 11:57:09 -07:00
|
|
|
def improved(qlin, err, final, exact):
|
|
|
|
if np.abs(final - exact) <= np.abs(qlin - exact):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2011-03-28 21:11:38 -07:00
|
|
|
|
|
|
|
def percent_improvement(answer, exact):
|
2011-05-17 20:07:23 -07:00
|
|
|
return np.abs(answer['error']) / exact
|