Searched refs:rh (Results 1 – 4 of 4) sorted by relevance
66 rh = ksp.history67 self.assertTrue(len(rh) == 0)127 rh = self.ksp.getConvergenceHistory()129 rh = self.ksp.getConvergenceHistory()130 self.assertEqual(len(rh), 0)
98 rh, ih = snes.history99 self.assertTrue(len(rh) == 0)254 rh, ih = self.snes.getConvergenceHistory()256 rh, ih = self.snes.getConvergenceHistory()257 self.assertEqual(len(rh), 0)
556 PetscInt PCTFS_ivec_binary_search(PetscInt item, PetscInt *list, PetscInt rh) in PCTFS_ivec_binary_search() argument560 rh--; in PCTFS_ivec_binary_search()561 while (lh <= rh) { in PCTFS_ivec_binary_search()562 mid = (lh + rh) >> 1; in PCTFS_ivec_binary_search()564 if (*(list + mid) > item) rh = mid - 1; in PCTFS_ivec_binary_search()
150 PetscScalar rh; /* relative humidity */ in main() local209 rh = (x / mixratio) * 100; in main()211 …PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Initial RH = %.1f percent\n\n", (double)rh)); /* prints i… in main()