History log of /petsc/src/dm/impls/moab/dmmoab.cxx (Results 126 – 150 of 317)
Revision Date Author Comments
# ec14d8c8 27-May-2017 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'master' into knepley/feature-plex-sphere-mesh

* master: (2633 commits)
Bib: Added ref
SNES ex56: Update test output
add a citation to petsc.bib
Plex: Initialize variables
ini

Merge branch 'master' into knepley/feature-plex-sphere-mesh

* master: (2633 commits)
Bib: Added ref
SNES ex56: Update test output
add a citation to petsc.bib
Plex: Initialize variables
initialize ap as complained by the nightly tests
Plex ex3: Update to new point function API
initialize some variables as complained by nightly tests
SNES ex12: Mix misnaming Nf --> Nc
update tests
add tests
add MatView_SeqXAIJ_ASCII_structonly(); enable A->structure_only in MatSetValuesBlocked_SeqBAIJ
typo
fill-in some references
Bib: Fixed ref
Plex: Added PLY to file support
Plex: Adding PLY support
PetscDS: Turn off Fortran bindings for Constants
Plex tests: Updated to new point function API
SNES ex56: Moved tests to new format
DM: Allow field projection functions to take an array of scalars - This will allow us to pass in user data to kernels without void *, more efficiency than aux fields
...

Conflicts:
config/builder.py
include/petscdmplex.h
src/dm/impls/plex/examples/tests/ex1.c
src/dm/impls/plex/plexcreate.c
src/dm/impls/plex/plexgmsh.c
src/snes/examples/tutorials/ex63.c

show more ...


# a044f6b6 27-Feb-2017 Vijay Mahadevan <vijay.m@gmail.com>

Fix the handling of heterogeneous material specifications


# e92d1c7c 22-Feb-2017 Vijay Mahadevan <vijay.m@gmail.com>

Some fixes to get serial and parallel examples running correctly without malloc errors.


# 9c368985 16-Feb-2017 Vijay Mahadevan <vijay.m@gmail.com>

Fix several memory leaks and some inconsistencies in tests


# 2417220e 02-Aug-2016 Vijay Mahadevan <vijay.m@gmail.com>

Several key fixes for parallel computations

- A bug fix for parallel boundary vertex resolution (filter by interface
rather than shared entities); Other miscellaneous updates to the drivers.
- Upd

Several key fixes for parallel computations

- A bug fix for parallel boundary vertex resolution (filter by interface
rather than shared entities); Other miscellaneous updates to the drivers.
- Updating the nnz/onz allocation computation for the interpolation matrices

show more ...


# a86ed394 01-Aug-2016 Vijay Mahadevan <vijay.m@gmail.com>

Updating the interpolation matrix to use a consistent basis for FEM problems.

