Lines Matching refs:Av

31   Mat Av, Avwork, AvT;  member
335 PetscCall(MatMult(user->Av, user->uwork, user->Av_u)); in FormJacobianState()
426 PetscCall(MatMult(user->Av, user->uwork, user->Swork)); in DesignMatMult()
432 PetscCall(MatMult(user->Av, user->uwork, user->Twork)); in DesignMatMult()
463 PetscCall(MatMult(user->Av, user->uwork, user->Rwork)); in DesignMatMultTranspose()
813 PetscCall(MatCreate(PETSC_COMM_WORLD, &user->Av)); in ParabolicInitialize()
814 PetscCall(MatSetSizes(user->Av, PETSC_DECIDE, PETSC_DECIDE, m, n)); in ParabolicInitialize()
815 PetscCall(MatSetFromOptions(user->Av)); in ParabolicInitialize()
816 PetscCall(MatMPIAIJSetPreallocation(user->Av, 2, NULL, 2, NULL)); in ParabolicInitialize()
817 PetscCall(MatSeqAIJSetPreallocation(user->Av, 2, NULL)); in ParabolicInitialize()
818 PetscCall(MatGetOwnershipRange(user->Av, &istart, &iend)); in ParabolicInitialize()
824 PetscCall(MatSetValues(user->Av, 1, &i, 1, &j, &half, INSERT_VALUES)); in ParabolicInitialize()
826 PetscCall(MatSetValues(user->Av, 1, &i, 1, &j, &half, INSERT_VALUES)); in ParabolicInitialize()
831 PetscCall(MatSetValues(user->Av, 1, &i, 1, &j, &half, INSERT_VALUES)); in ParabolicInitialize()
833 PetscCall(MatSetValues(user->Av, 1, &i, 1, &j, &half, INSERT_VALUES)); in ParabolicInitialize()
837 PetscCall(MatSetValues(user->Av, 1, &i, 1, &j, &half, INSERT_VALUES)); in ParabolicInitialize()
839 PetscCall(MatSetValues(user->Av, 1, &i, 1, &j, &half, INSERT_VALUES)); in ParabolicInitialize()
843 PetscCall(MatAssemblyBegin(user->Av, MAT_FINAL_ASSEMBLY)); in ParabolicInitialize()
844 PetscCall(MatAssemblyEnd(user->Av, MAT_FINAL_ASSEMBLY)); in ParabolicInitialize()
847 PetscCall(MatTranspose(user->Av, MAT_INITIAL_MATRIX, &user->AvT)); in ParabolicInitialize()
901 PetscCall(MatDuplicate(user->Av, MAT_SHARE_NONZERO_PATTERN, &user->Avwork)); in ParabolicInitialize()
1019 PetscCall(MatMult(user->Av, user->uwork, user->Av_u)); in ParabolicInitialize()
1053 PetscCall(MatMult(user->Av, user->uwork, user->Av_u)); in ParabolicInitialize()
1196 PetscCall(MatDestroy(&user->Av)); in ParabolicDestroy()