Hi everyone !
I am getting an ImportError when trying to import the SphericalConstantThrustPropulsionModel class, using the Python wrapper with Jpype (Orekit v13.1):
raise ImportError("Failed to import '%s'" % name) from ex
E ImportError: Failed to import 'org.orekit.forces.maneuvers.propulsion.SphericalConstantThrustPropulsionModel'
This does not happen when using JCC so I am a bit confused. We’ve also made sure the JVM was properly started before importing classes.
I went through existing topics on the subject (especially issue 4560) but could not find anything related to this specific problem. The class I am trying to import does not seem to be an interface or a Python-specific class which would only be callable with JCC.
Do I need to use another class with Jpype ?
Thanks !