netgen/libsrc/interface/writedolfin.cpp

70 lines
1.8 KiB
C++
Raw Normal View History

2009-01-13 04:40:13 +05:00
//
// Write dolfin file
//
// by
// Kent-Andre Mardal <kent-and@simula.no>
#include <mystdlib.h>
#include <myadt.hpp>
#include <linalg.hpp>
#include <csg.hpp>
#include <meshing.hpp>
namespace netgen
{
#include "writeuser.hpp"
2022-02-17 20:52:07 +05:00
void WriteDolfinFormat (const Mesh & mesh, const filesystem::path & filename)
2009-01-13 04:40:13 +05:00
{
cout << "start writing dolfin export" << endl;
int np = mesh.GetNP();
int ne = mesh.GetNE();
2009-04-20 03:15:26 +06:00
// int nse = mesh.GetNSE();
2009-01-13 04:40:13 +05:00
int nsd = mesh.GetDimension();
2009-04-20 03:15:26 +06:00
// int invertsurf = mparam.inverttrigs;
// int i, j;
2009-01-13 04:40:13 +05:00
2022-02-17 20:52:07 +05:00
ofstream outfile (filename);
2009-01-13 04:40:13 +05:00
2009-04-20 03:15:26 +06:00
// char str[100];
2009-01-13 04:40:13 +05:00
outfile.precision(8);
outfile.setf (ios::fixed, ios::floatfield);
outfile.setf (ios::showpoint);
if ( nsd == 3) {
outfile << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" <<endl;
outfile << ""<<endl;
outfile << "<dolfin xmlns:dolfin=\"http://www.phi.chalmers.se/dolfin/\">"<<endl;
outfile << " <mesh celltype=\"tetrahedron\" dim=\"3\">" <<endl;
outfile << " <vertices size=\""<<np<<"\">"<<endl;
2009-04-20 03:15:26 +06:00
for (int i = 1; i <= np; i++) {
2009-01-13 04:40:13 +05:00
const Point3d & p = mesh.Point(i);
outfile << " <vertex index=\""<<i-1<<"\" x=\""<<p.X()<<"\" y=\""<<p.Y()<<"\" z=\""<<p.Z()<<"\"/>"<<endl;
}
outfile << " </vertices>"<<endl;
outfile << " <cells size=\""<<ne<<"\">"<<endl;
2009-04-20 03:15:26 +06:00
for (int i = 1; i <= ne; i++) {
2009-01-13 04:40:13 +05:00
const Element & el = mesh.VolumeElement(i);
outfile << " <tetrahedron index=\""<<i-1<<"\" v0=\""<<el.PNum(1)-1<<"\" v1=\""<<el.PNum(2)-1<<"\" v2=\""<<el.PNum(3)-1<<"\" v3=\""<<el.PNum(4)-1<<"\"/>"<<endl;
}
outfile << " </cells>"<<endl;
}
outfile << " </mesh>"<<endl;
outfile << "</dolfin>"<<endl;
cout << "done writing dolfin export" << endl;
}
}