Home
last modified time | relevance | path

Searched refs:dsp (Results 1 – 16 of 16) sorted by relevance

/petsc/src/ts/adapt/impls/dsp/
H A Dadaptdsp.c45 TSAdapt_DSP *dsp = (TSAdapt_DSP *)adapt->data; in TSAdaptRestart_DSP() local
48 dsp->cerror[0] = dsp->hratio[0] = 1.0; in TSAdaptRestart_DSP()
49 dsp->cerror[1] = dsp->hratio[1] = 1.0; in TSAdaptRestart_DSP()
50 dsp->cerror[2] = dsp->hratio[2] = 1.0; in TSAdaptRestart_DSP()
56 TSAdapt_DSP *dsp = (TSAdapt_DSP *)adapt->data; in TSAdaptRollBack_DSP() local
59 dsp->cerror[0] = dsp->cerror[1]; in TSAdaptRollBack_DSP()
60 dsp->cerror[1] = dsp->cerror[2]; in TSAdaptRollBack_DSP()
61 dsp->cerror[2] = 1.0; in TSAdaptRollBack_DSP()
62 dsp->hratio[0] = dsp->hratio[1]; in TSAdaptRollBack_DSP()
63 dsp->hratio[1] = dsp->hratio[2]; in TSAdaptRollBack_DSP()
[all …]
/petsc/src/dm/dt/dualspace/impls/lagrange/tutorials/
H A Dex1.c12 PetscDualSpace dsp; in main() local
23 PetscCall(PetscDualSpaceCreate(PETSC_COMM_WORLD, &dsp)); in main()
24 PetscCall(PetscObjectSetName((PetscObject)dsp, "Lagrange dual space")); in main()
25 PetscCall(PetscDualSpaceSetType(dsp, PETSCDUALSPACELAGRANGE)); in main()
34 PetscCall(PetscDualSpaceSetDM(dsp, K)); in main()
39 PetscCall(PetscDualSpaceSetFromOptions(dsp)); in main()
58 PetscCall(PetscDualSpaceSetUp(dsp)); in main()
60 PetscCall(PetscDualSpaceDestroy(&dsp)); in main()
/petsc/src/dm/dt/dualspace/tests/
H A Dex1.c7 PetscDualSpace dsp; in main() local
11 PetscCall(PetscDualSpaceCreate(PETSC_COMM_WORLD, &dsp)); in main()
12 PetscCall(PetscDualSpaceDestroy(&dsp)); in main()
/petsc/src/dm/dt/dualspace/interface/
H A Ddualspace.c1786 PetscErrorCode PetscDualSpaceGetFormDegree(PetscDualSpace dsp, PetscInt *k) in PetscDualSpaceGetFormDegree() argument
1789 PetscValidHeaderSpecific(dsp, PETSCDUALSPACE_CLASSID, 1); in PetscDualSpaceGetFormDegree()
1791 *k = dsp->k; in PetscDualSpaceGetFormDegree()
1812 PetscErrorCode PetscDualSpaceSetFormDegree(PetscDualSpace dsp, PetscInt k) in PetscDualSpaceSetFormDegree() argument
1817 PetscValidHeaderSpecific(dsp, PETSCDUALSPACE_CLASSID, 1); in PetscDualSpaceSetFormDegree()
1818 …PetscCheck(!dsp->setupcalled, PetscObjectComm((PetscObject)dsp), PETSC_ERR_ARG_WRONGSTATE, "Cannot… in PetscDualSpaceSetFormDegree()
1819 dim = dsp->dm->dim; in PetscDualSpaceSetFormDegree()
1821 dsp->k = k; in PetscDualSpaceSetFormDegree()
1847 PetscErrorCode PetscDualSpaceGetDeRahm(PetscDualSpace dsp, PetscInt *k) in PetscDualSpaceGetDeRahm() argument
1852 PetscValidHeaderSpecific(dsp, PETSCDUALSPACE_CLASSID, 1); in PetscDualSpaceGetDeRahm()
[all …]
/petsc/src/binding/petsc4py/conf/
H A Depydocify.py39 from epydoc import docstringparser as dsp unknown
95 dsp._SIGNATURE_RE = _SIGNATURE_RE
/petsc/src/dm/dt/fe/impls/vector/
H A Dfevector.c72 PetscDualSpace dsp; in PetscFESetUp_Vector() local
82 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in PetscFESetUp_Vector()
83 PetscCall(PetscObjectTypeCompare((PetscObject)dsp, PETSCDUALSPACESUM, &is_sum)); in PetscFESetUp_Vector()
85 sum = (PetscDualSpace_Sum *)dsp->data; in PetscFESetUp_Vector()
/petsc/src/ts/tutorials/output/
H A Dex19_pi42.out22 type: dsp
/petsc/src/dm/dt/fe/interface/
H A Dfe.c1098 PetscDualSpace dsp, dsubsp; in PetscFECreatePointTraceDefault_Internal() local
1108 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in PetscFECreatePointTraceDefault_Internal()
1109 PetscCall(PetscDualSpaceGetDM(dsp, &dm)); in PetscFECreatePointTraceDefault_Internal()
1125 PetscCall(PetscDualSpaceGetPointSubspace(dsp, refPoint, &dsubsp)); in PetscFECreatePointTraceDefault_Internal()
1161 PetscDualSpace dsp; in PetscFECreateHeightTrace() local
1168 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in PetscFECreateHeightTrace()
1169 PetscCall(PetscDualSpaceGetDM(dsp, &dm)); in PetscFECreateHeightTrace()
2863 PetscDualSpace dsp; in PetscFECreateCellGeometry() local
2869 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in PetscFECreateCellGeometry()
2870 PetscCall(PetscDualSpaceGetDM(dsp, &dm)); in PetscFECreateCellGeometry()
/petsc/src/dm/impls/plex/tests/
H A Dex3.c970 PetscDualSpace dsp; in main() local
973 PetscCall(PetscFEGetDualSpace(user.fe, &dsp)); in main()
974 PetscCall(PetscDualSpaceGetDeRahm(dsp, &k)); in main()
/petsc/src/dm/impls/plex/
H A Dplextree.c2923 PetscDualSpace dsp; in DMPlexComputeInjectorReferenceTree() local
2967 PetscCall(PetscFEGetDualSpace((PetscFE)disc, &dsp)); in DMPlexComputeInjectorReferenceTree()
2969 PetscCall(PetscFVGetDualSpace((PetscFV)disc, &dsp)); in DMPlexComputeInjectorReferenceTree()
2973 PetscCall(PetscDualSpaceGetNumDof(dsp, &depthNumDof)); in DMPlexComputeInjectorReferenceTree()
2974 PetscCall(PetscDualSpaceGetNumComponents(dsp, &Nc)); in DMPlexComputeInjectorReferenceTree()
3024 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in DMPlexComputeInjectorReferenceTree()
3025 PetscCall(PetscDualSpaceGetDimension(dsp, &fSize)); in DMPlexComputeInjectorReferenceTree()
3026 PetscCall(PetscDualSpaceGetSymmetries(dsp, &perms, &flips)); in DMPlexComputeInjectorReferenceTree()
3039 PetscCall(PetscDualSpaceGetFunctional(dsp, parentCellShapeDof, &q)); in DMPlexComputeInjectorReferenceTree()
H A Dplex.c5942 PetscDualSpace dsp; in PetscSectionFieldGetTensorDegree_Private() local
5945 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in PetscSectionFieldGetTensorDegree_Private()
5946 PetscCall(PetscDualSpaceGetDimension(dsp, &dual_space_size)); in PetscSectionFieldGetTensorDegree_Private()
5948 PetscCall(PetscDualSpaceLagrangeGetContinuity(dsp, continuous)); in PetscSectionFieldGetTensorDegree_Private()
5949 PetscCall(PetscDualSpaceLagrangeGetTensor(dsp, tensor)); in PetscSectionFieldGetTensorDegree_Private()
6327 PetscDualSpace dsp; in DMPlexGetPointDualSpaceFEM() local
6329 PetscCall(PetscFEGetDualSpace((PetscFE)disc, &dsp)); in DMPlexGetPointDualSpaceFEM()
6334 PetscCall(PetscDualSpaceGetHeightSubspace(dsp, h, dspace)); in DMPlexGetPointDualSpaceFEM()
6336 *dspace = dsp; in DMPlexGetPointDualSpaceFEM()
H A Dplexgeometry.c2505 PetscDualSpace dsp; in DMPlexComputeCellGeometryFEM_FE() local
2507 PetscCall(PetscFEGetDualSpace(fe, &dsp)); in DMPlexComputeCellGeometryFEM_FE()
2508 PetscCall(PetscDualSpaceGetFunctional(dsp, 0, &quad)); in DMPlexComputeCellGeometryFEM_FE()
/petsc/src/dm/field/impls/ds/
H A Ddmfieldds.c907 PetscDualSpace dsp; in DMFieldComputeFaceData_DS() local
928 PetscCall(PetscFEGetDualSpace((PetscFE)cellDisc, &dsp)); in DMFieldComputeFaceData_DS()
929 PetscCall(PetscDualSpaceGetDM(dsp, &K)); in DMFieldComputeFaceData_DS()
/petsc/src/dm/impls/plex/transform/interface/
H A Dplextransform.c822 PetscDualSpace dsp; in DMPlexTransformGetCoordinateFE() local
839 PetscCall(PetscFEGetDualSpace(tr->coordFE[ct], &dsp)); in DMPlexTransformGetCoordinateFE()
840 PetscCall(PetscDualSpaceGetDM(dsp, &K)); in DMPlexTransformGetCoordinateFE()
/petsc/doc/manual/
H A Dts.md1001 - ``dsp``
/petsc/share/petsc/datafiles/meshes/
H A Dtestcase3D.cas6200 (udf/battery/newman-prop-dsp-fcn "none")