Re: [deal.II] Re: Regarding tbb error

2022-09-19 Thread Deepika Kushwah
Thanks for the reply. I am using the latest version of dealii 9.4.0. With this version I am getting the error as mentioned in the previous email. Thanks & Regards Deepika On Tue, Sep 20, 2022 at 2:48 AM Marc Fehling wrote: > Hello Deepika, > > which version of deal.II are you using? > >

[deal.II] Re: Dealii and ASPECT installation

2022-09-19 Thread Marc Fehling
Hello Ziqi, which version of deal.II are you using? >From your log, it looks like you are using Intel oneAPI TBB. We started to support oneAPI versions with deal.II 9.4.0. The guide you are mentioning refers to deal.II 9.0. Could you try our latest release? Marc On Monday, September 19, 2022

[deal.II] Re: Regarding tbb error

2022-09-19 Thread Marc Fehling
Hello Deepika, which version of deal.II are you using? >From your screenshots, it looks like you are using Intel oneAPI TBB. We started to support oneAPI versions with deal.II 9.4.0. Could you try our latest release? Marc On Sunday, September 18, 2022 at 6:18:51 AM UTC-6

[deal.II] Dealii and ASPECT installation

2022-09-19 Thread Ziqi Ma
Dear all, I hope this email finds you well. I am trying to install ASPECT on my macOS Monterey 12.6. When I followed the steps in https://github.com/geodynamics/aspect/wiki/Installing-and-running-ASPECT-on-Mac-OS-X, I got stuck in step 3, installation of the dealii. After my installation, I

Re: [deal.II] Using component mask to apply displacement boundary conditions

2022-09-19 Thread Wolfgang Bangerth
On 9/19/22 07:18, Wasim Niyaz Munshi ce21d400 wrote: Functions::ConstantFunction(dim)(u_y_values,2),constraints,u_y_mask                                                      );//imposing u_y=0 on boudaries with id=1 Now, it gives the following error: error: no match for call to

Re: [deal.II] Using component mask to apply displacement boundary conditions

2022-09-19 Thread Wasim Niyaz Munshi ce21d400
Thank You. I went through the documentations and realized that in step 8 Dirichlet boundary conditions are being applied using the constraint object. Hence, we only need to pass the constraint object to VectorTools::interpolate_boundary_values. No need to pass the 'boundary_values' std::map