- This needs to be exposed as an option in the future (can allow us to compare
different types of interpolation operat

Updating the interpolation matrix to use a consistent basis for FEM problems.

- This needs to be exposed as an option in the future (can allow us to compare
different types of interpolation operators).
- Updates for Hex basis evaluation and other minor updates

show more ...


# 63d025db 27-Jul-2016 Vijay Mahadevan <vijay.m@gmail.com>

Adding a consolidated FEM helper class for evaluating basis functions for computations
- Updating the 2-D example to use the new interface for FEM assmebly
- Some warning fixes and making the formatt

Adding a consolidated FEM helper class for evaluating basis functions for computations
- Updating the 2-D example to use the new interface for FEM assmebly
- Some warning fixes and making the formatting consistent everywhere

show more ...


# 9daf19fd 01-Sep-2015 Vijay Mahadevan <vijay.m@gmail.com>

Several modifications to enable DMMoab to work consistently in serial
i.e., when MOAB is not configured with MPI.

** Important: Removing the SetParallelComm API routine since the user
never needs th

Several modifications to enable DMMoab to work consistently in serial
i.e., when MOAB is not configured with MPI.

** Important: Removing the SetParallelComm API routine since the user
never needs the MOAB internal PCOMM object anyway when using DMMoab.

Additionally, there are several minor fixes and cosmetic cleanups.

* fix inconsistencies for 1-D mesh generation
* minor bug in computation of max nnz for AIJ matrices
* fix convergence issues for 3-D example
* fix the DMMoab dependency on non-MPI enabled MOAB
* fixes for the TS Brusselator example

show more ...


# 304006b3 14-Aug-2015 Vijay Mahadevan <vijay.m@gmail.com>

Add new API functions to support mesh copies, view and modifications and
creation of sub-DM objects

* Adding new operations (DMView and DMClone) for DMMoab.
* Adding several public API functions to

Add new API functions to support mesh copies, view and modifications and
creation of sub-DM objects

* Adding new operations (DMView and DMClone) for DMMoab.
* Adding several public API functions to support mesh modifications
and creation of sub-DM objects
* Store the local/global min/max ID space in DMMoab object

show more ...


# 755f3dfb 11-May-2015 Vijay Mahadevan <vijay.m@gmail.com>

Enhancements to DMMoab driven through the 2-D and 3-D example use-cases.

* Updates to the FEM examples to verify convergence and use of GMG
preconditioners with arbitrary levels.
++ TODO: Handle

Enhancements to DMMoab driven through the 2-D and 3-D example use-cases.

* Updates to the FEM examples to verify convergence and use of GMG
preconditioners with arbitrary levels.
++ TODO: Handle mixed meshes in the future.
* Updates to the parallel structured grid mesh-generation which was failing
for non-divisible parallel square meshes.
* Fix a bug in boundary element computation through skinner.
- This was tricky to find and the ksp/tutorials/ex35.cxx helped when
the convergence order was not as expected. After verifying the bases,
the issue was found to be the B.C treatment which missed certain
elements that only had a node on the boundary and not any edges/faces,
which meant that Skinner did not acknowledge these as boundary elements.
* Some profiling monitors are now available during mesh generation.
* Added a new API to get the mesh hierarchy level.
* Fix the nnz computation routine for interpolation operators.
The allocation is still suboptimal in parallel.

show more ...


# 64e1c140 12-Feb-2016 Vijay Mahadevan <vijay.m@gmail.com>

Memory allocation for vector and matrices, debugging through ex3.cxx.

1) Fixes for matrix allocation, especially for refined levels of the mesh.
2) Small fix for a bug when user provides Tag


# 49d66b22 03-Mar-2015 Vijay Mahadevan <vijay.m@gmail.com>

Several key bug fixes to get the boundary data and UMR working correctly
for both the 2-D and 3-D scenarios.

* Do not use the skinner to get boundary data if we are on a refined level.
We should u

Several key bug fixes to get the boundary data and UMR working correctly
for both the 2-D and 3-D scenarios.

* Do not use the skinner to get boundary data if we are on a refined level.
We should use it only for coarsest levels and then just decipher based
on coarse level entity parent-child property inheritance.
* Updates to the ex35 and ex36 examples to make them verifiable through MMS
and modify tests to use the new API changes.
+ ex35 and ex36 can now compute the L2 discretization error wrt exact solution.
+ Update examples and tests to respect the new API change to accept ghost layers when
loading a mesh.
+ Added an exact solution for problem 2 (MMS) and fix forcing function
so that we can verify the solution convergence
* Several bug fixes and minor enhancements for RefineMesh with edges/faces
enabled. Also tested the computation of all the boundary vertices/faces/edges
to impose BC data for the operators.
* Fix a bug in the numbering and decomposition of HEX->TETS during mesh generation.
Now the numberings are consistent and nested refinement works cleanly for arbitrary levels.
Tested with impls/moab/tests/ex3 for dim=[1,2,3] with simplex=[on,off].
* Added code to exchange ghost layers for all hierarchically generated mesh levels
* Fix issues with boundary marker caching and querying
* Fixes for parallel ghosting for refined entities. Added flexibility to specify ghost
rings for both in-memory mesh and loaded from file.
* Bugfix for read options (mem corruption)
* Update the NNZ allocation an creation of interpolation matrices in parallel.

