Lines Matching refs:bmx
28 PetscInt bmx, bmy; /* Size of plate under the surface */ member
74 user.bmx = user.mx / 2; in main()
76 PetscCall(PetscOptionsGetInt(NULL, NULL, "-bmx", &user.bmx, &flg)); in main()
80 …etscInt_FMT ", bmy:%" PetscInt_FMT ", height:%g\n", user.mx, user.my, user.bmx, user.bmy, (double)… in main()
727 PetscInt mx = user->mx, my = user->my, bmy, bmx; in MSA_Plate() local
735 user->bmx = PetscMax(0, user->bmx); in MSA_Plate()
736 user->bmx = PetscMin(mx, user->bmx); in MSA_Plate()
738 bmx = user->bmx; in MSA_Plate()
754 t2 = (2.0 * j - my) * bmx; in MSA_Plate()
755 t3 = bmx * bmx * bmy * bmy; in MSA_Plate()
764 …if (i >= (mx - bmx) / 2 && i < mx - (mx - bmx) / 2 && j >= (my - bmy) / 2 && j < my - (my - bmy) /… in MSA_Plate()