#define PETSCDM_DLL #include /*I "petscdmswarm.h" I*/ #include #include #include #include #include #include #include "../src/dm/impls/swarm/data_bucket.h" #include #include PetscLogEvent DMSWARM_Migrate, DMSWARM_SetSizes, DMSWARM_AddPoints, DMSWARM_RemovePoints, DMSWARM_Sort; PetscLogEvent DMSWARM_DataExchangerTopologySetup, DMSWARM_DataExchangerBegin, DMSWARM_DataExchangerEnd; PetscLogEvent DMSWARM_DataExchangerSendCount, DMSWARM_DataExchangerPack; const char* DMSwarmTypeNames[] = { "basic", "pic", NULL }; const char* DMSwarmMigrateTypeNames[] = { "basic", "dmcellnscatter", "dmcellexact", "user", NULL }; const char* DMSwarmCollectTypeNames[] = { "basic", "boundingbox", "general", "user", NULL }; const char* DMSwarmPICLayoutTypeNames[] = { "regular", "gauss", "subdivision", NULL }; const char DMSwarmField_pid[] = "DMSwarm_pid"; const char DMSwarmField_rank[] = "DMSwarm_rank"; const char DMSwarmPICField_coor[] = "DMSwarmPIC_coor"; const char DMSwarmPICField_cellid[] = "DMSwarm_cellid"; PETSC_EXTERN PetscErrorCode VecView_Seq(Vec, PetscViewer); PETSC_EXTERN PetscErrorCode VecView_MPI(Vec, PetscViewer); #if defined(PETSC_HAVE_HDF5) #include PetscErrorCode VecView_Swarm_HDF5_Internal(Vec v, PetscViewer viewer) { DM dm; PetscReal seqval; PetscInt seqnum, bs; PetscBool isseq; PetscErrorCode ierr; PetscFunctionBegin; ierr = VecGetDM(v, &dm);CHKERRQ(ierr); ierr = VecGetBlockSize(v, &bs);CHKERRQ(ierr); ierr = PetscViewerHDF5PushGroup(viewer, "/particle_fields");CHKERRQ(ierr); ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr); ierr = DMGetOutputSequenceNumber(dm, &seqnum, &seqval);CHKERRQ(ierr); ierr = PetscViewerHDF5SetTimestep(viewer, seqnum);CHKERRQ(ierr); /* ierr = DMSequenceView_HDF5(dm, "time", seqnum, (PetscScalar) seqval, viewer);CHKERRQ(ierr); */ if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);} else {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);} ierr = PetscViewerHDF5WriteObjectAttribute(viewer, (PetscObject) v, "Nc", PETSC_INT, (void *) &bs);CHKERRQ(ierr); ierr = PetscViewerHDF5PopGroup(viewer);CHKERRQ(ierr); PetscFunctionReturn(0); } PetscErrorCode DMSwarmView_HDF5(DM dm, PetscViewer viewer) { Vec coordinates; PetscInt Np; PetscBool isseq; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmGetSize(dm, &Np);CHKERRQ(ierr); ierr = DMSwarmCreateGlobalVectorFromField(dm, DMSwarmPICField_coor, &coordinates);CHKERRQ(ierr); ierr = PetscObjectSetName((PetscObject) coordinates, "coordinates");CHKERRQ(ierr); ierr = PetscViewerHDF5PushGroup(viewer, "/particles");CHKERRQ(ierr); ierr = PetscObjectTypeCompare((PetscObject) coordinates, VECSEQ, &isseq);CHKERRQ(ierr); if (isseq) {ierr = VecView_Seq(coordinates, viewer);CHKERRQ(ierr);} else {ierr = VecView_MPI(coordinates, viewer);CHKERRQ(ierr);} ierr = PetscViewerHDF5WriteObjectAttribute(viewer, (PetscObject) coordinates, "Np", PETSC_INT, (void *) &Np);CHKERRQ(ierr); ierr = PetscViewerHDF5PopGroup(viewer);CHKERRQ(ierr); ierr = DMSwarmDestroyGlobalVectorFromField(dm, DMSwarmPICField_coor, &coordinates);CHKERRQ(ierr); PetscFunctionReturn(0); } #endif PetscErrorCode VecView_Swarm(Vec v, PetscViewer viewer) { DM dm; PetscBool ishdf5; PetscErrorCode ierr; PetscFunctionBegin; ierr = VecGetDM(v, &dm);CHKERRQ(ierr); if (!dm) SETERRQ(PetscObjectComm((PetscObject)v), PETSC_ERR_ARG_WRONG, "Vector not generated from a DM"); ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr); if (ishdf5) { #if defined(PETSC_HAVE_HDF5) ierr = VecView_Swarm_HDF5_Internal(v, viewer);CHKERRQ(ierr); #else SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "HDF5 not supported in this build.\nPlease reconfigure using --download-hdf5"); #endif } else { PetscBool isseq; ierr = PetscObjectTypeCompare((PetscObject) v, VECSEQ, &isseq);CHKERRQ(ierr); if (isseq) {ierr = VecView_Seq(v, viewer);CHKERRQ(ierr);} else {ierr = VecView_MPI(v, viewer);CHKERRQ(ierr);} } PetscFunctionReturn(0); } /*@C DMSwarmVectorDefineField - Sets the field from which to define a Vec object when DMCreateLocalVector(), or DMCreateGlobalVector() is called Collective on dm Input parameters: + dm - a DMSwarm - fieldname - the textual name given to a registered field Level: beginner Notes: The field with name fieldname must be defined as having a data type of PetscScalar. This function must be called prior to calling DMCreateLocalVector(), DMCreateGlobalVector(). Mutiple calls to DMSwarmVectorDefineField() are permitted. .seealso: DMSwarmRegisterPetscDatatypeField(), DMCreateGlobalVector(), DMCreateLocalVector() @*/ PetscErrorCode DMSwarmVectorDefineField(DM dm,const char fieldname[]) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscInt bs,n; PetscScalar *array; PetscDataType type; PetscFunctionBegin; if (!swarm->issetup) { ierr = DMSetUp(dm);CHKERRQ(ierr); } ierr = DMSwarmDataBucketGetSizes(swarm->db,&n,NULL,NULL);CHKERRQ(ierr); ierr = DMSwarmGetField(dm,fieldname,&bs,&type,(void**)&array);CHKERRQ(ierr); /* Check all fields are of type PETSC_REAL or PETSC_SCALAR */ if (type != PETSC_REAL) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Only valid for PETSC_REAL"); ierr = PetscSNPrintf(swarm->vec_field_name,PETSC_MAX_PATH_LEN-1,"%s",fieldname);CHKERRQ(ierr); swarm->vec_field_set = PETSC_TRUE; swarm->vec_field_bs = bs; swarm->vec_field_nlocal = n; ierr = DMSwarmRestoreField(dm,fieldname,&bs,&type,(void**)&array);CHKERRQ(ierr); PetscFunctionReturn(0); } /* requires DMSwarmDefineFieldVector has been called */ PetscErrorCode DMCreateGlobalVector_Swarm(DM dm,Vec *vec) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; Vec x; char name[PETSC_MAX_PATH_LEN]; PetscFunctionBegin; if (!swarm->issetup) { ierr = DMSetUp(dm);CHKERRQ(ierr); } if (!swarm->vec_field_set) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Must call DMSwarmVectorDefineField first"); if (swarm->vec_field_nlocal != swarm->db->L) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"DMSwarm sizes have changed since last call to VectorDefineField first"); /* Stale data */ ierr = PetscSNPrintf(name,PETSC_MAX_PATH_LEN-1,"DMSwarmField_%s",swarm->vec_field_name);CHKERRQ(ierr); ierr = VecCreate(PetscObjectComm((PetscObject)dm),&x);CHKERRQ(ierr); ierr = PetscObjectSetName((PetscObject)x,name);CHKERRQ(ierr); ierr = VecSetSizes(x,swarm->db->L*swarm->vec_field_bs,PETSC_DETERMINE);CHKERRQ(ierr); ierr = VecSetBlockSize(x,swarm->vec_field_bs);CHKERRQ(ierr); ierr = VecSetDM(x,dm);CHKERRQ(ierr); ierr = VecSetFromOptions(x);CHKERRQ(ierr); ierr = VecSetDM(x, dm);CHKERRQ(ierr); ierr = VecSetOperation(x, VECOP_VIEW, (void (*)(void)) VecView_Swarm);CHKERRQ(ierr); *vec = x; PetscFunctionReturn(0); } /* requires DMSwarmDefineFieldVector has been called */ PetscErrorCode DMCreateLocalVector_Swarm(DM dm,Vec *vec) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; Vec x; char name[PETSC_MAX_PATH_LEN]; PetscFunctionBegin; if (!swarm->issetup) { ierr = DMSetUp(dm);CHKERRQ(ierr); } if (!swarm->vec_field_set) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Must call DMSwarmVectorDefineField first"); if (swarm->vec_field_nlocal != swarm->db->L) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"DMSwarm sizes have changed since last call to VectorDefineField first"); /* Stale data */ ierr = PetscSNPrintf(name,PETSC_MAX_PATH_LEN-1,"DMSwarmField_%s",swarm->vec_field_name);CHKERRQ(ierr); ierr = VecCreate(PETSC_COMM_SELF,&x);CHKERRQ(ierr); ierr = PetscObjectSetName((PetscObject)x,name);CHKERRQ(ierr); ierr = VecSetSizes(x,swarm->db->L*swarm->vec_field_bs,PETSC_DETERMINE);CHKERRQ(ierr); ierr = VecSetBlockSize(x,swarm->vec_field_bs);CHKERRQ(ierr); ierr = VecSetDM(x,dm);CHKERRQ(ierr); ierr = VecSetFromOptions(x);CHKERRQ(ierr); *vec = x; PetscFunctionReturn(0); } static PetscErrorCode DMSwarmDestroyVectorFromField_Private(DM dm, const char fieldname[], Vec *vec) { DM_Swarm *swarm = (DM_Swarm *) dm->data; DMSwarmDataField gfield; void (*fptr)(void); PetscInt bs, nlocal; char name[PETSC_MAX_PATH_LEN]; PetscErrorCode ierr; PetscFunctionBegin; ierr = VecGetLocalSize(*vec, &nlocal);CHKERRQ(ierr); ierr = VecGetBlockSize(*vec, &bs);CHKERRQ(ierr); if (nlocal/bs != swarm->db->L) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"DMSwarm sizes have changed since vector was created - cannot ensure pointers are valid"); /* Stale data */ ierr = DMSwarmDataBucketGetDMSwarmDataFieldByName(swarm->db, fieldname, &gfield);CHKERRQ(ierr); /* check vector is an inplace array */ ierr = PetscSNPrintf(name, PETSC_MAX_PATH_LEN-1, "DMSwarm_VecFieldInPlace_%s", fieldname);CHKERRQ(ierr); ierr = PetscObjectQueryFunction((PetscObject) *vec, name, &fptr);CHKERRQ(ierr); if (!fptr) SETERRQ1(PetscObjectComm((PetscObject) dm), PETSC_ERR_USER, "Vector being destroyed was not created from DMSwarm field(%s)", fieldname); ierr = DMSwarmDataFieldRestoreAccess(gfield);CHKERRQ(ierr); ierr = VecDestroy(vec);CHKERRQ(ierr); PetscFunctionReturn(0); } static PetscErrorCode DMSwarmCreateVectorFromField_Private(DM dm, const char fieldname[], MPI_Comm comm, Vec *vec) { DM_Swarm *swarm = (DM_Swarm *) dm->data; PetscDataType type; PetscScalar *array; PetscInt bs, n; char name[PETSC_MAX_PATH_LEN]; PetscMPIInt size; PetscErrorCode ierr; PetscFunctionBegin; if (!swarm->issetup) {ierr = DMSetUp(dm);CHKERRQ(ierr);} ierr = DMSwarmDataBucketGetSizes(swarm->db, &n, NULL, NULL);CHKERRQ(ierr); ierr = DMSwarmGetField(dm, fieldname, &bs, &type, (void **) &array);CHKERRQ(ierr); if (type != PETSC_REAL) SETERRQ(PetscObjectComm((PetscObject) dm), PETSC_ERR_SUP, "Only valid for PETSC_REAL"); ierr = MPI_Comm_size(comm, &size);CHKERRMPI(ierr); if (size == 1) { ierr = VecCreateSeqWithArray(comm, bs, n*bs, array, vec);CHKERRQ(ierr); } else { ierr = VecCreateMPIWithArray(comm, bs, n*bs, PETSC_DETERMINE, array, vec);CHKERRQ(ierr); } ierr = PetscSNPrintf(name, PETSC_MAX_PATH_LEN-1, "DMSwarmSharedField_%s", fieldname);CHKERRQ(ierr); ierr = PetscObjectSetName((PetscObject) *vec, name);CHKERRQ(ierr); /* Set guard */ ierr = PetscSNPrintf(name, PETSC_MAX_PATH_LEN-1, "DMSwarm_VecFieldInPlace_%s", fieldname);CHKERRQ(ierr); ierr = PetscObjectComposeFunction((PetscObject) *vec, name, DMSwarmDestroyVectorFromField_Private);CHKERRQ(ierr); ierr = VecSetDM(*vec, dm);CHKERRQ(ierr); ierr = VecSetOperation(*vec, VECOP_VIEW, (void (*)(void)) VecView_Swarm);CHKERRQ(ierr); PetscFunctionReturn(0); } /* This creates a "mass matrix" between a finite element and particle space. If a finite element interpolant is given by \hat f = \sum_i f_i \phi_i and a particle function is given by f = \sum_i w_i \delta(x - x_i) then we want to require that M \hat f = M_p f where the particle mass matrix is given by (M_p)_{ij} = \int \phi_i \delta(x - x_j) The way Dave May does particles, they amount to quadratue weights rather than delta functions, so he has |J| is in his integral. We allow this with the boolean flag. */ static PetscErrorCode DMSwarmComputeMassMatrix_Private(DM dmc, DM dmf, Mat mass, PetscBool useDeltaFunction, void *ctx) { const char *name = "Mass Matrix"; MPI_Comm comm; PetscDS prob; PetscSection fsection, globalFSection; PetscHSetIJ ht; PetscLayout rLayout, colLayout; PetscInt *dnz, *onz; PetscInt locRows, locCols, rStart, colStart, colEnd, *rowIDXs; PetscReal *xi, *v0, *J, *invJ, detJ = 1.0, v0ref[3] = {-1.0, -1.0, -1.0}; PetscScalar *elemMat; PetscInt dim, Nf, field, cStart, cEnd, cell, totDim, maxC = 0; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscObjectGetComm((PetscObject) mass, &comm);CHKERRQ(ierr); ierr = DMGetCoordinateDim(dmf, &dim);CHKERRQ(ierr); ierr = DMGetDS(dmf, &prob);CHKERRQ(ierr); ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr); ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr); ierr = PetscMalloc3(dim, &v0, dim*dim, &J, dim*dim,&invJ);CHKERRQ(ierr); ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr); ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr); ierr = DMPlexGetHeightStratum(dmf, 0, &cStart, &cEnd);CHKERRQ(ierr); ierr = MatGetLocalSize(mass, &locRows, &locCols);CHKERRQ(ierr); ierr = PetscLayoutCreate(comm, &colLayout);CHKERRQ(ierr); ierr = PetscLayoutSetLocalSize(colLayout, locCols);CHKERRQ(ierr); ierr = PetscLayoutSetBlockSize(colLayout, 1);CHKERRQ(ierr); ierr = PetscLayoutSetUp(colLayout);CHKERRQ(ierr); ierr = PetscLayoutGetRange(colLayout, &colStart, &colEnd);CHKERRQ(ierr); ierr = PetscLayoutDestroy(&colLayout);CHKERRQ(ierr); ierr = PetscLayoutCreate(comm, &rLayout);CHKERRQ(ierr); ierr = PetscLayoutSetLocalSize(rLayout, locRows);CHKERRQ(ierr); ierr = PetscLayoutSetBlockSize(rLayout, 1);CHKERRQ(ierr); ierr = PetscLayoutSetUp(rLayout);CHKERRQ(ierr); ierr = PetscLayoutGetRange(rLayout, &rStart, NULL);CHKERRQ(ierr); ierr = PetscLayoutDestroy(&rLayout);CHKERRQ(ierr); ierr = PetscCalloc2(locRows, &dnz, locRows, &onz);CHKERRQ(ierr); ierr = PetscHSetIJCreate(&ht);CHKERRQ(ierr); ierr = PetscSynchronizedFlush(comm, NULL);CHKERRQ(ierr); /* count non-zeros */ ierr = DMSwarmSortGetAccess(dmc);CHKERRQ(ierr); for (field = 0; field < Nf; ++field) { for (cell = cStart; cell < cEnd; ++cell) { PetscInt c, i; PetscInt *findices, *cindices; /* fine is vertices, coarse is particles */ PetscInt numFIndices, numCIndices; ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr); ierr = DMSwarmSortGetPointsPerCell(dmc, cell, &numCIndices, &cindices);CHKERRQ(ierr); maxC = PetscMax(maxC, numCIndices); { PetscHashIJKey key; PetscBool missing; for (i = 0; i < numFIndices; ++i) { key.j = findices[i]; /* global column (from Plex) */ if (key.j >= 0) { /* Get indices for coarse elements */ for (c = 0; c < numCIndices; ++c) { key.i = cindices[c] + rStart; /* global cols (from Swarm) */ if (key.i < 0) continue; ierr = PetscHSetIJQueryAdd(ht, key, &missing);CHKERRQ(ierr); if (missing) { if ((key.j >= colStart) && (key.j < colEnd)) ++dnz[key.i - rStart]; else ++onz[key.i - rStart]; } else SETERRQ2(PetscObjectComm((PetscObject) dmf), PETSC_ERR_SUP, "Set new value at %D,%D", key.i, key.j); } } } ierr = PetscFree(cindices);CHKERRQ(ierr); } ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr); } } ierr = PetscHSetIJDestroy(&ht);CHKERRQ(ierr); ierr = MatXAIJSetPreallocation(mass, 1, dnz, onz, NULL, NULL);CHKERRQ(ierr); ierr = MatSetOption(mass, MAT_NEW_NONZERO_ALLOCATION_ERR, PETSC_TRUE);CHKERRQ(ierr); ierr = PetscFree2(dnz, onz);CHKERRQ(ierr); ierr = PetscMalloc3(maxC*totDim, &elemMat, maxC, &rowIDXs, maxC*dim, &xi);CHKERRQ(ierr); for (field = 0; field < Nf; ++field) { PetscTabulation Tcoarse; PetscObject obj; PetscReal *coords; PetscInt Nc, i; ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr); ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr); if (Nc != 1) SETERRQ1(PetscObjectComm((PetscObject) dmf), PETSC_ERR_SUP, "Can only interpolate a scalar field from particles, Nc = %D", Nc); ierr = DMSwarmGetField(dmc, DMSwarmPICField_coor, NULL, NULL, (void **) &coords);CHKERRQ(ierr); for (cell = cStart; cell < cEnd; ++cell) { PetscInt *findices , *cindices; PetscInt numFIndices, numCIndices; PetscInt p, c; /* TODO: Use DMField instead of assuming affine */ ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr); ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr); ierr = DMSwarmSortGetPointsPerCell(dmc, cell, &numCIndices, &cindices);CHKERRQ(ierr); for (p = 0; p < numCIndices; ++p) { CoordinatesRealToRef(dim, dim, v0ref, v0, invJ, &coords[cindices[p]*dim], &xi[p*dim]); } ierr = PetscFECreateTabulation((PetscFE) obj, 1, numCIndices, xi, 0, &Tcoarse);CHKERRQ(ierr); /* Get elemMat entries by multiplying by weight */ ierr = PetscArrayzero(elemMat, numCIndices*totDim);CHKERRQ(ierr); for (i = 0; i < numFIndices; ++i) { for (p = 0; p < numCIndices; ++p) { for (c = 0; c < Nc; ++c) { /* B[(p*pdim + i)*Nc + c] is the value at point p for basis function i and component c */ elemMat[p*numFIndices+i] += Tcoarse->T[0][(p*numFIndices + i)*Nc + c]*(useDeltaFunction ? 1.0 : detJ); } } } for (p = 0; p < numCIndices; ++p) rowIDXs[p] = cindices[p] + rStart; if (0) {ierr = DMPrintCellMatrix(cell, name, 1, numCIndices, elemMat);CHKERRQ(ierr);} ierr = MatSetValues(mass, numCIndices, rowIDXs, numFIndices, findices, elemMat, ADD_VALUES);CHKERRQ(ierr); ierr = PetscFree(cindices);CHKERRQ(ierr); ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr); ierr = PetscTabulationDestroy(&Tcoarse);CHKERRQ(ierr); } ierr = DMSwarmRestoreField(dmc, DMSwarmPICField_coor, NULL, NULL, (void **) &coords);CHKERRQ(ierr); } ierr = PetscFree3(elemMat, rowIDXs, xi);CHKERRQ(ierr); ierr = DMSwarmSortRestoreAccess(dmc);CHKERRQ(ierr); ierr = PetscFree3(v0, J, invJ);CHKERRQ(ierr); ierr = MatAssemblyBegin(mass, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); ierr = MatAssemblyEnd(mass, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); PetscFunctionReturn(0); } /* Returns empty matrix for use with SNES FD */ static PetscErrorCode DMCreateMatrix_Swarm(DM sw, Mat* m) { Vec field; PetscInt size; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMGetGlobalVector(sw, &field);CHKERRQ(ierr); ierr = VecGetLocalSize(field, &size);CHKERRQ(ierr); ierr = DMRestoreGlobalVector(sw, &field);CHKERRQ(ierr); ierr = MatCreate(PETSC_COMM_WORLD, m);CHKERRQ(ierr); ierr = MatSetFromOptions(*m);CHKERRQ(ierr); ierr = MatSetSizes(*m, PETSC_DECIDE, PETSC_DECIDE, size, size);CHKERRQ(ierr); ierr = MatSeqAIJSetPreallocation(*m, 1, NULL);CHKERRQ(ierr); ierr = MatZeroEntries(*m);CHKERRQ(ierr); ierr = MatAssemblyBegin(*m, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); ierr = MatAssemblyEnd(*m, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); ierr = MatShift(*m, 1.0);CHKERRQ(ierr); ierr = MatSetDM(*m, sw);CHKERRQ(ierr); PetscFunctionReturn(0); } /* FEM cols, Particle rows */ static PetscErrorCode DMCreateMassMatrix_Swarm(DM dmCoarse, DM dmFine, Mat *mass) { PetscSection gsf; PetscInt m, n; void *ctx; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMGetGlobalSection(dmFine, &gsf);CHKERRQ(ierr); ierr = PetscSectionGetConstrainedStorageSize(gsf, &m);CHKERRQ(ierr); ierr = DMSwarmGetLocalSize(dmCoarse, &n);CHKERRQ(ierr); ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), mass);CHKERRQ(ierr); ierr = MatSetSizes(*mass, n, m, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr); ierr = MatSetType(*mass, dmCoarse->mattype);CHKERRQ(ierr); ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr); ierr = DMSwarmComputeMassMatrix_Private(dmCoarse, dmFine, *mass, PETSC_TRUE, ctx);CHKERRQ(ierr); ierr = MatViewFromOptions(*mass, NULL, "-mass_mat_view");CHKERRQ(ierr); PetscFunctionReturn(0); } static PetscErrorCode DMSwarmComputeMassMatrixSquare_Private(DM dmc, DM dmf, Mat mass, PetscBool useDeltaFunction, void *ctx) { const char *name = "Mass Matrix Square"; MPI_Comm comm; PetscDS prob; PetscSection fsection, globalFSection; PetscHSetIJ ht; PetscLayout rLayout, colLayout; PetscInt *dnz, *onz, *adj, depth, maxConeSize, maxSupportSize, maxAdjSize; PetscInt locRows, locCols, rStart, colStart, colEnd, *rowIDXs; PetscReal *xi, *v0, *J, *invJ, detJ = 1.0, v0ref[3] = {-1.0, -1.0, -1.0}; PetscScalar *elemMat, *elemMatSq; PetscInt cdim, Nf, field, cStart, cEnd, cell, totDim, maxC = 0; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscObjectGetComm((PetscObject) mass, &comm);CHKERRQ(ierr); ierr = DMGetCoordinateDim(dmf, &cdim);CHKERRQ(ierr); ierr = DMGetDS(dmf, &prob);CHKERRQ(ierr); ierr = PetscDSGetNumFields(prob, &Nf);CHKERRQ(ierr); ierr = PetscDSGetTotalDimension(prob, &totDim);CHKERRQ(ierr); ierr = PetscMalloc3(cdim, &v0, cdim*cdim, &J, cdim*cdim,&invJ);CHKERRQ(ierr); ierr = DMGetLocalSection(dmf, &fsection);CHKERRQ(ierr); ierr = DMGetGlobalSection(dmf, &globalFSection);CHKERRQ(ierr); ierr = DMPlexGetHeightStratum(dmf, 0, &cStart, &cEnd);CHKERRQ(ierr); ierr = MatGetLocalSize(mass, &locRows, &locCols);CHKERRQ(ierr); ierr = PetscLayoutCreate(comm, &colLayout);CHKERRQ(ierr); ierr = PetscLayoutSetLocalSize(colLayout, locCols);CHKERRQ(ierr); ierr = PetscLayoutSetBlockSize(colLayout, 1);CHKERRQ(ierr); ierr = PetscLayoutSetUp(colLayout);CHKERRQ(ierr); ierr = PetscLayoutGetRange(colLayout, &colStart, &colEnd);CHKERRQ(ierr); ierr = PetscLayoutDestroy(&colLayout);CHKERRQ(ierr); ierr = PetscLayoutCreate(comm, &rLayout);CHKERRQ(ierr); ierr = PetscLayoutSetLocalSize(rLayout, locRows);CHKERRQ(ierr); ierr = PetscLayoutSetBlockSize(rLayout, 1);CHKERRQ(ierr); ierr = PetscLayoutSetUp(rLayout);CHKERRQ(ierr); ierr = PetscLayoutGetRange(rLayout, &rStart, NULL);CHKERRQ(ierr); ierr = PetscLayoutDestroy(&rLayout);CHKERRQ(ierr); ierr = DMPlexGetDepth(dmf, &depth);CHKERRQ(ierr); ierr = DMPlexGetMaxSizes(dmf, &maxConeSize, &maxSupportSize);CHKERRQ(ierr); maxAdjSize = PetscPowInt(maxConeSize*maxSupportSize, depth); ierr = PetscMalloc1(maxAdjSize, &adj);CHKERRQ(ierr); ierr = PetscCalloc2(locRows, &dnz, locRows, &onz);CHKERRQ(ierr); ierr = PetscHSetIJCreate(&ht);CHKERRQ(ierr); /* Count nonzeros This is just FVM++, but we cannot use the Plex P0 allocation since unknowns in a cell will not be contiguous */ ierr = DMSwarmSortGetAccess(dmc);CHKERRQ(ierr); for (cell = cStart; cell < cEnd; ++cell) { PetscInt i; PetscInt *cindices; PetscInt numCIndices; #if 0 PetscInt adjSize = maxAdjSize, a, j; #endif ierr = DMSwarmSortGetPointsPerCell(dmc, cell, &numCIndices, &cindices);CHKERRQ(ierr); maxC = PetscMax(maxC, numCIndices); /* Diagonal block */ for (i = 0; i < numCIndices; ++i) {dnz[cindices[i]] += numCIndices;} #if 0 /* Off-diagonal blocks */ ierr = DMPlexGetAdjacency(dmf, cell, &adjSize, &adj);CHKERRQ(ierr); for (a = 0; a < adjSize; ++a) { if (adj[a] >= cStart && adj[a] < cEnd && adj[a] != cell) { const PetscInt ncell = adj[a]; PetscInt *ncindices; PetscInt numNCIndices; ierr = DMSwarmSortGetPointsPerCell(dmc, ncell, &numNCIndices, &ncindices);CHKERRQ(ierr); { PetscHashIJKey key; PetscBool missing; for (i = 0; i < numCIndices; ++i) { key.i = cindices[i] + rStart; /* global rows (from Swarm) */ if (key.i < 0) continue; for (j = 0; j < numNCIndices; ++j) { key.j = ncindices[j] + rStart; /* global column (from Swarm) */ if (key.j < 0) continue; ierr = PetscHSetIJQueryAdd(ht, key, &missing);CHKERRQ(ierr); if (missing) { if ((key.j >= colStart) && (key.j < colEnd)) ++dnz[key.i - rStart]; else ++onz[key.i - rStart]; } } } } ierr = PetscFree(ncindices);CHKERRQ(ierr); } } #endif ierr = PetscFree(cindices);CHKERRQ(ierr); } ierr = PetscHSetIJDestroy(&ht);CHKERRQ(ierr); ierr = MatXAIJSetPreallocation(mass, 1, dnz, onz, NULL, NULL);CHKERRQ(ierr); ierr = MatSetOption(mass, MAT_NEW_NONZERO_ALLOCATION_ERR, PETSC_TRUE);CHKERRQ(ierr); ierr = PetscFree2(dnz, onz);CHKERRQ(ierr); ierr = PetscMalloc4(maxC*totDim, &elemMat, maxC*maxC, &elemMatSq, maxC, &rowIDXs, maxC*cdim, &xi);CHKERRQ(ierr); /* Fill in values Each entry is a sum of terms \phi_i(x_p) \phi_i(x_q) Start just by producing block diagonal Could loop over adjacent cells Produce neighboring element matrix TODO Determine which columns and rows correspond to shared dual vector Do MatMatMult with rectangular matrices Insert block */ for (field = 0; field < Nf; ++field) { PetscTabulation Tcoarse; PetscObject obj; PetscReal *coords; PetscInt Nc, i; ierr = PetscDSGetDiscretization(prob, field, &obj);CHKERRQ(ierr); ierr = PetscFEGetNumComponents((PetscFE) obj, &Nc);CHKERRQ(ierr); if (Nc != 1) SETERRQ1(PetscObjectComm((PetscObject) dmf), PETSC_ERR_SUP, "Can only interpolate a scalar field from particles, Nc = %D", Nc); ierr = DMSwarmGetField(dmc, DMSwarmPICField_coor, NULL, NULL, (void **) &coords);CHKERRQ(ierr); for (cell = cStart; cell < cEnd; ++cell) { PetscInt *findices , *cindices; PetscInt numFIndices, numCIndices; PetscInt p, c; /* TODO: Use DMField instead of assuming affine */ ierr = DMPlexComputeCellGeometryFEM(dmf, cell, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr); ierr = DMPlexGetClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr); ierr = DMSwarmSortGetPointsPerCell(dmc, cell, &numCIndices, &cindices);CHKERRQ(ierr); for (p = 0; p < numCIndices; ++p) { CoordinatesRealToRef(cdim, cdim, v0ref, v0, invJ, &coords[cindices[p]*cdim], &xi[p*cdim]); } ierr = PetscFECreateTabulation((PetscFE) obj, 1, numCIndices, xi, 0, &Tcoarse);CHKERRQ(ierr); /* Get elemMat entries by multiplying by weight */ ierr = PetscArrayzero(elemMat, numCIndices*totDim);CHKERRQ(ierr); for (i = 0; i < numFIndices; ++i) { for (p = 0; p < numCIndices; ++p) { for (c = 0; c < Nc; ++c) { /* B[(p*pdim + i)*Nc + c] is the value at point p for basis function i and component c */ elemMat[p*numFIndices+i] += Tcoarse->T[0][(p*numFIndices + i)*Nc + c]*(useDeltaFunction ? 1.0 : detJ); } } } ierr = PetscTabulationDestroy(&Tcoarse);CHKERRQ(ierr); for (p = 0; p < numCIndices; ++p) rowIDXs[p] = cindices[p] + rStart; if (0) {ierr = DMPrintCellMatrix(cell, name, 1, numCIndices, elemMat);CHKERRQ(ierr);} /* Block diagonal */ if (numCIndices) { PetscBLASInt blasn, blask; PetscScalar one = 1.0, zero = 0.0; ierr = PetscBLASIntCast(numCIndices, &blasn);CHKERRQ(ierr); ierr = PetscBLASIntCast(numFIndices, &blask);CHKERRQ(ierr); PetscStackCallBLAS("BLASgemm",BLASgemm_("T","N",&blasn,&blasn,&blask,&one,elemMat,&blask,elemMat,&blask,&zero,elemMatSq,&blasn)); } ierr = MatSetValues(mass, numCIndices, rowIDXs, numCIndices, rowIDXs, elemMatSq, ADD_VALUES);CHKERRQ(ierr); /* TODO Off-diagonal */ ierr = PetscFree(cindices);CHKERRQ(ierr); ierr = DMPlexRestoreClosureIndices(dmf, fsection, globalFSection, cell, PETSC_FALSE, &numFIndices, &findices, NULL, NULL);CHKERRQ(ierr); } ierr = DMSwarmRestoreField(dmc, DMSwarmPICField_coor, NULL, NULL, (void **) &coords);CHKERRQ(ierr); } ierr = PetscFree4(elemMat, elemMatSq, rowIDXs, xi);CHKERRQ(ierr); ierr = PetscFree(adj);CHKERRQ(ierr); ierr = DMSwarmSortRestoreAccess(dmc);CHKERRQ(ierr); ierr = PetscFree3(v0, J, invJ);CHKERRQ(ierr); ierr = MatAssemblyBegin(mass, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); ierr = MatAssemblyEnd(mass, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@C DMSwarmCreateMassMatrixSquare - Creates the block-diagonal of the square, M^T_p M_p, of the particle mass matrix M_p Collective on dmCoarse Input parameters: + dmCoarse - a DMSwarm - dmFine - a DMPlex Output parameter: . mass - the square of the particle mass matrix Level: advanced Notes: We only compute the block diagonal since this provides a good preconditioner and is completely local. It would be possible in the future to compute the full normal equations. .seealso: DMCreateMassMatrix() @*/ PetscErrorCode DMSwarmCreateMassMatrixSquare(DM dmCoarse, DM dmFine, Mat *mass) { PetscInt n; void *ctx; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmGetLocalSize(dmCoarse, &n);CHKERRQ(ierr); ierr = MatCreate(PetscObjectComm((PetscObject) dmCoarse), mass);CHKERRQ(ierr); ierr = MatSetSizes(*mass, n, n, PETSC_DETERMINE, PETSC_DETERMINE);CHKERRQ(ierr); ierr = MatSetType(*mass, dmCoarse->mattype);CHKERRQ(ierr); ierr = DMGetApplicationContext(dmFine, &ctx);CHKERRQ(ierr); ierr = DMSwarmComputeMassMatrixSquare_Private(dmCoarse, dmFine, *mass, PETSC_TRUE, ctx);CHKERRQ(ierr); ierr = MatViewFromOptions(*mass, NULL, "-mass_sq_mat_view");CHKERRQ(ierr); PetscFunctionReturn(0); } /*@C DMSwarmCreateGlobalVectorFromField - Creates a Vec object sharing the array associated with a given field Collective on dm Input parameters: + dm - a DMSwarm - fieldname - the textual name given to a registered field Output parameter: . vec - the vector Level: beginner Notes: The vector must be returned using a matching call to DMSwarmDestroyGlobalVectorFromField(). .seealso: DMSwarmRegisterPetscDatatypeField(), DMSwarmDestroyGlobalVectorFromField() @*/ PetscErrorCode DMSwarmCreateGlobalVectorFromField(DM dm,const char fieldname[],Vec *vec) { MPI_Comm comm = PetscObjectComm((PetscObject) dm); PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmCreateVectorFromField_Private(dm, fieldname, comm, vec);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@C DMSwarmDestroyGlobalVectorFromField - Destroys the Vec object which share the array associated with a given field Collective on dm Input parameters: + dm - a DMSwarm - fieldname - the textual name given to a registered field Output parameter: . vec - the vector Level: beginner .seealso: DMSwarmRegisterPetscDatatypeField(), DMSwarmCreateGlobalVectorFromField() @*/ PetscErrorCode DMSwarmDestroyGlobalVectorFromField(DM dm,const char fieldname[],Vec *vec) { PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmDestroyVectorFromField_Private(dm, fieldname, vec);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@C DMSwarmCreateLocalVectorFromField - Creates a Vec object sharing the array associated with a given field Collective on dm Input parameters: + dm - a DMSwarm - fieldname - the textual name given to a registered field Output parameter: . vec - the vector Level: beginner Notes: The vector must be returned using a matching call to DMSwarmDestroyLocalVectorFromField(). .seealso: DMSwarmRegisterPetscDatatypeField(), DMSwarmDestroyLocalVectorFromField() @*/ PetscErrorCode DMSwarmCreateLocalVectorFromField(DM dm,const char fieldname[],Vec *vec) { MPI_Comm comm = PETSC_COMM_SELF; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmCreateVectorFromField_Private(dm, fieldname, comm, vec);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@C DMSwarmDestroyLocalVectorFromField - Destroys the Vec object which share the array associated with a given field Collective on dm Input parameters: + dm - a DMSwarm - fieldname - the textual name given to a registered field Output parameter: . vec - the vector Level: beginner .seealso: DMSwarmRegisterPetscDatatypeField(), DMSwarmCreateLocalVectorFromField() @*/ PetscErrorCode DMSwarmDestroyLocalVectorFromField(DM dm,const char fieldname[],Vec *vec) { PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmDestroyVectorFromField_Private(dm, fieldname, vec);CHKERRQ(ierr); PetscFunctionReturn(0); } /* PetscErrorCode DMSwarmCreateGlobalVectorFromFields(DM dm,const PetscInt nf,const char *fieldnames[],Vec *vec) { PetscFunctionReturn(0); } PetscErrorCode DMSwarmRestoreGlobalVectorFromFields(DM dm,Vec *vec) { PetscFunctionReturn(0); } */ /*@C DMSwarmInitializeFieldRegister - Initiates the registration of fields to a DMSwarm Collective on dm Input parameter: . dm - a DMSwarm Level: beginner Notes: After all fields have been registered, you must call DMSwarmFinalizeFieldRegister(). .seealso: DMSwarmFinalizeFieldRegister(), DMSwarmRegisterPetscDatatypeField(), DMSwarmRegisterUserStructField(), DMSwarmRegisterUserDatatypeField() @*/ PetscErrorCode DMSwarmInitializeFieldRegister(DM dm) { DM_Swarm *swarm = (DM_Swarm *) dm->data; PetscErrorCode ierr; PetscFunctionBegin; if (!swarm->field_registration_initialized) { swarm->field_registration_initialized = PETSC_TRUE; ierr = DMSwarmRegisterPetscDatatypeField(dm,DMSwarmField_pid,1,PETSC_INT64);CHKERRQ(ierr); /* unique identifer */ ierr = DMSwarmRegisterPetscDatatypeField(dm,DMSwarmField_rank,1,PETSC_INT);CHKERRQ(ierr); /* used for communication */ } PetscFunctionReturn(0); } /*@ DMSwarmFinalizeFieldRegister - Finalizes the registration of fields to a DMSwarm Collective on dm Input parameter: . dm - a DMSwarm Level: beginner Notes: After DMSwarmFinalizeFieldRegister() has been called, no new fields can be defined on the DMSwarm. .seealso: DMSwarmInitializeFieldRegister(), DMSwarmRegisterPetscDatatypeField(), DMSwarmRegisterUserStructField(), DMSwarmRegisterUserDatatypeField() @*/ PetscErrorCode DMSwarmFinalizeFieldRegister(DM dm) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; if (!swarm->field_registration_finalized) { ierr = DMSwarmDataBucketFinalize(swarm->db);CHKERRQ(ierr); } swarm->field_registration_finalized = PETSC_TRUE; PetscFunctionReturn(0); } /*@ DMSwarmSetLocalSizes - Sets the length of all registered fields on the DMSwarm Not collective Input parameters: + dm - a DMSwarm . nlocal - the length of each registered field - buffer - the length of the buffer used to efficient dynamic re-sizing Level: beginner .seealso: DMSwarmGetLocalSize() @*/ PetscErrorCode DMSwarmSetLocalSizes(DM dm,PetscInt nlocal,PetscInt buffer) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscLogEventBegin(DMSWARM_SetSizes,0,0,0,0);CHKERRQ(ierr); ierr = DMSwarmDataBucketSetSizes(swarm->db,nlocal,buffer);CHKERRQ(ierr); ierr = PetscLogEventEnd(DMSWARM_SetSizes,0,0,0,0);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmSetCellDM - Attachs a DM to a DMSwarm Collective on dm Input parameters: + dm - a DMSwarm - dmcell - the DM to attach to the DMSwarm Level: beginner Notes: The attached DM (dmcell) will be queried for point location and neighbor MPI-rank information if DMSwarmMigrate() is called. .seealso: DMSwarmSetType(), DMSwarmGetCellDM(), DMSwarmMigrate() @*/ PetscErrorCode DMSwarmSetCellDM(DM dm,DM dmcell) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscFunctionBegin; swarm->dmcell = dmcell; PetscFunctionReturn(0); } /*@ DMSwarmGetCellDM - Fetches the attached cell DM Collective on dm Input parameter: . dm - a DMSwarm Output parameter: . dmcell - the DM which was attached to the DMSwarm Level: beginner .seealso: DMSwarmSetCellDM() @*/ PetscErrorCode DMSwarmGetCellDM(DM dm,DM *dmcell) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscFunctionBegin; *dmcell = swarm->dmcell; PetscFunctionReturn(0); } /*@ DMSwarmGetLocalSize - Retrives the local length of fields registered Not collective Input parameter: . dm - a DMSwarm Output parameter: . nlocal - the length of each registered field Level: beginner .seealso: DMSwarmGetSize(), DMSwarmSetLocalSizes() @*/ PetscErrorCode DMSwarmGetLocalSize(DM dm,PetscInt *nlocal) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; if (nlocal) {ierr = DMSwarmDataBucketGetSizes(swarm->db,nlocal,NULL,NULL);CHKERRQ(ierr);} PetscFunctionReturn(0); } /*@ DMSwarmGetSize - Retrives the total length of fields registered Collective on dm Input parameter: . dm - a DMSwarm Output parameter: . n - the total length of each registered field Level: beginner Note: This calls MPI_Allreduce upon each call (inefficient but safe) .seealso: DMSwarmGetLocalSize(), DMSwarmSetLocalSizes() @*/ PetscErrorCode DMSwarmGetSize(DM dm,PetscInt *n) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscInt nlocal,ng; PetscFunctionBegin; ierr = DMSwarmDataBucketGetSizes(swarm->db,&nlocal,NULL,NULL);CHKERRQ(ierr); ierr = MPI_Allreduce(&nlocal,&ng,1,MPIU_INT,MPI_SUM,PetscObjectComm((PetscObject)dm));CHKERRMPI(ierr); if (n) { *n = ng; } PetscFunctionReturn(0); } /*@C DMSwarmRegisterPetscDatatypeField - Register a field to a DMSwarm with a native PETSc data type Collective on dm Input parameters: + dm - a DMSwarm . fieldname - the textual name to identify this field . blocksize - the number of each data type - type - a valid PETSc data type (PETSC_CHAR, PETSC_SHORT, PETSC_INT, PETSC_FLOAT, PETSC_REAL, PETSC_LONG) Level: beginner Notes: The textual name for each registered field must be unique. .seealso: DMSwarmRegisterUserStructField(), DMSwarmRegisterUserDatatypeField() @*/ PetscErrorCode DMSwarmRegisterPetscDatatypeField(DM dm,const char fieldname[],PetscInt blocksize,PetscDataType type) { PetscErrorCode ierr; DM_Swarm *swarm = (DM_Swarm*)dm->data; size_t size; PetscFunctionBegin; if (!swarm->field_registration_initialized) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Must call DMSwarmInitializeFieldRegister() first"); if (swarm->field_registration_finalized) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Cannot register additional fields after calling DMSwarmFinalizeFieldRegister() first"); if (type == PETSC_OBJECT) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Valid for {char,short,int,long,float,double}"); if (type == PETSC_FUNCTION) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Valid for {char,short,int,long,float,double}"); if (type == PETSC_STRING) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Valid for {char,short,int,long,float,double}"); if (type == PETSC_STRUCT) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Valid for {char,short,int,long,float,double}"); if (type == PETSC_DATATYPE_UNKNOWN) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"Valid for {char,short,int,long,float,double}"); ierr = PetscDataTypeGetSize(type, &size);CHKERRQ(ierr); /* Load a specific data type into data bucket, specifying textual name and its size in bytes */ ierr = DMSwarmDataBucketRegisterField(swarm->db,"DMSwarmRegisterPetscDatatypeField",fieldname,blocksize*size,NULL);CHKERRQ(ierr); { DMSwarmDataField gfield; ierr = DMSwarmDataBucketGetDMSwarmDataFieldByName(swarm->db,fieldname,&gfield);CHKERRQ(ierr); ierr = DMSwarmDataFieldSetBlockSize(gfield,blocksize);CHKERRQ(ierr); } swarm->db->field[swarm->db->nfields-1]->petsc_type = type; PetscFunctionReturn(0); } /*@C DMSwarmRegisterUserStructField - Register a user defined struct to a DMSwarm Collective on dm Input parameters: + dm - a DMSwarm . fieldname - the textual name to identify this field - size - the size in bytes of the user struct of each data type Level: beginner Notes: The textual name for each registered field must be unique. .seealso: DMSwarmRegisterPetscDatatypeField(), DMSwarmRegisterUserDatatypeField() @*/ PetscErrorCode DMSwarmRegisterUserStructField(DM dm,const char fieldname[],size_t size) { PetscErrorCode ierr; DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscFunctionBegin; ierr = DMSwarmDataBucketRegisterField(swarm->db,"DMSwarmRegisterUserStructField",fieldname,size,NULL);CHKERRQ(ierr); swarm->db->field[swarm->db->nfields-1]->petsc_type = PETSC_STRUCT ; PetscFunctionReturn(0); } /*@C DMSwarmRegisterUserDatatypeField - Register a user defined data type to a DMSwarm Collective on dm Input parameters: + dm - a DMSwarm . fieldname - the textual name to identify this field . size - the size in bytes of the user data type - blocksize - the number of each data type Level: beginner Notes: The textual name for each registered field must be unique. .seealso: DMSwarmRegisterPetscDatatypeField(), DMSwarmRegisterUserStructField(), DMSwarmRegisterUserDatatypeField() @*/ PetscErrorCode DMSwarmRegisterUserDatatypeField(DM dm,const char fieldname[],size_t size,PetscInt blocksize) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmDataBucketRegisterField(swarm->db,"DMSwarmRegisterUserDatatypeField",fieldname,blocksize*size,NULL);CHKERRQ(ierr); { DMSwarmDataField gfield; ierr = DMSwarmDataBucketGetDMSwarmDataFieldByName(swarm->db,fieldname,&gfield);CHKERRQ(ierr); ierr = DMSwarmDataFieldSetBlockSize(gfield,blocksize);CHKERRQ(ierr); } swarm->db->field[swarm->db->nfields-1]->petsc_type = PETSC_DATATYPE_UNKNOWN; PetscFunctionReturn(0); } /*@C DMSwarmGetField - Get access to the underlying array storing all entries associated with a registered field Not collective Input parameters: + dm - a DMSwarm - fieldname - the textual name to identify this field Output parameters: + blocksize - the number of each data type . type - the data type - data - pointer to raw array Level: beginner Notes: The array must be returned using a matching call to DMSwarmRestoreField(). .seealso: DMSwarmRestoreField() @*/ PetscErrorCode DMSwarmGetField(DM dm,const char fieldname[],PetscInt *blocksize,PetscDataType *type,void **data) { DM_Swarm *swarm = (DM_Swarm*)dm->data; DMSwarmDataField gfield; PetscErrorCode ierr; PetscFunctionBegin; if (!swarm->issetup) { ierr = DMSetUp(dm);CHKERRQ(ierr); } ierr = DMSwarmDataBucketGetDMSwarmDataFieldByName(swarm->db,fieldname,&gfield);CHKERRQ(ierr); ierr = DMSwarmDataFieldGetAccess(gfield);CHKERRQ(ierr); ierr = DMSwarmDataFieldGetEntries(gfield,data);CHKERRQ(ierr); if (blocksize) {*blocksize = gfield->bs; } if (type) { *type = gfield->petsc_type; } PetscFunctionReturn(0); } /*@C DMSwarmRestoreField - Restore access to the underlying array storing all entries associated with a registered field Not collective Input parameters: + dm - a DMSwarm - fieldname - the textual name to identify this field Output parameters: + blocksize - the number of each data type . type - the data type - data - pointer to raw array Level: beginner Notes: The user must call DMSwarmGetField() prior to calling DMSwarmRestoreField(). .seealso: DMSwarmGetField() @*/ PetscErrorCode DMSwarmRestoreField(DM dm,const char fieldname[],PetscInt *blocksize,PetscDataType *type,void **data) { DM_Swarm *swarm = (DM_Swarm*)dm->data; DMSwarmDataField gfield; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmDataBucketGetDMSwarmDataFieldByName(swarm->db,fieldname,&gfield);CHKERRQ(ierr); ierr = DMSwarmDataFieldRestoreAccess(gfield);CHKERRQ(ierr); if (data) *data = NULL; PetscFunctionReturn(0); } /*@ DMSwarmAddPoint - Add space for one new point in the DMSwarm Not collective Input parameter: . dm - a DMSwarm Level: beginner Notes: The new point will have all fields initialized to zero. .seealso: DMSwarmAddNPoints() @*/ PetscErrorCode DMSwarmAddPoint(DM dm) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; if (!swarm->issetup) {ierr = DMSetUp(dm);CHKERRQ(ierr);} ierr = PetscLogEventBegin(DMSWARM_AddPoints,0,0,0,0);CHKERRQ(ierr); ierr = DMSwarmDataBucketAddPoint(swarm->db);CHKERRQ(ierr); ierr = PetscLogEventEnd(DMSWARM_AddPoints,0,0,0,0);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmAddNPoints - Add space for a number of new points in the DMSwarm Not collective Input parameters: + dm - a DMSwarm - npoints - the number of new points to add Level: beginner Notes: The new point will have all fields initialized to zero. .seealso: DMSwarmAddPoint() @*/ PetscErrorCode DMSwarmAddNPoints(DM dm,PetscInt npoints) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscInt nlocal; PetscFunctionBegin; ierr = PetscLogEventBegin(DMSWARM_AddPoints,0,0,0,0);CHKERRQ(ierr); ierr = DMSwarmDataBucketGetSizes(swarm->db,&nlocal,NULL,NULL);CHKERRQ(ierr); nlocal = nlocal + npoints; ierr = DMSwarmDataBucketSetSizes(swarm->db,nlocal,DMSWARM_DATA_BUCKET_BUFFER_DEFAULT);CHKERRQ(ierr); ierr = PetscLogEventEnd(DMSWARM_AddPoints,0,0,0,0);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmRemovePoint - Remove the last point from the DMSwarm Not collective Input parameter: . dm - a DMSwarm Level: beginner .seealso: DMSwarmRemovePointAtIndex() @*/ PetscErrorCode DMSwarmRemovePoint(DM dm) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscLogEventBegin(DMSWARM_RemovePoints,0,0,0,0);CHKERRQ(ierr); ierr = DMSwarmDataBucketRemovePoint(swarm->db);CHKERRQ(ierr); ierr = PetscLogEventEnd(DMSWARM_RemovePoints,0,0,0,0);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmRemovePointAtIndex - Removes a specific point from the DMSwarm Not collective Input parameters: + dm - a DMSwarm - idx - index of point to remove Level: beginner .seealso: DMSwarmRemovePoint() @*/ PetscErrorCode DMSwarmRemovePointAtIndex(DM dm,PetscInt idx) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscLogEventBegin(DMSWARM_RemovePoints,0,0,0,0);CHKERRQ(ierr); ierr = DMSwarmDataBucketRemovePointAtIndex(swarm->db,idx);CHKERRQ(ierr); ierr = PetscLogEventEnd(DMSWARM_RemovePoints,0,0,0,0);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmCopyPoint - Copy point pj to point pi in the DMSwarm Not collective Input parameters: + dm - a DMSwarm . pi - the index of the point to copy - pj - the point index where the copy should be located Level: beginner .seealso: DMSwarmRemovePoint() @*/ PetscErrorCode DMSwarmCopyPoint(DM dm,PetscInt pi,PetscInt pj) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; if (!swarm->issetup) {ierr = DMSetUp(dm);CHKERRQ(ierr);} ierr = DMSwarmDataBucketCopyPoint(swarm->db,pi,swarm->db,pj);CHKERRQ(ierr); PetscFunctionReturn(0); } PetscErrorCode DMSwarmMigrate_Basic(DM dm,PetscBool remove_sent_points) { PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmMigrate_Push_Basic(dm,remove_sent_points);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmMigrate - Relocates points defined in the DMSwarm to other MPI-ranks Collective on dm Input parameters: + dm - the DMSwarm - remove_sent_points - flag indicating if sent points should be removed from the current MPI-rank Notes: The DM will be modified to accommodate received points. If remove_sent_points = PETSC_TRUE, any points that were sent will be removed from the DM. Different styles of migration are supported. See DMSwarmSetMigrateType(). Level: advanced .seealso: DMSwarmSetMigrateType() @*/ PetscErrorCode DMSwarmMigrate(DM dm,PetscBool remove_sent_points) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscLogEventBegin(DMSWARM_Migrate,0,0,0,0);CHKERRQ(ierr); switch (swarm->migrate_type) { case DMSWARM_MIGRATE_BASIC: ierr = DMSwarmMigrate_Basic(dm,remove_sent_points);CHKERRQ(ierr); break; case DMSWARM_MIGRATE_DMCELLNSCATTER: ierr = DMSwarmMigrate_CellDMScatter(dm,remove_sent_points);CHKERRQ(ierr); break; case DMSWARM_MIGRATE_DMCELLEXACT: SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_SUP,"DMSWARM_MIGRATE_DMCELLEXACT not implemented"); case DMSWARM_MIGRATE_USER: SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_SUP,"DMSWARM_MIGRATE_USER not implemented"); default: SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_SUP,"DMSWARM_MIGRATE type unknown"); } ierr = PetscLogEventEnd(DMSWARM_Migrate,0,0,0,0);CHKERRQ(ierr); ierr = DMClearGlobalVectors(dm);CHKERRQ(ierr); PetscFunctionReturn(0); } PetscErrorCode DMSwarmMigrate_GlobalToLocal_Basic(DM dm,PetscInt *globalsize); /* DMSwarmCollectViewCreate * Applies a collection method and gathers point neighbour points into dm Notes: Users should call DMSwarmCollectViewDestroy() after they have finished computations associated with the collected points */ /*@ DMSwarmCollectViewCreate - Applies a collection method and gathers points in neighbour MPI-ranks into the DMSwarm Collective on dm Input parameter: . dm - the DMSwarm Notes: Users should call DMSwarmCollectViewDestroy() after they have finished computations associated with the collected points Different collect methods are supported. See DMSwarmSetCollectType(). Level: advanced .seealso: DMSwarmCollectViewDestroy(), DMSwarmSetCollectType() @*/ PetscErrorCode DMSwarmCollectViewCreate(DM dm) { PetscErrorCode ierr; DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscInt ng; PetscFunctionBegin; if (swarm->collect_view_active) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"CollectView currently active"); ierr = DMSwarmGetLocalSize(dm,&ng);CHKERRQ(ierr); switch (swarm->collect_type) { case DMSWARM_COLLECT_BASIC: ierr = DMSwarmMigrate_GlobalToLocal_Basic(dm,&ng);CHKERRQ(ierr); break; case DMSWARM_COLLECT_DMDABOUNDINGBOX: SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_SUP,"DMSWARM_COLLECT_DMDABOUNDINGBOX not implemented"); case DMSWARM_COLLECT_GENERAL: SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_SUP,"DMSWARM_COLLECT_GENERAL not implemented"); default: SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_SUP,"DMSWARM_COLLECT type unknown"); } swarm->collect_view_active = PETSC_TRUE; swarm->collect_view_reset_nlocal = ng; PetscFunctionReturn(0); } /*@ DMSwarmCollectViewDestroy - Resets the DMSwarm to the size prior to calling DMSwarmCollectViewCreate() Collective on dm Input parameters: . dm - the DMSwarm Notes: Users should call DMSwarmCollectViewCreate() before this function is called. Level: advanced .seealso: DMSwarmCollectViewCreate(), DMSwarmSetCollectType() @*/ PetscErrorCode DMSwarmCollectViewDestroy(DM dm) { PetscErrorCode ierr; DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscFunctionBegin; if (!swarm->collect_view_active) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"CollectView is currently not active"); ierr = DMSwarmSetLocalSizes(dm,swarm->collect_view_reset_nlocal,-1);CHKERRQ(ierr); swarm->collect_view_active = PETSC_FALSE; PetscFunctionReturn(0); } PetscErrorCode DMSwarmSetUpPIC(DM dm) { PetscInt dim; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMGetDimension(dm,&dim);CHKERRQ(ierr); if (dim < 1) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Dimension must be 1,2,3 - found %D",dim); if (dim > 3) SETERRQ1(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Dimension must be 1,2,3 - found %D",dim); ierr = DMSwarmRegisterPetscDatatypeField(dm,DMSwarmPICField_coor,dim,PETSC_DOUBLE);CHKERRQ(ierr); ierr = DMSwarmRegisterPetscDatatypeField(dm,DMSwarmPICField_cellid,1,PETSC_INT);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmSetPointCoordinatesRandom - Sets initial coordinates for particles in each cell Collective on dm Input parameters: + dm - the DMSwarm - Npc - The number of particles per cell in the cell DM Notes: The user must use DMSwarmSetCellDM() to set the cell DM first. The particles are placed randomly inside each cell. If only one particle is in each cell, it is placed at the centroid. Level: intermediate .seealso: DMSwarmSetCellDM() @*/ PetscErrorCode DMSwarmSetPointCoordinatesRandom(DM dm, PetscInt Npc) { DM cdm; PetscRandom rnd; DMPolytopeType ct; PetscBool simplex; PetscReal *centroid, *coords, *xi0, *v0, *J, *invJ, detJ; PetscInt dim, d, cStart, cEnd, c, p; PetscErrorCode ierr; PetscFunctionBeginUser; ierr = PetscRandomCreate(PetscObjectComm((PetscObject) dm), &rnd);CHKERRQ(ierr); ierr = PetscRandomSetInterval(rnd, -1.0, 1.0);CHKERRQ(ierr); ierr = PetscRandomSetType(rnd, PETSCRAND48);CHKERRQ(ierr); ierr = DMSwarmGetCellDM(dm, &cdm);CHKERRQ(ierr); ierr = DMGetDimension(cdm, &dim);CHKERRQ(ierr); ierr = DMPlexGetHeightStratum(cdm, 0, &cStart, &cEnd);CHKERRQ(ierr); ierr = DMPlexGetCellType(cdm, cStart, &ct);CHKERRQ(ierr); simplex = DMPolytopeTypeGetNumVertices(ct) == DMPolytopeTypeGetDim(ct)+1 ? PETSC_TRUE : PETSC_FALSE; ierr = PetscMalloc5(dim, ¢roid, dim, &xi0, dim, &v0, dim*dim, &J, dim*dim, &invJ);CHKERRQ(ierr); for (d = 0; d < dim; ++d) xi0[d] = -1.0; ierr = DMSwarmGetField(dm, DMSwarmPICField_coor, NULL, NULL, (void **) &coords);CHKERRQ(ierr); for (c = cStart; c < cEnd; ++c) { if (Npc == 1) { ierr = DMPlexComputeCellGeometryFVM(cdm, c, NULL, centroid, NULL);CHKERRQ(ierr); for (d = 0; d < dim; ++d) coords[c*dim+d] = centroid[d]; } else { ierr = DMPlexComputeCellGeometryFEM(cdm, c, NULL, v0, J, invJ, &detJ);CHKERRQ(ierr); /* affine */ for (p = 0; p < Npc; ++p) { const PetscInt n = c*Npc + p; PetscReal sum = 0.0, refcoords[3]; for (d = 0; d < dim; ++d) { ierr = PetscRandomGetValueReal(rnd, &refcoords[d]);CHKERRQ(ierr); sum += refcoords[d]; } if (simplex && sum > 0.0) for (d = 0; d < dim; ++d) refcoords[d] -= PetscSqrtReal(dim)*sum; CoordinatesRefToReal(dim, dim, xi0, v0, J, refcoords, &coords[n*dim]); } } } ierr = DMSwarmRestoreField(dm, DMSwarmPICField_coor, NULL, NULL, (void **) &coords);CHKERRQ(ierr); ierr = PetscFree5(centroid, xi0, v0, J, invJ);CHKERRQ(ierr); ierr = PetscRandomDestroy(&rnd);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@ DMSwarmSetType - Set particular flavor of DMSwarm Collective on dm Input parameters: + dm - the DMSwarm - stype - the DMSwarm type (e.g. DMSWARM_PIC) Level: advanced .seealso: DMSwarmSetMigrateType(), DMSwarmSetCollectType() @*/ PetscErrorCode DMSwarmSetType(DM dm,DMSwarmType stype) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscFunctionBegin; swarm->swarm_type = stype; if (swarm->swarm_type == DMSWARM_PIC) { ierr = DMSwarmSetUpPIC(dm);CHKERRQ(ierr); } PetscFunctionReturn(0); } PetscErrorCode DMSetup_Swarm(DM dm) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscErrorCode ierr; PetscMPIInt rank; PetscInt p,npoints,*rankval; PetscFunctionBegin; if (swarm->issetup) PetscFunctionReturn(0); swarm->issetup = PETSC_TRUE; if (swarm->swarm_type == DMSWARM_PIC) { /* check dmcell exists */ if (!swarm->dmcell) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"DMSWARM_PIC requires you call DMSwarmSetCellDM"); if (swarm->dmcell->ops->locatepointssubdomain) { /* check methods exists for exact ownership identificiation */ ierr = PetscInfo(dm, "DMSWARM_PIC: Using method CellDM->ops->LocatePointsSubdomain\n");CHKERRQ(ierr); swarm->migrate_type = DMSWARM_MIGRATE_DMCELLEXACT; } else { /* check methods exist for point location AND rank neighbor identification */ if (swarm->dmcell->ops->locatepoints) { ierr = PetscInfo(dm, "DMSWARM_PIC: Using method CellDM->LocatePoints\n");CHKERRQ(ierr); } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"DMSWARM_PIC requires the method CellDM->ops->locatepoints be defined"); if (swarm->dmcell->ops->getneighbors) { ierr = PetscInfo(dm, "DMSWARM_PIC: Using method CellDM->GetNeigbors\n");CHKERRQ(ierr); } else SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"DMSWARM_PIC requires the method CellDM->ops->getneighbors be defined"); swarm->migrate_type = DMSWARM_MIGRATE_DMCELLNSCATTER; } } ierr = DMSwarmFinalizeFieldRegister(dm);CHKERRQ(ierr); /* check some fields were registered */ if (swarm->db->nfields <= 2) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"At least one field user must be registered via DMSwarmRegisterXXX()"); /* check local sizes were set */ if (swarm->db->L == -1) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_USER,"Local sizes must be set via DMSwarmSetLocalSizes()"); /* initialize values in pid and rank placeholders */ /* TODO: [pid - use MPI_Scan] */ ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)dm),&rank);CHKERRMPI(ierr); ierr = DMSwarmDataBucketGetSizes(swarm->db,&npoints,NULL,NULL);CHKERRQ(ierr); ierr = DMSwarmGetField(dm,DMSwarmField_rank,NULL,NULL,(void**)&rankval);CHKERRQ(ierr); for (p=0; pdata; PetscErrorCode ierr; PetscFunctionBegin; if (--swarm->refct > 0) PetscFunctionReturn(0); ierr = DMSwarmDataBucketDestroy(&swarm->db);CHKERRQ(ierr); if (swarm->sort_context) { ierr = DMSwarmSortDestroy(&swarm->sort_context);CHKERRQ(ierr); } ierr = PetscFree(swarm);CHKERRQ(ierr); PetscFunctionReturn(0); } PetscErrorCode DMSwarmView_Draw(DM dm, PetscViewer viewer) { DM cdm; PetscDraw draw; PetscReal *coords, oldPause, radius = 0.01; PetscInt Np, p, bs; PetscErrorCode ierr; PetscFunctionBegin; ierr = PetscOptionsGetReal(NULL, ((PetscObject) dm)->prefix, "-dm_view_swarm_radius", &radius, NULL);CHKERRQ(ierr); ierr = PetscViewerDrawGetDraw(viewer, 0, &draw);CHKERRQ(ierr); ierr = DMSwarmGetCellDM(dm, &cdm);CHKERRQ(ierr); ierr = PetscDrawGetPause(draw, &oldPause);CHKERRQ(ierr); ierr = PetscDrawSetPause(draw, 0.0);CHKERRQ(ierr); ierr = DMView(cdm, viewer);CHKERRQ(ierr); ierr = PetscDrawSetPause(draw, oldPause);CHKERRQ(ierr); ierr = DMSwarmGetLocalSize(dm, &Np);CHKERRQ(ierr); ierr = DMSwarmGetField(dm, DMSwarmPICField_coor, &bs, NULL, (void **) &coords);CHKERRQ(ierr); for (p = 0; p < Np; ++p) { const PetscInt i = p*bs; ierr = PetscDrawEllipse(draw, coords[i], coords[i+1], radius, radius, PETSC_DRAW_BLUE);CHKERRQ(ierr); } ierr = DMSwarmRestoreField(dm, DMSwarmPICField_coor, &bs, NULL, (void **) &coords);CHKERRQ(ierr); ierr = PetscDrawFlush(draw);CHKERRQ(ierr); ierr = PetscDrawPause(draw);CHKERRQ(ierr); ierr = PetscDrawSave(draw);CHKERRQ(ierr); PetscFunctionReturn(0); } PetscErrorCode DMView_Swarm(DM dm, PetscViewer viewer) { DM_Swarm *swarm = (DM_Swarm*)dm->data; PetscBool iascii,ibinary,ishdf5,isvtk,isdraw; PetscErrorCode ierr; PetscFunctionBegin; PetscValidHeaderSpecific(dm,DM_CLASSID,1); PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2); ierr = PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERASCII, &iascii);CHKERRQ(ierr); ierr = PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERBINARY,&ibinary);CHKERRQ(ierr); ierr = PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERVTK, &isvtk);CHKERRQ(ierr); ierr = PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERHDF5, &ishdf5);CHKERRQ(ierr); ierr = PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERDRAW, &isdraw);CHKERRQ(ierr); if (iascii) { ierr = DMSwarmDataBucketView(PetscObjectComm((PetscObject)dm),swarm->db,NULL,DATABUCKET_VIEW_STDOUT);CHKERRQ(ierr); } else if (ibinary) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"NO Binary support"); #if defined(PETSC_HAVE_HDF5) else if (ishdf5) { ierr = DMSwarmView_HDF5(dm, viewer);CHKERRQ(ierr); } #else else if (ishdf5) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"HDF5 not supported. Please reconfigure using --download-hdf5"); #endif else if (isvtk) SETERRQ(PetscObjectComm((PetscObject)dm),PETSC_ERR_SUP,"NO VTK support"); else if (isdraw) { ierr = DMSwarmView_Draw(dm, viewer);CHKERRQ(ierr); } PetscFunctionReturn(0); } /*@C DMSwarmGetCellSwarm - Extracts a single cell from the DMSwarm object, returns it as a single cell DMSwarm. The cell DM is filtered for fields of that cell, and the filtered DM is used as the cell DM of the new swarm object. Important: Changes to this cell of the swarm will be lost if they are made prior to restoring this cell. Noncollective Input parameters: + sw - the DMSwarm - cellID - the integer id of the cell to be extracted and filtered Output parameters: . cellswarm - The new DMSwarm Level: beginner Note: This presently only supports DMSWARM_PIC type .seealso: DMSwarmRestoreCellSwarm() @*/ PETSC_EXTERN PetscErrorCode DMSwarmGetCellSwarm(DM sw, PetscInt cellID, DM cellswarm) { DM_Swarm *original = (DM_Swarm*) sw->data; DMLabel label; DM dmc, subdmc; PetscInt *pids, particles, dim; PetscErrorCode ierr; PetscFunctionBegin; /* Configure new swarm */ ierr = DMSetType(cellswarm, DMSWARM);CHKERRQ(ierr); ierr = DMGetDimension(sw, &dim);CHKERRQ(ierr); ierr = DMSetDimension(cellswarm, dim);CHKERRQ(ierr); ierr = DMSwarmSetType(cellswarm, DMSWARM_PIC);CHKERRQ(ierr); /* Destroy the unused, unconfigured data bucket to prevent stragglers in memory */ ierr = DMSwarmDataBucketDestroy(&((DM_Swarm*)cellswarm->data)->db);CHKERRQ(ierr); ierr = DMSwarmSortGetAccess(sw);CHKERRQ(ierr); ierr = DMSwarmSortGetNumberOfPointsPerCell(sw, cellID, &particles);CHKERRQ(ierr); ierr = DMSwarmSortGetPointsPerCell(sw, cellID, &particles, &pids);CHKERRQ(ierr); ierr = DMSwarmDataBucketCreateFromSubset(original->db, particles, pids, &((DM_Swarm*)cellswarm->data)->db);CHKERRQ(ierr); ierr = DMSwarmSortRestoreAccess(sw);CHKERRQ(ierr); ierr = PetscFree(pids);CHKERRQ(ierr); ierr = DMSwarmGetCellDM(sw, &dmc);CHKERRQ(ierr); ierr = DMLabelCreate(PetscObjectComm((PetscObject)sw), "singlecell", &label);CHKERRQ(ierr); ierr = DMAddLabel(dmc, label);CHKERRQ(ierr); ierr = DMLabelSetValue(label, cellID, 1);CHKERRQ(ierr); ierr = DMPlexFilter(dmc, label, 1, &subdmc);CHKERRQ(ierr); ierr = DMSwarmSetCellDM(cellswarm, subdmc);CHKERRQ(ierr); ierr = DMLabelDestroy(&label);CHKERRQ(ierr); PetscFunctionReturn(0); } /*@C DMSwarmRestoreCellSwarm - Restores a DMSwarm object obtained with DMSwarmGetCellSwarm. All fields are copied back into the parent swarm. Noncollective Input parameters: + sw - the parent DMSwarm . cellID - the integer id of the cell to be copied back into the parent swarm - cellswarm - the cell swarm object Level: beginner Note: This only supports DMSWARM_PIC types of DMSwarms .seealso: DMSwarmGetCellSwarm() @*/ PETSC_EXTERN PetscErrorCode DMSwarmRestoreCellSwarm(DM sw, PetscInt cellID, DM cellswarm) { DM dmc; PetscInt *pids, particles, p; PetscErrorCode ierr; PetscFunctionBegin; ierr = DMSwarmSortGetAccess(sw);CHKERRQ(ierr); ierr = DMSwarmSortGetPointsPerCell(sw, cellID, &particles, &pids);CHKERRQ(ierr); ierr = DMSwarmSortRestoreAccess(sw);CHKERRQ(ierr); /* Pointwise copy of each particle based on pid. The parent swarm may not be altered during this process. */ for (p=0; pdata)->db,pids[p],((DM_Swarm*)sw->data)->db,pids[p]);CHKERRQ(ierr); } /* Free memory, destroy cell dm */ ierr = DMSwarmGetCellDM(cellswarm, &dmc);CHKERRQ(ierr); ierr = DMDestroy(&dmc);CHKERRQ(ierr); ierr = PetscFree(pids);CHKERRQ(ierr); PetscFunctionReturn(0); } PETSC_INTERN PetscErrorCode DMClone_Swarm(DM, DM *); static PetscErrorCode DMInitialize_Swarm(DM sw) { PetscFunctionBegin; sw->dim = 0; sw->ops->view = DMView_Swarm; sw->ops->load = NULL; sw->ops->setfromoptions = NULL; sw->ops->clone = DMClone_Swarm; sw->ops->setup = DMSetup_Swarm; sw->ops->createlocalsection = NULL; sw->ops->createdefaultconstraints = NULL; sw->ops->createglobalvector = DMCreateGlobalVector_Swarm; sw->ops->createlocalvector = DMCreateLocalVector_Swarm; sw->ops->getlocaltoglobalmapping = NULL; sw->ops->createfieldis = NULL; sw->ops->createcoordinatedm = NULL; sw->ops->getcoloring = NULL; sw->ops->creatematrix = DMCreateMatrix_Swarm; sw->ops->createinterpolation = NULL; sw->ops->createinjection = NULL; sw->ops->createmassmatrix = DMCreateMassMatrix_Swarm; sw->ops->refine = NULL; sw->ops->coarsen = NULL; sw->ops->refinehierarchy = NULL; sw->ops->coarsenhierarchy = NULL; sw->ops->globaltolocalbegin = NULL; sw->ops->globaltolocalend = NULL; sw->ops->localtoglobalbegin = NULL; sw->ops->localtoglobalend = NULL; sw->ops->destroy = DMDestroy_Swarm; sw->ops->createsubdm = NULL; sw->ops->getdimpoints = NULL; sw->ops->locatepoints = NULL; PetscFunctionReturn(0); } PETSC_INTERN PetscErrorCode DMClone_Swarm(DM dm, DM *newdm) { DM_Swarm *swarm = (DM_Swarm *) dm->data; PetscErrorCode ierr; PetscFunctionBegin; swarm->refct++; (*newdm)->data = swarm; ierr = PetscObjectChangeTypeName((PetscObject) *newdm, DMSWARM);CHKERRQ(ierr); ierr = DMInitialize_Swarm(*newdm);CHKERRQ(ierr); PetscFunctionReturn(0); } /*MC DMSWARM = "swarm" - A DM object used to represent arrays of data (fields) of arbitrary data type. This implementation was designed for particle methods in which the underlying data required to be represented is both (i) dynamic in length, (ii) and of arbitrary data type. User data can be represented by DMSwarm through a registering "fields". To register a field, the user must provide; (a) a unique name; (b) the data type (or size in bytes); (c) the block size of the data. For example, suppose the application requires a unique id, energy, momentum and density to be stored on a set of particles. Then the following code could be used $ DMSwarmInitializeFieldRegister(dm) $ DMSwarmRegisterPetscDatatypeField(dm,"uid",1,PETSC_LONG); $ DMSwarmRegisterPetscDatatypeField(dm,"energy",1,PETSC_REAL); $ DMSwarmRegisterPetscDatatypeField(dm,"momentum",3,PETSC_REAL); $ DMSwarmRegisterPetscDatatypeField(dm,"density",1,PETSC_FLOAT); $ DMSwarmFinalizeFieldRegister(dm) The fields represented by DMSwarm are dynamic and can be re-sized at any time. The only restriction imposed by DMSwarm is that all fields contain the same number of points. To support particle methods, "migration" techniques are provided. These methods migrate data between MPI-ranks. DMSwarm supports the methods DMCreateGlobalVector() and DMCreateLocalVector(). As a DMSwarm may internally define and store values of different data types, before calling DMCreateGlobalVector() or DMCreateLocalVector(), the user must inform DMSwarm which fields should be used to define a Vec object via DMSwarmVectorDefineField() The specified field can be changed at any time - thereby permitting vectors compatible with different fields to be created. A dual representation of fields in the DMSwarm and a Vec object is permitted via DMSwarmCreateGlobalVectorFromField() Here the data defining the field in the DMSwarm is shared with a Vec. This is inherently unsafe if you alter the size of the field at any time between calls to DMSwarmCreateGlobalVectorFromField() and DMSwarmDestroyGlobalVectorFromField(). If the local size of the DMSwarm does not match the local size of the global vector when DMSwarmDestroyGlobalVectorFromField() is called, an error is thrown. Additional high-level support is provided for Particle-In-Cell methods. Please refer to the man page for DMSwarmSetType(). Level: beginner .seealso: DMType, DMCreate(), DMSetType() M*/ PETSC_EXTERN PetscErrorCode DMCreate_Swarm(DM dm) { DM_Swarm *swarm; PetscErrorCode ierr; PetscFunctionBegin; PetscValidHeaderSpecific(dm, DM_CLASSID, 1); ierr = PetscNewLog(dm,&swarm);CHKERRQ(ierr); dm->data = swarm; ierr = DMSwarmDataBucketCreate(&swarm->db);CHKERRQ(ierr); ierr = DMSwarmInitializeFieldRegister(dm);CHKERRQ(ierr); swarm->refct = 1; swarm->vec_field_set = PETSC_FALSE; swarm->issetup = PETSC_FALSE; swarm->swarm_type = DMSWARM_BASIC; swarm->migrate_type = DMSWARM_MIGRATE_BASIC; swarm->collect_type = DMSWARM_COLLECT_BASIC; swarm->migrate_error_on_missing_point = PETSC_FALSE; swarm->dmcell = NULL; swarm->collect_view_active = PETSC_FALSE; swarm->collect_view_reset_nlocal = -1; ierr = DMInitialize_Swarm(dm);CHKERRQ(ierr); PetscFunctionReturn(0); }