Lines Matching refs:dmp
530 PetscErrorCode SNESNASMSetDamping(SNES snes, PetscReal dmp) in SNESNASMSetDamping() argument
533 PetscTryMethod(snes, "SNESNASMSetDamping_C", (SNES, PetscReal), (snes, dmp)); in SNESNASMSetDamping()
537 static PetscErrorCode SNESNASMSetDamping_NASM(SNES snes, PetscReal dmp) in SNESNASMSetDamping_NASM() argument
542 nasm->damping = dmp; in SNESNASMSetDamping_NASM()
561 PetscErrorCode SNESNASMGetDamping(SNES snes, PetscReal *dmp) in SNESNASMGetDamping() argument
564 PetscUseMethod(snes, "SNESNASMGetDamping_C", (SNES, PetscReal *), (snes, dmp)); in SNESNASMGetDamping()
568 static PetscErrorCode SNESNASMGetDamping_NASM(SNES snes, PetscReal *dmp) in SNESNASMGetDamping_NASM() argument
573 *dmp = nasm->damping; in SNESNASMGetDamping_NASM()
593 PetscReal dmp; in SNESNASMSolveLocal_Private() local
663 PetscCall(SNESNASMGetDamping(snes, &dmp)); in SNESNASMSolveLocal_Private()
664 PetscCall(VecAXPY(X, dmp, Y)); in SNESNASMSolveLocal_Private()