Re: [Libmesh-users] [Libmesh-devel] Archive of Numerical Software

2011-06-24 Thread John Peterson
On Fri, Jun 24, 2011 at 3:10 PM, Vijay S. Mahadevan wrote: > Roy, > > I wanted to ask this to Guido in the deal.ii list but anyway here is > my question. > > Is this journal for papers based on completely open source software > alone that can be replicated/verified by anyone ? What I mean is that

Re: [Libmesh-users] [Libmesh-devel] Archive of Numerical Software

2011-06-24 Thread Vijay S. Mahadevan
Roy, I wanted to ask this to Guido in the deal.ii list but anyway here is my question. Is this journal for papers based on completely open source software alone that can be replicated/verified by anyone ? What I mean is that if I use say petsc+libMesh+my own framework, does the journal require me

[Libmesh-users] elem_solution_derivative

2011-06-24 Thread Truman Ellis
I am working through example 18, and I came across an odd assert. Line 432 of naviersystem.C says: libmesh_assert (c.elem_solution_derivative == 1.0); I don't understand while it is important or even valid to assert this. Any explanation would be helpful. Thanks, Truman --

Re: [Libmesh-users] [Libmesh-devel] libmesh_opt_assert()? libmesh_always_assert()?

2011-06-24 Thread Roy Stogner
On Fri, 24 Jun 2011, John Peterson wrote: > On Fri, Jun 24, 2011 at 2:25 PM, Roy Stogner wrote: >> >> Any preference for what we should name a macro whose behavior is >> essentially "do what libmesh_assert() does even when NDEBUG is >> defined"? > > I think this is called an "if test", right? H

Re: [Libmesh-users] [Libmesh-devel] libmesh_opt_assert()? libmesh_always_assert()?

2011-06-24 Thread John Peterson
On Fri, Jun 24, 2011 at 2:25 PM, Roy Stogner wrote: > > Any preference for what we should name a macro whose behavior is > essentially "do what libmesh_assert() does even when NDEBUG is > defined"? I think this is called an "if test", right? > I'm not sure when we'd get around to using such a th

[Libmesh-users] Archive of Numerical Software

2011-06-24 Thread Roy Stogner
Dear libMesh users: We are pleased to announce the launch of the Archive of Numerical Software (ANS). ANS is a free, peer-reviewed, high quality, open-access journal publishing research of numerical methods that are implemented based on, or extend certain large-scale numerical libraries, includin

[Libmesh-users] libmesh_opt_assert()? libmesh_always_assert()?

2011-06-24 Thread Roy Stogner
Any preference for what we should name a macro whose behavior is essentially "do what libmesh_assert() does even when NDEBUG is defined"? I'm not sure when we'd get around to using such a thing in the library (maybe sparingly in the MeshInput subclasses?), but in application code at least there's

Re: [Libmesh-users] exodusII Block ID

2011-06-24 Thread John Peterson
On Fri, Jun 24, 2011 at 10:17 AM, Ataollah Mesgarnejad wrote: > Dear all, > > I know ExodusII_IO reads the block IDs from the file. My question is how can > I access these ids ? and if I have to add any command to instruct > ExodusII_IO::read to read and set block ids from the file? They should

[Libmesh-users] exodusII Block ID

2011-06-24 Thread Ataollah Mesgarnejad
Dear all, I know ExodusII_IO reads the block IDs from the file. My question is how can I access these ids ? and if I have to add any command to instruct ExodusII_IO::read to read and set block ids from the file? Best, Ata -

Re: [Libmesh-users] TransientSystem with custom System

2011-06-24 Thread Roy Stogner
On Fri, 24 Jun 2011, Robert wrote: > I was trying to build a TransientSystem Any reason why? FEMSystem already has a mechanism for transient solves, via the TimeSolver subclasses. --- Roy -- All the data continuously g

[Libmesh-users] TransientSystem with custom System

2011-06-24 Thread Robert
Hello, I was trying to build a TransientSystem and ran into some trouble with the template instantiation: Because you seem to need definition and declaration when building a new template specification, I had to include transient_system.C into my source-file to get a TransientSystem. As this is a