[Libmesh-devel] Current helgrind output for simple_diffusion in MOOSE

2016-02-01 Thread John Peterson
It looks like the recent changes which Cody made to threading in MOOSE definitely reduced the number of errors reported by helgrind for our simple_diffusion test. There might be a threading issue remaining with the Singleton class. Below is the helgrind output I'm currently seeing, and trying to

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread David Knezevic
On Mon, Feb 1, 2016 at 12:53 PM, John Peterson wrote: > > > On Mon, Feb 1, 2016 at 10:27 AM, David Knezevic < > david.kneze...@akselos.com> wrote: > >> On Mon, Feb 1, 2016 at 12:21 PM, John Peterson >> wrote: >> >>> >>> >>> On Mon, Feb 1, 2016 at 10:16 AM, David Knezevic < >>> david.kneze...@aks

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread John Peterson
On Mon, Feb 1, 2016 at 10:27 AM, David Knezevic wrote: > On Mon, Feb 1, 2016 at 12:21 PM, John Peterson > wrote: > >> >> >> On Mon, Feb 1, 2016 at 10:16 AM, David Knezevic < >> david.kneze...@akselos.com> wrote: >> >>> On Mon, Feb 1, 2016 at 12:13 PM, Roy Stogner >>> wrote: >>> We oug

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread David Knezevic
On Mon, Feb 1, 2016 at 12:21 PM, John Peterson wrote: > > > On Mon, Feb 1, 2016 at 10:16 AM, David Knezevic < > david.kneze...@akselos.com> wrote: > >> On Mon, Feb 1, 2016 at 12:13 PM, Roy Stogner >> wrote: >> >>> >>> We ought to just store order internally as an int, change the existing >>> con

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread John Peterson
On Mon, Feb 1, 2016 at 10:16 AM, David Knezevic wrote: > On Mon, Feb 1, 2016 at 12:13 PM, Roy Stogner > wrote: > >> >> We ought to just store order internally as an int, change the existing >> constructors to convert, and add new constructors that take int. >> --- >> Roy >> > > > Sounds good to

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread David Knezevic
On Mon, Feb 1, 2016 at 12:13 PM, Roy Stogner wrote: > > We ought to just store order internally as an int, change the existing > constructors to convert, and add new constructors that take int. > --- > Roy > Sounds good to me. The enum Order seems unnecessarily restrictive, so it'd be good to s

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread Roy Stogner
We ought to just store order internally as an int, change the existing constructors to convert, and add new constructors that take int. --- Roy -- Site24x7 APM Insight: Get Deep Visibility into Application Performance APM

Re: [Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread John Peterson
On Mon, Feb 1, 2016 at 9:54 AM, David Knezevic wrote: > I'd like to couple some extra equations to a system using SCALAR variables > (the extra equations are not based on the mesh). It would be convenient if > I could do this by adding a SCALAR variable of arbitrary "order" to the > system. At th

[Libmesh-devel] Increasing the available order for SCALAR variables?

2016-02-01 Thread David Knezevic
I'd like to couple some extra equations to a system using SCALAR variables (the extra equations are not based on the mesh). It would be convenient if I could do this by adding a SCALAR variable of arbitrary "order" to the system. At the moment order is capped at 43, according to the Order enum, but