ReFRACtor
swig_cast_test.py
Go to the documentation of this file.
1 from builtins import object
2 # Test that we do casting correctly, where we take a function returning a
3 # boost::shared_ptr<Base> and return the exact derived type to python
4 # (e.g., a function returning a boost::shared_ptr<Pressure>, which is actually
5 # a PressureSigma, will return the PressureSigma type to python.
6 
7 from nose.tools import *
8 from full_physics import *
9 from numpy.testing import *
10 from nose.plugins.skip import Skip, SkipTest
11 
12 if(not have_full_physics_swig):
13  class PressureImpBase(object):
14  pass
15 
16 # A simple python based class, to
18  '''This class uses pressure sigma levels to determine the pressure
19  levels we do the RT on.'''
20  def __init__(self, a, b, surface_pressure, pressure_flag = True):
21  coef = np.array([surface_pressure])
22  flag = np.array([pressure_flag])
23  PressureImpBase.__init__(self,coef, flag)
24  self.a = a
25  self.b = b
26 
27  def clone(self):
28  res = PressureSigma(self.a, self.b,
29  self.coefficient().value()[0],
30  self.used_flag_value()[0])
31  return res
32 
33  def calc_pressure_grid(self):
34  t = self.b * self.coefficient()[0] + self.a
35  self.pgrid.reference(np_to_array_ad(t))
36 
37  def state_vector_name_i(self, i):
38  return "Surface Pressure (Pascals)"
39 
40  def my_func(self):
41  '''Function just to make sure we have an object this type.'''
42  return 102
43 
44  def desc(self):
45  return '''
46 Pressure Sigma:
47  Surface pressure: %f
48  Retrieval flag: %s
49  a: %s
50  b: %s
51 ''' %(self.coefficient().value()[0], self.used_flag_value()[0].__str__(),
52  self.a.__str__(), self.b.__str__())
53 
55  '''Test returning a C++ class'''
56  if(not have_full_physics_swig):
57  raise SkipTest
58  psigma = PressureSigma([0,0,0], [0.3, 0.6, 1.0], 10, True)
59  pwrap = PressureHolder(psigma)
60  # Test functions only in PressureSigma
61  assert_almost_equal(pwrap.p.b, [0.3, 0.6, 1.0])
62  pinp = PressureLevelInput([1, 2, 3])
63  plevel = PressureFixedLevel(False, pinp, 2.5)
64  pwrap.p = plevel
65  # Function only in PressureFixedLevel
66  assert pwrap.p.number_active_level == 3
67 
68 @raises(AttributeError)
70  '''Test returning a C++ class'''
71  if(not have_full_physics_swig):
72  raise SkipTest
73  psigma = PressureSigma([0,0,0], [0.3, 0.6, 1.0], 10, True)
74  pwrap = PressureHolder(psigma)
75  pinp = PressureLevelInput([1, 2, 3])
76  plevel = PressureFixedLevel(False, pinp, 2.5)
77  pwrap.p = plevel
78  # This will cause an exception
79  pwrap.p.b
80 
82  '''Make sure we handle classes that are actually python correctly.'''
83  if(not have_full_physics_swig):
84  raise SkipTest
85  psigma = PythonPressureSigma([0,0,0], [0.3, 0.6, 1.0], 10, True)
86  pwrap = PressureHolder(psigma)
87  assert pwrap.p.my_func() == 102
def test_cast_cpp_excep()
def test_cast_python()
double value(const FullPhysics::AutoDerivative< double > &Ad)
def __init__(self, a, b, surface_pressure, pressure_flag=True)

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:10