show more ...


# ce27a4ee 02-Mar-2015 Vijay Mahadevan <vijay.m@gmail.com>

The box mesh generation routine was ad-hoc. Complete revamp of the
implementation along with good verification of the generated mesh. The
GenLargeMesh example in MOAB has been useful here but in the

The box mesh generation routine was ad-hoc. Complete revamp of the
implementation along with good verification of the generated mesh. The
GenLargeMesh example in MOAB has been useful here but in the future,
need to expose this as an API in MOAB so that we can just make use of
that. This replication of code is stupid.

* Fix parallel generation and ghost layer creation
* Adding options to control refinement etc from command line.

show more ...


# 3f1c6e43 17-Feb-2015 Vijay Mahadevan <vijay.m@gmail.com>

Make use of the ParallelComm object and prepare it to generate the mesh
hierarchy in parallel

* Modifications to both examples and tests to conform to API changes
+ ex35: Refactoring to allow both

Make use of the ParallelComm object and prepare it to generate the mesh
hierarchy in parallel

* Modifications to both examples and tests to conform to API changes
+ ex35: Refactoring to allow both TRI and QUAD to be used for the problem of interest.
+ Several changes to clean up the MOAB based inhomogeneous Laplacian solver in
2-D (based on ATPESC 2014 version).
* Adding a new test for verifying the uniform mesh refinement capability exposed by DMMoab.
* Fix some memory corruption and leaks -- when user does not set fieldNames. Found through tests/ex3
* Reduction in memory footprint in DOF number storage. Can eventually remove usage of llmap,lgmap.
* Cleanup and more optimizations for DOF evaluations.

show more ...


# e882eb38 06-Feb-2015 Vijay Mahadevan <vijay.m@gmail.com>

Several clean ups and updates/fixes for GMG.
* Adding a new 3-D example - based on ex35 to test multigrid PC functionality with MOAB
- Sample runs converge to correct solution. Need to measure MG e

Several clean ups and updates/fixes for GMG.
* Adding a new 3-D example - based on ex35 to test multigrid PC functionality with MOAB
- Sample runs converge to correct solution. Need to measure MG efficiency with a DA example.
* Clean up the implementation for refine/coarsen hierarchy methods for DM.
* Fixing memory leaks and changing API for generate_mesh_hierarchy.
* Fix several warnings. Fix mattype to be consistent with DM.

show more ...


# b117cd09 05-Feb-2015 Vijay Mahadevan <vijay.m@gmail.com>

First consolidate changelist with several additions for enabling geometric multigrid with DMMoab

* Implement hooks to generate mesh hierarchy through MOAB NestedRefine functions
* Adding several pla

First consolidate changelist with several additions for enabling geometric multigrid with DMMoab

* Implement hooks to generate mesh hierarchy through MOAB NestedRefine functions
* Adding several placeholders and API functions to orchestrate the DMMoab + MG functionality.
* Add variable to store current level in the hierarchy. Also, no need to implement coarsen/refine hierarchy since this will internally use DMRefine/DMCoarsen anyway.
* Added an API for DMMoabSetBlockFills (needs proper implementation)
* Adding necessary implementation to enable DMRefine/DMCoarsen methods once the mesh hierarchy has already been generated. This is a pre-processing step and need to discuss to make sure it follows PETSc's option driven computation
* Rearrange the data structure to better document interaction between levels and level specific data.
* A pointer to the native MOAB NestedRefine hierarchy is also maintained to improve inter-level query efficiency. This is also used for adjacency and boundary entity data queries.
* The interpolator is full weighting based on inverse distance square (RBF?). Next, to provide semantics for discretization specific projections operators between levels.
* Prepped the 2-D example for verification of GMG solvers

TODO: Revisit SubDM concept based on subset ranges

show more ...


# c90b701e 14-Mar-2017 Matthew G. Knepley <knepley@gmail.com>

