1 |
//$Id$ |
//$Id$ |
2 |
/*============================================================================= |
/* |
3 |
|
************************************************************ |
4 |
****************************************************************************** |
* Copyright 2006 by ACcESS MNRF * |
5 |
* * |
* * |
6 |
* COPYRIGHT ACcESS 2004 - All Rights Reserved * |
* http://www.access.edu.au * |
7 |
* * |
* Primary Business: Queensland, Australia * |
8 |
* This software is the property of ACcESS. No part of this code * |
* Licensed under the Open Software License version 3.0 * |
9 |
* may be copied in any form or by any means without the expressed written * |
* http://www.opensource.org/licenses/osl-3.0.php * |
10 |
* consent of ACcESS. Copying, use or modification of this software * |
* * |
11 |
* by any unauthorised person is illegal unless that * |
************************************************************ |
12 |
* person has a software license agreement with ACcESS. * |
*/ |
13 |
* * |
|
14 |
****************************************************************************** |
#include "Data.h" |
15 |
|
#include "FunctionSpace.h" |
16 |
******************************************************************************/ |
#include "FunctionSpaceFactory.h" |
17 |
|
#include "DataFactory.h" |
18 |
#include "escript/Data/Data.h" |
#include "AbstractContinuousDomain.h" |
19 |
#include "escript/Data/DataVariable.h" |
#include "AbstractDomain.h" |
20 |
#include "escript/Data/FunctionSpace.h" |
#include "Utils.h" |
21 |
#include "escript/Data/FunctionSpaceFactory.h" |
#include "AbstractSystemMatrix.h" |
22 |
#include "escript/Data/DataFactory.h" |
#include "DataVector.h" |
23 |
#include "escript/Data/AbstractContinuousDomain.h" |
|
|
#include "escript/Data/AbstractDomain.h" |
|
|
#include "escript/Data/Utils.h" |
|
24 |
#include "esysUtils/esysExceptionTranslator.h" |
#include "esysUtils/esysExceptionTranslator.h" |
25 |
|
|
26 |
#include <boost/python.hpp> |
#include <boost/python.hpp> |
70 |
{ |
{ |
71 |
def("setNumberOfThreads",escript::setNumberOfThreads); |
def("setNumberOfThreads",escript::setNumberOfThreads); |
72 |
def("getNumberOfThreads",escript::getNumberOfThreads); |
def("getNumberOfThreads",escript::getNumberOfThreads); |
73 |
|
def("releaseUnusedMemory",escript::releaseUnusedMemory); |
74 |
|
|
75 |
|
|
76 |
// |
// |
77 |
// Interface for AbstractDomain |
// Interface for AbstractDomain |
100 |
.def("getX",&escript::FunctionSpace::getX) |
.def("getX",&escript::FunctionSpace::getX) |
101 |
.def("getNormal",&escript::FunctionSpace::getNormal) |
.def("getNormal",&escript::FunctionSpace::getNormal) |
102 |
.def("getSize",&escript::FunctionSpace::getSize) |
.def("getSize",&escript::FunctionSpace::getSize) |
103 |
|
.def("setTags",&escript::FunctionSpace::setTags) |
104 |
.def("getTagFromDataPointNo",&escript::FunctionSpace::getTagFromDataPointNo) |
.def("getTagFromDataPointNo",&escript::FunctionSpace::getTagFromDataPointNo) |
105 |
.def("__str__",&escript::FunctionSpace::toString) |
.def("__str__",&escript::FunctionSpace::toString) |
106 |
.def(self == self) |
.def(self == self) |
107 |
.def(self != self); |
.def(self != self); |
|
|
|
|
// |
|
|
// Interface for DataVariable |
|
|
// |
|
|
class_<escript::DataVariable>("DataVariable",init<>()) |
|
|
.def(init<escript::Data*>()) |
|
|
.def("evaluate",&escript::DataVariable::evaluate) |
|
|
.def("sum",&escript::DataVariable::sum) |
|
|
.def("diff",&escript::DataVariable::diff); |
|
|
|
|
108 |
// |
// |
109 |
// Interface for Data |
// Interface for Data |
110 |
// |
// |
121 |
.def("getDomain",&escript::Data::getDomain,return_internal_reference<>()) |
.def("getDomain",&escript::Data::getDomain,return_internal_reference<>()) |
122 |
.def("getFunctionSpace",&escript::Data::getFunctionSpace,return_internal_reference<>()) |
.def("getFunctionSpace",&escript::Data::getFunctionSpace,return_internal_reference<>()) |
123 |
.def("isEmpty",&escript::Data::isEmpty) |
.def("isEmpty",&escript::Data::isEmpty) |
124 |
|
.def("isProtected",&escript::Data::isProtected) |
125 |
|
.def("setProtection",&escript::Data::setProtection) |
126 |
.def("getShape",&escript::Data::getShapeTuple) |
.def("getShape",&escript::Data::getShapeTuple) |
127 |
.def("getRank",&escript::Data::getDataPointRank) |
.def("getRank",&escript::Data::getDataPointRank) |
128 |
|
.def("dump",&escript::Data::dump) |
129 |
.def("copyWithMask",&escript::Data::copyWithMask) |
.def("copyWithMask",&escript::Data::copyWithMask) |
130 |
.def("setTaggedValue",&escript::Data::setTaggedValue) |
.def("setTaggedValue",&escript::Data::setTaggedValue) |
131 |
.def("setRefValue",&escript::Data::setRefValue) |
.def("getNumberOfDataPoints",&escript::Data::getNumDataPoints) |
|
.def("getRefValue",&escript::Data::getRefValue) |
|
132 |
.def("expand",&escript::Data::expand) |
.def("expand",&escript::Data::expand) |
133 |
.def("tag",&escript::Data::tag) |
.def("tag",&escript::Data::tag) |
134 |
.def("copy",&escript::Data::copy) |
.def("copy",&escript::Data::copy) |
135 |
.def("convertToNumArray",&escript::Data::convertToNumArray) |
.def("setValueOfDataPoint",&escript::Data::setValueOfDataPointToPyObject) |
136 |
.def("convertToNumArrayFromSampleNo",&escript::Data::convertToNumArrayFromSampleNo) |
.def("setValueOfDataPoint",&escript::Data::setValueOfDataPointToArray) |
137 |
.def("convertToNumArrayFromDPNo",&escript::Data::convertToNumArrayFromDPNo) |
.def("setValueOfDataPoint",&escript::Data::setValueOfDataPoint) |
138 |
.def("fillFromNumArray",&escript::Data::fillFromNumArray) |
.def("getValueOfDataPoint",&escript::Data::getValueOfDataPoint) |
139 |
|
.def("getValueOfGlobalDataPoint",&escript::Data::getValueOfGlobalDataPoint) |
140 |
.def("interpolate",&escript::Data::interpolate) |
.def("interpolate",&escript::Data::interpolate) |
141 |
.def("mindp",&escript::Data::mindp) |
.def("minGlobalDataPoint",&escript::Data::minGlobalDataPoint) |
|
|
|
142 |
.def("saveDX",&escript::Data::saveDX) |
.def("saveDX",&escript::Data::saveDX) |
143 |
.def("saveVTK",&escript::Data::saveVTK) |
.def("saveVTK",&escript::Data::saveVTK) |
144 |
.def("getTagNumber",&escript::Data::getTagNumber) |
.def("getTagNumber",&escript::Data::getTagNumber) |
156 |
.def("_whereNegative",&escript::Data::whereNegative) |
.def("_whereNegative",&escript::Data::whereNegative) |
157 |
.def("_whereNonNegative",&escript::Data::whereNonNegative) |
.def("_whereNonNegative",&escript::Data::whereNonNegative) |
158 |
.def("_whereNonPositive",&escript::Data::whereNonPositive) |
.def("_whereNonPositive",&escript::Data::whereNonPositive) |
159 |
.def("_whereZero",&escript::Data::whereZero) |
.def("_whereZero",&escript::Data::whereZero,(arg("tol")=0.0)) |
160 |
.def("_whereNonZero",&escript::Data::whereNonZero) |
.def("_whereNonZero",&escript::Data::whereNonZero,(arg("tol")=0.0)) |
161 |
|
.def("_erf",&escript::Data::erf) |
162 |
.def("_sin",&escript::Data::sin) |
.def("_sin",&escript::Data::sin) |
163 |
.def("_cos",&escript::Data::cos) |
.def("_cos",&escript::Data::cos) |
164 |
.def("_tan",&escript::Data::tan) |
.def("_tan",&escript::Data::tan) |
176 |
.def("_log10",&escript::Data::log10) |
.def("_log10",&escript::Data::log10) |
177 |
.def("_log",&escript::Data::log) |
.def("_log",&escript::Data::log) |
178 |
.def("_sign",&escript::Data::sign) |
.def("_sign",&escript::Data::sign) |
179 |
|
.def("_symmetric",&escript::Data::symmetric) |
180 |
|
.def("_nonsymmetric",&escript::Data::nonsymmetric) |
181 |
|
.def("_trace",&escript::Data::trace) |
182 |
|
.def("_swap_axes",&escript::Data::swapaxes) |
183 |
|
.def("_eigenvalues",&escript::Data::eigenvalues) |
184 |
|
.def("_eigenvalues_and_eigenvectors",&escript::Data::eigenvalues_and_eigenvectors,(arg("tol")=1.e-13)) |
185 |
// functions returning a single real number: |
// functions returning a single real number: |
186 |
.def("_Lsup",&escript::Data::Lsup) |
.def("_Lsup",&escript::Data::Lsup) |
187 |
.def("_sup",&escript::Data::sup) |
.def("_sup",&escript::Data::sup) |
201 |
// following two functions implement the python ** operator |
// following two functions implement the python ** operator |
202 |
.def("__pow__",&escript::Data::powO) |
.def("__pow__",&escript::Data::powO) |
203 |
.def("__pow__",&escript::Data::powD) |
.def("__pow__",&escript::Data::powD) |
204 |
|
.def("__rpow__",&escript::Data::rpowO) |
205 |
// NOTE:: The order of these declarations is important. Anything |
// NOTE:: The order of these declarations is important. Anything |
206 |
// declared before the generic declaration isn't found so the generic |
// declared before the generic declaration isn't found so the generic |
207 |
// version will be called. |
// version will be called. |
247 |
// |
// |
248 |
// Factory methods for Data |
// Factory methods for Data |
249 |
// |
// |
250 |
|
def("load",escript::load); |
251 |
|
def("loadIsConfigured",escript::loadConfigured); |
252 |
def("Scalar",escript::Scalar, |
def("Scalar",escript::Scalar, |
253 |
(arg("value")=0.0, |
(arg("value")=0.0, |
254 |
arg("what")=escript::FunctionSpace(), |
arg("what")=escript::FunctionSpace(), |
271 |
arg("expanded")=false)); |
arg("expanded")=false)); |
272 |
|
|
273 |
// |
// |
274 |
|
// Binary operators |
275 |
|
// |
276 |
|
def("C_GeneralTensorProduct",escript::C_GeneralTensorProduct, |
277 |
|
(arg("arg0")=escript::Data(), |
278 |
|
arg("arg1")=escript::Data(), |
279 |
|
arg("axis_offset")=0, |
280 |
|
arg("transpose")=0)); |
281 |
|
|
282 |
|
// |
283 |
// Interface for AbstractSystemMatrix |
// Interface for AbstractSystemMatrix |
284 |
// |
// |
285 |
class_<escript::AbstractSystemMatrix>("Operator",init<>()) |
class_<escript::AbstractSystemMatrix>("Operator",init<>()) |