Re: [Libmesh-users] project_solution from a ParsedFunction to a system with more than one variable

2017-03-24 Thread gmail
Beautiful. Thank you Roy. Ata > On Mar 24, 2017, at 9:56 AM, Roy Stogner wrote: > > > On Fri, 24 Mar 2017, gmail wrote: > >> I’m using project_solution >> >> from a ParsedFunction to set the initia

Re: [Libmesh-users] API for job memory requirements

2017-03-24 Thread Cody Permann
We've looked at this several times and it's very difficult to estimate memory growth for complex C++ software. Each data structure that's spread throughout the code uses their own memory allocator to store information as needed. Even if you know things like the sizes of individual nodes in a node b

Re: [Libmesh-users] project_solution from a ParsedFunction to a system with more than one variable

2017-03-24 Thread Roy Stogner
On Fri, 24 Mar 2017, gmail wrote: I’m using project_solution from a ParsedFunction to set the initial values on an ImplicitSystem. This works wonderfully if the system has only a single variable but

[Libmesh-users] project_solution from a ParsedFunction to a system with more than one variable

2017-03-24 Thread gmail
Dear all, I’m using project_solution from a ParsedFunction to set the initial values on an ImplicitSystem. This works wonderfully if the system has only a single variable but not surprisingly (sinc