Re: [deal.II] Interpolate H1 shape function to H1curl shape function

2023-01-17 Thread Wolfgang Bangerth
I'm solving a 3-d vector Maxwell's wave equation problem with nodal basis functions. To overcome spurious solution and singularity, the "regularized Maxwell equation

Re: [deal.II] Wave equation in temporal domain

2023-01-17 Thread Wolfgang Bangerth
On 1/16/23 06:29, Alexander Kiselyov wrote: I'm trying to solve inhomogeneous Maxwellian equations in 4-potential form in 3D space. In terms of math it is equivalent to solving a system of 4 independent scalar wave equations. I'm using "free space" b/c of Neumann type, calculated via solving an

Re: [deal.II] Extracting elements of a SparseMatrix

2023-01-17 Thread Wolfgang Bangerth
On 1/17/23 06:42, Wasim Niyaz Munshi ce21d400 wrote: Hello everyone. I am trying to plot load displacement curves for an elasticity problem. For this I need to extract the non-zero elements of my sparse stiffness matrix. I tried something like system_matrix[I][j] to extract the ij-th entry but

Re: [deal.II] INSTALLING DEALII ON MAC OSX VENTURA

2023-01-17 Thread Timo Heister
Erkin, Please take a look at the conversation at https://github.com/dealii/candi/issues/309#issuecomment-1295958250 that discusses the issue. You might be able to compile by going back to the older version as mentioned in the comment. Alternatively, you could disable Trilinos explicit

[deal.II] INSTALLING DEALII ON MAC OSX VENTURA

2023-01-17 Thread erkin yildiz
Dear community I have been trying to install deal.ii on my new MacBookPRO M2 OSX 13.1 (22C65) following the instructions at the webpage https://github.com/dealii/dealii/wiki/Apple-ARM-M1-OSX After brewing brew install cmake open-mpi gcc@11 (I tried also gcc@12, BTW) deal.ii has been

[deal.II] deal.II Newsletter #238

2023-01-17 Thread 'Rene Gassmoeller' via deal.II User Group
Hello everyone! This is deal.II newsletter #238. It automatically reports recently merged features and discussions about the deal.II finite element library. ## Below you find a list of recently proposed or merged features: #14692: Fix two small things in FiniteElement. (proposed by drwells)

[deal.II] Extracting elements of a SparseMatrix

2023-01-17 Thread Wasim Niyaz Munshi ce21d400
Hello everyone. I am trying to plot load displacement curves for an elasticity problem. For this I need to extract the non-zero elements of my sparse stiffness matrix. I tried something like system_matrix[I][j] to extract the ij-th entry but it seems this doesn't work for the SparseMatrix. Can