Re: [petsc-users] Element connectivity of a DMPlex

2025-06-22 Thread Matthew Knepley
On Sun, Jun 22, 2025 at 8:46 PM Noam T. wrote: > On Friday, June 20th, 2025 at 9:37 PM, Matthew Knepley > wrote: > > > I do have this implemented. If you give -dm_plex_high_order_view, it will > refine the grid and project into the linear space. > You can see that the code is pretty simple: > >

Re: [petsc-users] Problem with composite DM index sets

2025-06-22 Thread Barry Smith
implicit none prevents using undeclared variables. Is there a way to avoid calling any functions/suboutines that don't have an interface declared in a module? That would have found this problem. Barry > On Jun 22, 2025, at 8:06 PM, Randall Mackie wrote: > > Thanks Barry! > > > >> On

Re: [petsc-users] Element connectivity of a DMPlex

2025-06-22 Thread Noam T. via petsc-users
On Friday, June 20th, 2025 at 9:37 PM, Matthew Knepley wrote: > I do have this implemented. If you give -dm_plex_high_order_view, it will > refine the grid and project into the linear space. > You can see that the code is pretty simple: Thanks ,that will be handy. Perhaps this whole idea of us

Re: [petsc-users] Problem with composite DM index sets

2025-06-22 Thread Randall Mackie
Thanks Barry! > On Jun 22, 2025, at 4:50 PM, Barry Smith wrote: > > >I'm sorry for not getting back to you sooner. I have attached a working > version of your code. Since you were missing > > use petscdmcomposite > > the compiler could not generate the correct call to DMCompositeGet

Re: [petsc-users] Problem with composite DM index sets

2025-06-22 Thread Barry Smith
   I'm sorry for not getting back to you sooner. I have attached a working version of your code. Since you were missing   use petscdmcompositethe compiler could not generate the correct call to DMCompositeGetGlobalISs()  Barry test.F90 Description: Binary data On Jun 17, 2025, at 6:39 PM, Randall