![]() |
Mesh Oriented datABase
(version 5.4.1)
Array-based unstructured mesh datastructure
|
Go to the source code of this file.
Namespaces | |
namespace | moab |
Class representing axis-aligned bounding box. | |
Functions | |
double | moab::physField (double x, double y, double z, double factor) |
void | moab::putElementField (Interface *mbi, const char *tagname, double factor) |
void | moab::putSpectralElementField (Interface *mbi, int dim, int np, const char *tagname, double factor) |
void | moab::putVertexField (Interface *mbi, const char *tagname, double factor) |
int | main (int argc, char **argv) |
int main | ( | int | argc, |
char ** | argv | ||
) |
Definition at line 130 of file addfield.cpp.
References ErrorCode, MB_SUCCESS, and moab::putElementField().
{
using namespace moab;
Interface* mbi = new Core();
if( argc < 3 )
{
cout << "Usage: " << argv[0] << " [factor]\n"
<< "Writes both vertex and element fields.\n";
return 0;
}
mbi->load_mesh( argv[1] );
double factor = 1.0;
if( argc == 4 ) factor = atof( argv[3] );
//putVertexField( mbi, "vertex_field", factor );
putElementField( mbi, "T_proj", factor );
putElementField( mbi, "u_proj", 2. );
putElementField( mbi, "v_proj", 3. );
// putSpectralElementField(mbi, 2, 4, "spectral_element_field", factor);
//putSpectralElementField( mbi, 2, 4, "a2oTAG", factor );
ErrorCode result = mbi->write_mesh( argv[2] );
if( MB_SUCCESS == result )
cout << "wrote " << argv[2] << endl;
else
cout << "Failed to write " << argv[2] << endl;
// vector coords;
// mbi->get_vertex_coordinates(coords);
// double xavg = 0;
// for (int i = 0; i < coords.size()/3; i++) xavg += coords[i];
// cout << xavg << endl;
return 1;
}