Merge branch 'master' into knepley/feature-plex-pragmatic-parallel

* master: (1379 commits)
Minor fixes for tchem examples due to changes in PETSc infrastructure
update webpage about API changes

Merge branch 'master' into knepley/feature-plex-pragmatic-parallel

* master: (1379 commits)
Minor fixes for tchem examples due to changes in PETSc infrastructure
update webpage about API changes
add help menu for MatCreateSubMatricesMPI()
rename struct Mat_SubMat -> Mat_SubSppt
add a little information to the manual about using tchem
rename MatCreateSubMatrixComposite -> MatCreateSubMatrixVirtual; Mat_SubMatrix -> Mat_SubVirtual
need to protect the \ passed on the makefile on my Mac
Bib: Updated ref
update src/mat/examples/tests/output/ex23_#.out
rename MatGetSubMat -> MatCreateSubMat
Mark MatCreateMPIAIJWithSplitArrays() and MatMPIAIJSetPreallocationCSR() with MAT_NO_OFF_PROC_ENTRIES
superlu: libray is installed in PREFIX/lib64 - fix this to use PREFIX/lib
backport fixes cc105cc3 2b35c90a - required for 3bf428d - that was backported from master - 80c96bb
'echo -n' fails on opensolaris/osx - so avoid using it.
fix diffs in nightlybuilds due to options in ~/.petscrc
add Kelley03 to src/docs/tex/petsc.bib
build: determine moudles, mpi.h used during buildtime and print in 'info'
fix analyzer warnings
fix build failure on opensolaris - where -lm from flibs is removed due to -lm in cxxlibs. But then - only flib gets used for some configure tests [blaslapack, parms]
config: prefer __restrict over C99 restrict keyword
...

show more ...


# 1a4b332b 29-Dec-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'barry/minor-cleanup'


# c528d872 27-Dec-2016 Barry Smith <bsmith@mcs.anl.gov>

remove PETSC_NULL from moab interface. Add definition of PETSC_NULL back in since external packages use it.

Reported-by: nightly tests


# 9137bce6 24-Dec-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'barry/remove-funct'


# fbfcfee5 19-Dec-2016 Barry Smith <bsmith@mcs.anl.gov>

Remove the use and definition of __FUNCT__ throughout the code

Since all modern C/C++ compilers provide this functionality we no longer need to provide it manually in PETSc
Time: 1.5 hours
Thanks-t

Remove the use and definition of __FUNCT__ throughout the code

Since all modern C/C++ compilers provide this functionality we no longer need to provide it manually in PETSc
Time: 1.5 hours
Thanks-to: Andreas Mang <andreas@ices.utexas.edu>

show more ...


# af25d912 06-Mar-2016 Stefano Zampini <stefano.zampini@gmail.com>

Merge branch 'master' into stefano_zampini/feature-pcbddc-saddlepoint

Conflicts:
src/ksp/pc/impls/bddc/bddc.c
src/ksp/pc/impls/bddc/bddcgraph.c
src/ksp/pc/impls/bddc/bddcprivate.c
src/ksp/pc/imp

Merge branch 'master' into stefano_zampini/feature-pcbddc-saddlepoint

Conflicts:
src/ksp/pc/impls/bddc/bddc.c
src/ksp/pc/impls/bddc/bddcgraph.c
src/ksp/pc/impls/bddc/bddcprivate.c
src/ksp/pc/impls/bddc/bddcscalingbasic.c
src/ksp/pc/impls/bddc/bddcschurs.c
src/mat/impls/is/matis.c

show more ...


# f37e7628 21-Feb-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into barry/add-pcfieldsplit-logevent


# f44c6289 28-Jan-2016 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into barry/add-pcreset-hypre-for-master

Needed to move PCDestroy_HYPRE() added to master to PCReset_HYPRE() since that was introduced
as a bug fix for maint


# c3d89e0a 19-Dec-2015 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' into hongzh/checkpointing

Manual merges for a couple of PetscOptions changes in master


12345678910>>...13