The easiest way is to just run PHD2, don't connect to any of the gear, then use the 'Advanced' button on the Advanced Settings/Guiding tab. That will bring up the calibration-stepsize calculator where you can enter whatever values you want for focal length, pixel size, guide speed, binning, etc. Alternatively, the code is simple, something you could put in a spreadsheet if you are so inclined:
// Based on computed image scale, compute an RA calibration pulse direction that will result in DesiredSteps
// for a "travel" distance of <distance> pixels in each direction, adjusted for declination.
// Result will be rounded up to the nearest 50 ms and is constrained to insure Dec calibration is at least
// MIN_STEPs
//
// FocalLength = focal length in millimeters
// PixelSize = pixel size in microns (un-binned)
// Binning = hardware pixel binning factor
// GuideSpeed = guide rate as fraction of sidereal rate
// DesiredSteps = desired number of calibration steps
// Declination = declination in degrees
// ImageScale = computed image scale (arc-sec/pixel)
// *pStepSize = computed calibration step size, milliseconds
//
double ImageScale = MyFrame::GetPixelScale(PixelSize, FocalLength, binning); // arc-sec per pixel
double totalDuration = (double) distance * ImageScale / (15.0 * GuideSpeed); // 15 arc-sec/sec is sidereal rate
double Pulse = totalDuration / DesiredSteps * 1000.0; // milliseconds at DEC=0
double MaxPulse = totalDuration / MIN_STEPS * 1000.0; // max pulse size to still get MIN steps
Pulse = wxMin(MaxPulse, Pulse / cos(radians(Declination))); // UI forces abs(Dec) <= 60 degrees
*pStepSize = (int) ceil(Pulse / 50.0) * 50; // round up to nearest 50 ms, too-small pulses can lead to calibration problems
Problems with the calibration step-size are nearly always the result of user mistakes, especially trying to manually change configuration settings without running the new-profile-wizard.
Bruce