ReFRACtor
array_with_unit.cc
Go to the documentation of this file.
1 #include "array_with_unit.h"
2 
3 using namespace FullPhysics;
4 
5 #ifdef HAVE_LUA
6 #include "register_lua.h"
7 
8 DoubleWithUnit awu_double_1d_read(const ArrayWithUnit<double, 1>& V, int i)
9 { return V(i); }
10 DoubleWithUnit awu_double_2d_read(const ArrayWithUnit<double, 1>& V, int i, int j)
11 { return V(i, j); }
12 DoubleWithUnit awu_double_3d_read(const ArrayWithUnit<double, 1>& V, int i, int j, int k)
13 { return V(i, j, k); }
14 
15 template <class A>
16 std::string array_with_unit_tostring(const A& V)
17 {
18  std::ostringstream os;
19  os << V;
20  return os.str();
21 }
22 
23 template <class A>
24 std::string array_with_unit_unit_get(const A& V)
25 {
26  return V.units.name();
27 }
28 
29 template <class A>
30 void array_with_unit_unit_set(A& V, std::string& Unit_name)
31 {
32  V.units = Unit(Unit_name);
33 }
34 
35 
36 typedef ArrayWithUnit<double, 1> awud1;
37 typedef ArrayWithUnit<double, 2> awud2;
38 typedef ArrayWithUnit<double, 3> awud3;
39 REGISTER_LUA_CLASS_NAME(awud1, ArrayWithUnit_1d)
40 .def(luabind::constructor<const blitz::Array<double, 1>&,
41  const std::string&>())
42 .def_readwrite("value", &awud1::value)
43 .property("units",
44  &array_with_unit_unit_get<awud1>,
45  &array_with_unit_unit_set<awud1>)
46 .def("__call", &awu_double_1d_read)
47 .def("__tostring", &array_with_unit_tostring<awud1>)
49 
50 REGISTER_LUA_CLASS_NAME(awud2, ArrayWithUnit_2d)
51 .def(luabind::constructor<const blitz::Array<double, 2>&,
52  const std::string&>())
53 .def_readwrite("value", &awud2::value)
54 .property("units",
55  &array_with_unit_unit_get<awud2>,
56  &array_with_unit_unit_set<awud2>)
57 .def("__call", &awu_double_2d_read)
58 .def("__tostring", &array_with_unit_tostring<awud2>)
60 
61 REGISTER_LUA_CLASS_NAME(awud3, ArrayWithUnit_3d)
62 .def(luabind::constructor<const blitz::Array<double, 3>&,
63  const std::string&>())
64 .def_readwrite("value", &awud3::value)
65 .property("units",
66  &array_with_unit_unit_get<awud3>,
67  &array_with_unit_unit_set<awud3>)
68 .def("__call", &awu_double_3d_read)
69 .def("__tostring", &array_with_unit_tostring<awud3>)
71 
72 #endif
STL namespace.
Apply value function to a blitz array.
const Unit A("A", 1.0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0)
#define REGISTER_LUA_CLASS_NAME(X, Y)
Definition: register_lua.h:129
We frequently have a double with units associated with it.
Libraries such as boost::units allow unit handling where we know the units at compile time...
Definition: unit.h:25
Contains classes to abstract away details in various Spurr Radiative Transfer software.
Definition: doxygen_python.h:1
#define REGISTER_LUA_END()
Definition: register_lua.h:134
def(luabind::constructor< int >()) .def("rows"
double value(const FullPhysics::AutoDerivative< double > &Ad)

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