Re: [deal.II] deal.ii Installation : expand_instantiations Error

2021-01-12 Thread vachanpo...@gmail.com
Hi Aaditya and Johannes, My reply might be too late to be of help. About an year ago, I ran into a host of problems for installing dealii on Cray X50. I have posted all the details to get a working installation here https://groups.google.com/g/dealii/c/MCYyPrZNyjg/m/bVS1woSXBgAJ. The

[deal.II] Build error | resizing a vector of FunctionParsers

2021-01-12 Thread vachanpo...@gmail.com
Dear all, I require to use a vector of an array of FunctionParsers in my code std::vector< std::array, 4> > fps_vec; At a later point when I know its size, I call fps_vec.resize(size); This line produces a long build error message (attached) starting with invalid application of ‘sizeof’ to

Re: [deal.II] Re: Mean value of component of TrilinosWrappers::MPI::BlockVector

2021-01-12 Thread Konrad Simon
> That looks like an unrelated error. Can you create a small testcase for > this > issue here? > I will try to come up with an example. Thank you again and best regards, Konrad -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see

Re: [deal.II] Mean value of component of TrilinosWrappers::MPI::BlockVector

2021-01-12 Thread Konrad Simon
> > I suspect you are passing a fully distributed vector to that function, but > it > needs to read ghost elements of the vector. Have you tried copying the > vector > into a locally_relevant vector, and passing that to the function in > question? > Thank you, Wolfgang, that was the issue.