Re: [Libmesh-users] [Libmesh-devel] TensorTools

2012-09-05 Thread Roy Stogner
On Wed, 5 Sep 2012, Paul T. Bauman wrote: > On Wed, Sep 5, 2012 at 7:58 AM, Roy Stogner wrote: > > > I'm starting to waffle about whether or not we should include a > > libmesh_norm(a) { libmesh_deprecated(); return TensorTools::norm_sq(a); } > > shim. > > If this breaks, let me know and I'll

Re: [Libmesh-users] reading BC & Material Properties from ExodusII files

2012-09-05 Thread David Knezevic
They get read in automatically: sidesets in exodus get stored as boundary condition ids which you can access in libMesh via mesh.boundary_info, and element block IDs in exodus get stored as subdomain ids in libMesh (use elem->subdomain_id()) David On 09/05/2012 10:07 AM, Ataollah Mesgarnejad

[Libmesh-users] reading BC & Material Properties from ExodusII files

2012-09-05 Thread Ataollah Mesgarnejad
Dear All, I've been meaning to ask this for a long time. I know you can define BCs and material properties in ExodusII files (I generate them using Cubit) but is there a way to read these data when loading the mesh from that file in libMesh? Thanks, Ata ---