Solar System Simulator

Hey again! I’m trying to interface with the plugin, but I don’t know how to access the functions in the tools panel. I want to programmatically create an orbit and then access the properties from my script so I can easily change the parameters.
If I create an orbit manually, I can do all the steps after that from the script/command line. How do I also do the initial orbit creation from the command line?

# I have the other values available within a for-loop for several planets.
orbit = bpy.context.object
orbit.sssim_orbit.center_name = "Center"
orbit.sssim_orbit.name = str(j) + "_orbit_" + names[j]
orbit.sssim_obj.mass_mantissa = masses[j]
orbit.sssim_obj.mass_exp = 6
orbit.sssim_orbit.distance_mantissa = a
orbit.sssim_orbit.distance_exp = 6
orbit.sssim_orbit.eccentricity = e
orbit.sssim_orbit.inclination = i
orbit.sssim_orbit.asc_node = oom
orbit.sssim_orbit.arg_periapsis = om