History log of /petsc/src/dm/impls/plex/plex.c (Results 426 – 450 of 1780)
Revision Date Author Comments
# be7a8307 18-Nov-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'ksagiyam/dmplex_path_change' into 'main'

Ksagiyam/dmplex path change

Closes #956 and #896

See merge request petsc/petsc!4441


# 02f7d72c 23-Oct-2021 ksagiyam <k.sagiyama@imperial.ac.uk>

plex: add LogEvents


# c9ad657e 02-Aug-2021 ksagiyam <k.sagiyama@imperial.ac.uk>

plexhdf5: Introduce storage versioning and version 2.0.0;

* introduce DMPlexStorageVersion x.y.z
* if no version specified in file => 1.0.0
[original version before the project - that in petsc rel

plexhdf5: Introduce storage versioning and version 2.0.0;

* introduce DMPlexStorageVersion x.y.z
* if no version specified in file => 1.0.0
[original version before the project - that in petsc release 3.16.0]
* check version in both file and option -dm_plex_view_hdf5_storage_version
* version 2.0.0 changes paths to topology, labels, coordinates
* support both versions 1.0.0 and 2.0.0 for writing
* use sizeof in PetscSNPrintf() calls

show more ...


# e9b07ec7 04-Nov-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-plex-1d-amr' into 'main'

Plex: Added 1D adaptive refinement - Plex ex46 tests it

See merge request petsc/petsc!4524


# a12d352d 04-Nov-2021 Matthew G. Knepley <knepley@gmail.com>

Plex: Added 1D adaptive refinement - Plex ex46 tests it


# a7bd641c 19-Oct-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2021-06-10/fix-chkerrq' into 'main'

Fix missing ierr =, removed incorrect CHKERRQ(), change CHKStringError

See merge request petsc/petsc!4078


# c3e24edf 18-Oct-2021 Barry Smith <bsmith@petsc.dev>

bug-fixes


# 2f7452b8 18-Oct-2021 Barry Smith <bsmith@petsc.dev>

style-fixes


# c36d0044 07-Oct-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jwallwork23/metric-utils-api' into 'main'

Public API for Riemannian metric

See merge request petsc/petsc!4408


# 31b70465 04-Oct-2021 Joe Wallwork <j.wallwork16@imperial.ac.uk>

plex metric: set metric options


# 26632be6 02-Oct-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-plex-extrude-symmetric' into 'main'

Plex: DMPlexExtrude() can now symmetrically extrude

See merge request petsc/petsc!4367


# d410b0cf 29-Sep-2021 Matthew G. Knepley <knepley@gmail.com>

DM: Now extrusion is like DMRefine() and implemented through DMPlexTransform - DMExtrude() replaces DMPlexExtrude() - Added an extrusion transformation - Added DMPlexTransformSetDimensions() and setd

DM: Now extrusion is like DMRefine() and implemented through DMPlexTransform - DMExtrude() replaces DMPlexExtrude() - Added an extrusion transformation - Added DMPlexTransformSetDimensions() and setdimensions function - DMPlexTransformMapCoordinates() and DMPlexSnapToGeomModel() now take the coordinate dimension - -dm_extrude replaces -dm_plex_extrude_layers

show more ...


# 19ad8254 03-Sep-2021 Matthew G. Knepley <knepley@gmail.com>

Plex: Allow viewing coordinates in other coordinate systems


# 6762c164 15-Sep-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'psanan-release-patch-82973' into 'main'

Developer docs, style: remove rule about using "if (!rank)" and replace all "!rank" usage with "rank == 0"

See merge request petsc/petsc!4146


# dd400576 26-Jul-2021 Patrick Sanan <patrick.sanan@gmail.com>

Style: replace "!rank" with "rank == 0"

In SF tutorial ex1 (src/vec/is/sf/tutorials/ex1.c), add parentheses around "rank == 0". This is relevant because ! binds more tightly than +, but == binds les

Style: replace "!rank" with "rank == 0"

In SF tutorial ex1 (src/vec/is/sf/tutorials/ex1.c), add parentheses around "rank == 0". This is relevant because ! binds more tightly than +, but == binds less
tightly, so the result of the computation would otherwise change.

show more ...


# d5ed94bb 14-Sep-2021 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/jose/fix-manpages'

Fix manpages to avoid errors reported by doctext

See merge request petsc/petsc!4309


# 97bb3fdc 12-Sep-2021 Jose E. Roman <jroman@dsic.upv.es>

Fix manpages: more errors reported by doctext


# 6b867d5a 12-Sep-2021 Jose E. Roman <jroman@dsic.upv.es>

Fix manpages: mismatching number of parameters


# f899ff85 12-Sep-2021 Jose E. Roman <jroman@dsic.upv.es>

Fix manpages: Input/Output Parameters --> Parameter


# d8d19677 12-Sep-2021 Jose E. Roman <jroman@dsic.upv.es>

Fix manpages: Input/Output Parameter --> Parameters


# c1bf08c5 06-Sep-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jose/spelling-errors' into 'main'

Fix many spelling errors in manpages and comments

See merge request petsc/petsc!4283


# a5b23f4a 03-Sep-2021 Jose E. Roman <jroman@dsic.upv.es>

Fix spelling errors in manpages and comments


# 9b3f0822 24-Aug-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-orientation-rethink' into 'main'

Plex: Rethink Plex orientation

See merge request petsc/petsc!4218


# 012bc364 06-Aug-2021 Matthew G. Knepley <knepley@gmail.com>

Plex: DMPlexTransform is now the way to manipulate a Plex
- Replace DMPlexCellRefiner with DMPlexTransform
- Replace CellRefinerInCellTest_Internal() with DMPolytopeInCellTest()
- Replace DMPlexCe

Plex: DMPlexTransform is now the way to manipulate a Plex
- Replace DMPlexCellRefiner with DMPlexTransform
- Replace CellRefinerInCellTest_Internal() with DMPolytopeInCellTest()
- Replace DMPlexCellRefinerGetAffineTransforms() with
DMPlexRefineRegularGetAffineTransforms()

show more ...


# b5a892a1 24-May-2021 Matthew G. Knepley <knepley@gmail.com>

DM: New idea for cell orientations
- Add DMPolytopeTypeGetNumArrangments()
- Add DMPolytopeTypeGetArrangment()
- Add DMPolytopeTypeGetVertexArrangment()
- Add DMPolytopeTypeComposeOrientation()
- Add

DM: New idea for cell orientations
- Add DMPolytopeTypeGetNumArrangments()
- Add DMPolytopeTypeGetArrangment()
- Add DMPolytopeTypeGetVertexArrangment()
- Add DMPolytopeTypeComposeOrientation()
- Add DMPolytopeTypeComposeOrientationInv()
- Add DMPolytopeGetOrientation()
- Add DMPolytopeGetVertexOrientation()
- Inversion now uses just negation instead of face size
- Remove DMPlexOrientCell(), DMPlexReverseCell(), DMPlexCompareOrientations()
- Add DMPlexOrientPoint()
- Add MPIU_4INT and MPI_4INT
- Rewrote transitive closure
- DMPlexGetTransitiveClosure_Depth1_Static() now correctly handles ornt
- PetscDualSpaceLagrange and PetscSection use the number of arragnements and not the cone size
- Update examples

show more ...


1...<<11121314151617181920>>...72