1️⃣ Increase Exotic Matter Strength
Try increasing ∣Λexotic∣|\Lambda_{\text{exotic}}|∣Λexotic∣. Example:
Lambda_exotic = -0.5 # Instead of -0.1
This could make the wormhole more "attractive" (negative energy keeps it open).
2️⃣ Modify Shape Function
Instead of
return r0**2 / (r + 1e-6) + Lambda_exotic * r**3
Try a more aggressive form like:
return r0**2 / (r + 1e-6) + Lambda_exotic * np.tanh(r) * r**3
This smooths the transition and avoids abrupt changes.
3️⃣ Adjust Initial Conditions
Instead of:
y0 = [10, np.pi / 2, -0.1, 0]
Try a stronger radial velocity:
y0 = [10, np.pi / 2, -0.3, 0]
This gives the traveler a stronger push inward.