Re: [deal.II] Compiling release 9.5.0

2023-07-11 Thread Jack Urombo
Here is the detailed log. On Sat, 8 Jul 2023 at 17:37, Matthias Maier wrote: > Hi, > > Would you mind to also send us the "detailed.log" file located in your > build directory? > > Best, > Matthias > > > > On Sat, Jul 8, 2023, at 03:16 CDT, ja

[deal.II] Compiling release 9.5.0

2023-07-08 Thread jack urombo
The new release has this error on compiling. [ 10%] Building CXX object bundled/tbb-2018_U2/src/CMakeFiles/bundled_tbb_debug.dir/tbb/ar ena.cpp.o In file included from /home/ju.rom.bo/downloads/dealii-9.5.0/bundled/tbb-2018_U2/src/tbb/s cheduler_common.h:43, from

Re: [deal.II] Re: Dimension Mismatch

2023-03-08 Thread jack urombo
> right. > The template argument denotes the number of components of the *input* > vector > 'x' for which you want to evaluate 'f(x)'. It does not denote the number > of > *output* vector components. It should only be ComponentSelectFunction. > > Best > W.

[deal.II] Re: Dimension Mismatch

2023-03-07 Thread jack urombo
The code is attached this message. On Wednesday, 8 March 2023 at 05:38:43 UTC+2 jack urombo wrote: > Took a brief hiatus. and managed to pass a huddle following Marc's > suggestion. > > Now I have set to construct convergence tables for the polymer flow > problem I am solvi

[deal.II] Re: Dimension Mismatch

2023-03-07 Thread jack urombo
xactSolution () : Function(dim+1) {} You call the constructor for Function with 3 components (since dim=2 in your case). However, your implementation returns 7 components. Make sure that you call the constructor with the right number of components. Marc On Saturday, February 4, 2023 at 8:54:47 AM

[deal.II] Dimension Mismatch

2023-02-04 Thread jack urombo
i am using the implimenation by Jaekwang Kim to model polymer flows. The major change that I want to do is to output convergence tables like in Step-7 and Step-22, which means I have to have an ExactSolution. The code is encountering an error because the dimension of the solutions do not

Re: [deal.II] 3D Periodic BCs

2022-07-08 Thread jack urombo
and > you use a unit cube with standard coloring, you probably want to call it > with arguments 0,1,0 and 2,3,1 respectively. > > Best, > Daniel > > On Thu, Jul 7, 2022 at 1:56 PM jack urombo wrote: > >> I am trying to set periodic boundary conditions for a 3D proble

[deal.II] 3D Periodic BCs

2022-07-07 Thread jack urombo
I am trying to set periodic boundary conditions for a 3D problem like *velocity->set_periodic_boundary_condition(0, 1, 2); velocity->set_periodic_boundary_condition(2, 3, 1); pressure->set_periodic_boundary_condition(0, 1, 2); pressure->set_periodic_boundary_condition(2, 3, 1);* The

[deal.II] Re: MPI and Docker

2022-04-05 Thread jack urombo
2021 at 9:54:42 AM UTC+1 jack urombo wrote: > >> The current docker image is not finding mpi.h >> >> >> >> >> >> >> >> >> >> >> >> *[ 50%] Building CXX object CMakeFiles/cdr.dir/cdr.cc.o In file included >> fro

Re: [deal.II] step-35 in modified

2022-04-05 Thread jack urombo
* I need suggestions on how to properly define or indications of where I getting wrong. The code is attached. On Saturday, 5 March 2022 at 05:42:26 UTC+2 jack urombo wrote: > Yeah this: > > > > *scratch.fe_val_vel.reinit(std::get<0> (*SI)); > scratch.fe_val_pres.reini

Re: [deal.II] step-35 in modified

2022-03-04 Thread jack urombo
5 March 2022 at 01:02:42 UTC+2 Wolfgang Bangerth wrote: > On 3/4/22 14:37, jack urombo wrote: > > ** > > > > Does this replace all the four instances of *std::get *or just the > > last two? > > All of the

Re: [deal.II] step-35 in modified

2022-03-04 Thread jack urombo
Does this replace all the four instances of *std::get *or just the last two? On Friday, 4 March 2022 at 22:39:14 UTC+2 Wolfgang Bangerth wrote: > On 3/4/22 12:12, jack urombo wrote: > > / > > std::get<0> (SI.iterators)->get_dof_indices > (data.vel_local_dof

Re: [deal.II] step-35 in modified

2022-03-04 Thread jack urombo
Still working on modified step-35, but now starting the modification by Muhammad Mohebujjaman. https://github.com/Mohebujjaman/Projection-Method-for-NSE I want to resolve the issue of the iterators defined here: *template

[deal.II] MPI and Docker

2021-12-14 Thread jack urombo
The current docker image is not finding mpi.h *[ 50%] Building CXX object CMakeFiles/cdr.dir/cdr.cc.o In file included from /usr/include/deal.II/base/conditional_ostream.h:19, from /home/dealii/dealii/cdr/cdr.cc:1: /usr/include/deal.II/base/config.h:490:12: fatal

Re: [deal.II] Docker and Eclipse

2021-10-11 Thread jack urombo
Managed to install from the latest git repo and it went perfectly well: MathW15Lnx:/home/jurombo/Downloads/dealii/build # make test Running quicktests... Test project /home/jurombo/Downloads/dealii/build/tests/quick_tests Start 1: step.debug Start 2: step.release Start 3:

[deal.II] Docker and Eclipse

2021-10-02 Thread andrew jack urombo
I am running dealii on Docker, and now would like to debug my projects using Eclipse. 1. How do you that so that Eclipse recognise the dealii that is in a container and work in sync? Why I am not running a compiled dealii is because I am getting//this error with log ending:

Re: [deal.II] step-35 in modified

2021-07-12 Thread andrew jack urombo
|   class NavierStokesProjection// //  | ^~// //make[3]: *** [CMakeFiles/step-35a.dir/build.make:63: CMakeFiles/step-35a.dir/step-35a.cc.o] Error 1// / On 11/07/2021 21:24, Wolfgang Bangerth wrote: On 7/10/21 4:23 AM, andrew jack urombo wrote: I have attached

[deal.II] step-35 in modified

2021-07-10 Thread andrew jack urombo
Hie. I am working on flow problems with a model based on the NSE.  The project involves using adaptive finite elementts, and first steps are  to: 1) have a mesh adapting strategy 2) compute errors 3) obtain convergence rates I am basing these on the dealii step-35

[deal.II] adaptive mesh refinement for Navier Stokes

2021-06-24 Thread andrew jack urombo
I am working on a adaptive finite elements for flows. For starters I want to base my simulation on Step 35 and introduce the refine_mesh( )  like in Step 26 to it: See attached code snippet. When I make I get the error message: /[ 50%] Building CXX object

[deal.II] Example not Compiling in deallii on Docker

2020-05-15 Thread Jack Urombo
I have installed dealii on docker and when itry t run the examples i get the error below. What am i doing wrong? /usr/local/opt/spack/linux-ubuntu16.04-x86_64/gcc-5.4.0/dealii-9.1.1-kbq6c5p67nir5zwpx5lbevwutndfivxz/share/deal.II/examples/step-6/CMakeFiles/CMakeTmp/testCCompiler.c