egg changed the topic of #principia to: Logs: https://esper.irclog.whitequark.org/principia | <scott_manley> anyone that doubts the wisdom of retrograde bop needs to get the hell out | https://xkcd.com/323/ | <egg> calculating the influence of lamont on Pluto is a bit silly…
_whitelogger has joined #principia
queqiao- has quit [Ping timeout: 198 seconds]
queqiao- has joined #principia
queqiao- has quit [Read error: Connection reset by peer]
egg|anbo|egg_ has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
_whitelogger has joined #principia
Webchat660 has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
<Webchat660> Are there specific launch windows one has to follow in principia from places like Cape Canaveral to get to the Moon?
<UmbralRaptop> Most of the time launches from Cape Canaveral need off-plane intercepts (hence why egg et al will recommend starting from Kourou or the like)
<Webchat660> Oh, how much extra delta-v does an offplane intercept require?
<Webchat660> Cause I noticed it requires probably more than 4000 m/s
<Webchat660> Which annoys me since the delta-v calculator I got doesn't calculate the offplane intercept delta-v requirements
egg|anbo|egg_ has joined #principia
<Webchat660> Umh, I have a problem, I can't launch from Korou because it only has a level 1 launchpad
<Webchat660> I just destroyed my savefile by accidentally building launchpads which will never finish
<UmbralRaptop> 4 km/s extra sounds like trying to do a large plane change in LEO?
<Webchat660> No, i'm not talking about that, I'm talking about the delta-v requirements for an offplane TLI are more than for a normal TLI, but Don't know how much, so I assumed it was typically at like 4km/s
<Webchat660> Since I got like 3.508 km/s of delta-v on my TLI stage
<Webchat660> And the principia node only getting close to the Moon requires lots of binormal.
<Webchat660> so, I mean 3.508 km/s + like 1 or 2 more km/s
egg|anbo|egg_ has quit [Remote host closed the connection]
<_whitenotifier> [Principia] Growflavor edited a comment on issue #3064: possible steady memory increase potentially leading to KSP instability/slowness/unusual texture lighting/slow crash - https://git.io/JEnZn
<_whitenotifier> [Principia] Growflavor edited a comment on issue #3064: possible steady memory increase potentially leading to KSP instability/slowness/unusual texture lighting/slow crash - https://git.io/JEnZn
<Webchat660> Hey, what happens if one removes principia from an already existing ksp savefile?
egg|anbo|egg_ has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
<egg|anbo|egg_> oh the bot is down
queqiao- has joined #principia
<queqiao-> ⟨e​gg⟩ the two views at the top have the ecliptic horizontal and ecliptic north up, the bottom view is looking down onto the ecliptic
<queqiao-> ⟨e​gg⟩ (well, orbital plane of mercury, rather than ecliptic)
<queqiao-> ⟨e​gg⟩ (technically equator of mercury but they are practically the same)
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
<raptop> Butcher's craft is definitely doing some odd things
<queqiao-> ⟨S​ir Mortimer⟩ Will that craft cease to orbit mercury at some point?
<queqiao-> ⟨e​gg⟩ Towards the end of 1971 it runs into Mercury, which puts an end to the orbit
<queqiao-> ⟨e​gg⟩ If Mercury didn't have that pesky surface, no. This perturbation does not change the orbital energy.
<queqiao-> ⟨S​ir Mortimer⟩ So lithobrake it will, but otherwise it would never leave
<queqiao-> ⟨e​gg⟩ (the semimajor axis varies by maybe 300 m over the 6-year adventure, it is very constant)
<queqiao-> ⟨S​ir Mortimer⟩ Decidedly interesting orbit.
<queqiao-> ⟨e​gg⟩ See https://github.com/mockingbirdnest/Principia/pull/3113 for more plots
<queqiao-> ⟨e​gg⟩ Also see the comments in the test for references
<queqiao-> ⟨e​gg⟩ ```C++
<queqiao-> ⟨e​gg⟩ // The conservation of the “тривиального интеграла a = const” [Лид61, p. 25]
<queqiao-> ⟨e​gg⟩ // is excellent: while the sun is nudging and deforming the orbit, it is not
<queqiao-> ⟨e​gg⟩ // pumping energy into nor out of it.
<queqiao-> ⟨e​gg⟩ EXPECT_THAT(elements.mean_semimajor_axis_interval().min,
<queqiao-> ⟨e​gg⟩ IsNear(14'910.0_⑴ * Kilo(Metre)));
<queqiao-> ⟨e​gg⟩ EXPECT_THAT(elements.mean_semimajor_axis_interval().max,
<queqiao-> ⟨e​gg⟩ IsNear(14'910.3_⑴ * Kilo(Metre)));
<queqiao-> ⟨e​gg⟩
<queqiao-> ⟨e​gg⟩ // The integral c₁ is preserved quite well: we have an exchange between
<queqiao-> ⟨e​gg⟩ // inclination and eccentricity.
<queqiao-> ⟨e​gg⟩ EXPECT_THAT(c₁.min, IsNear(0.042_⑴));
<queqiao-> ⟨e​gg⟩ EXPECT_THAT(c₁.max, IsNear(0.050_⑴));
<queqiao-> ⟨e​gg⟩
<queqiao-> ⟨e​gg⟩ // The integral c₂ is also conserved: the long-term evolution of the orbital
<queqiao-> ⟨e​gg⟩ // elements is as described in [Лид61].
<queqiao-> ⟨e​gg⟩ EXPECT_THAT(c₂.min, IsNear(-0.091_⑴));
<queqiao-> ⟨e​gg⟩ EXPECT_THAT(c₂.max, IsNear(-0.083_⑴));
<queqiao-> ⟨e​gg⟩ ```
<queqiao-> ⟨D​0m1nu2⟩ Hey, could anyone help me with getting initial state of Eros and Mathilde asteroid please? 🙂
egg|anbo|egg_ has joined #principia
<raptop> So, uh, does that help with orbital elements for their initial states?
<queqiao-> ⟨D​0m1nu2⟩ Yeah, thanks! Sorry for long respond time had to do some work.
<raptop> ah, fair enough
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
egg|anbo|egg_ has quit [Remote host closed the connection]
<queqiao-> ⟨D​0m1nu2⟩ Guess I'm not capable of making configs planets/asteroids. Is there Real Expansion(https://forum.kerbalspaceprogram.com/index.php?/topic/184530-13x-18x-real-expansion/) for Principia by any chance?
egg|anbo|egg_ has joined #principia
<queqiao-> ⟨D​0m1nu2⟩ Guess I'm not capable of making configs planets/asteroids. Is there Real Expansion(https://forum.kerbalspaceprogram.com/index.php?/topic/184530-13x-18x-real-expansion/) and MPL(https://forum.kerbalspaceprogram.com/index.php?/topic/192848-181-planet-pack-minor-planets-expansion/) for Principia by any chance? Only Eros and Mathilda. Don't need anymore. (edited)
<queqiao-> ⟨N​ewfieStargazer⟩ How accurate will interplanetary transfer planning be using Principia, a “probe” in a plain (9.74 degrees relative inclination) of the moon, and using Mechjeb Maneuver Planner - Advanced transfer to another planet?
egg|anbo|egg_ has quit [Remote host closed the connection]
egg|anbo|egg_ has joined #principia
UmbralRaptor has joined #principia