1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/*****************************************************************************
*
* Copyright (c) 2003-2020 by The University of Queensland
* http://www.uq.edu.au
*
* Primary Business: Queensland, Australia
* Licensed under the Apache License, version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Development until 2012 by Earth Systems Science Computational Center (ESSCC)
* Development 2012-2013 by School of Earth Sciences
* Development from 2014-2017 by Centre for Geoscience Computing (GeoComp)
* Development from 2019 by School of Earth and Environmental Sciences
**
*****************************************************************************/
#include <escript/Data.h>
#include <weipa/EscriptDataset.h>
#include <weipa/VisItControl.h>
#include <boost/python.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
#include <boost/python/object.hpp>
#include <boost/version.hpp>
using namespace boost::python;
BOOST_PYTHON_MODULE(weipacpp)
{
#if BOOST_VERSION >= 103500
// params are: bool show_user_defined, bool show_py_signatures, bool show_cpp_signatures
docstring_options docopt(true,true,false);
#endif
class_<weipa::EscriptDataset>("EscriptDataset","Represents an escript dataset including a domain and data variables for one timestep. It is used for exporting", init<>())
.def("setDomain", &weipa::EscriptDataset::setDomain)
.def("addData", &weipa::EscriptDataset::addData, (arg("data"), arg("name"), arg("units")=""))
.def("setCycleAndTime", &weipa::EscriptDataset::setCycleAndTime, args("cycle","time"))
.def("setMeshLabels", &weipa::EscriptDataset::setMeshLabels, (arg("x"),arg("y"),arg("z")=""))
.def("setMeshUnits", &weipa::EscriptDataset::setMeshUnits, (arg("x"),arg("y"),arg("z")=""))
.def("setMetadataSchemaString", &weipa::EscriptDataset::setMetadataSchemaString, (arg("schema")="", arg("metadata")=""))
.def("setSaveMeshData", &weipa::EscriptDataset::setSaveMeshData)
.def("saveSilo", &weipa::EscriptDataset::saveSilo, (arg("filename"), arg("useMultimesh")=true))
.def("saveVTK", &weipa::EscriptDataset::saveVTK, args("filename"));
// VisIt Control
def("visitInitialize", weipa::VisItControl::initialize, (arg("simFile"), arg("comment")=""));
def("visitPublishData", weipa::VisItControl::publishData, args("dataset"));
}
|