Dear all
I am trying to use opencascade for 2-d flow problems, e.g., flow over an airfoil. Learning from step-54, I created an iges file for rae2822 airfoil, a Q1 mesh in gmsh and I can now refine it. The code is here
https://bitbucket.org/cpraveen/deal_ii/src/master/occ/refine/?at=master
The files are in occ/rae2822.
This approach requires using Triangulation<dim,3> since occ works in 3d. If my problem is only in 2d (dim=2), is there a way to use occ without introducing a spacedim template everywhere in my code ? Can I set all the manifold info on a Triangulation<dim,3> object, then get a Triangulation<dim> from that, and use it in my code ?
Thanks
praveen