egg changed the topic of #principia to: READ THE FAQ: http://goo.gl/gMZF9H; The current version is Germain. We currently target 1.8.1, 1.9.1, 1.10.1, and 1.11.0. <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… | <egg> also 4e16 m * 2^-52 is uncomfortably large
Iskierka has quit [Ping timeout: 189 seconds]
Iskierka has joined #principia
<_whitenotifier-2275> [Principia] rnlahaye synchronize pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/JtHWD
<_whitenotifier-2275> [Principia] rnlahaye reviewed pull request #2898 commit - https://git.io/JtQdL
<_whitenotifier-2275> [Principia] rnlahaye reviewed pull request #2898 commit - https://git.io/JtQd3
<_whitenotifier-2275> [Principia] rnlahaye commented on pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/JtQdn
UmbralRaptop has joined #principia
UmbralRaptor has quit [Ping timeout: 204 seconds]
<_whitenotifier-2275> [Principia] rnlahaye commented on pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/JtQAD
Mike` has quit [Ping timeout: 204 seconds]
Mike` has joined #principia
UmbralRaptor has joined #principia
UmbralRaptop has quit [Ping timeout: 204 seconds]
UmbralRaptop has joined #principia
UmbralRaptor has quit [Ping timeout: 204 seconds]
<_whitenotifier-2275> [Principia] Pending. Build queued… - 
<_whitenotifier-2275> [Principia] Pending. Building… - http://casanova.westeurope.cloudapp.azure.com:8080/job/Principia/4813/
dd has joined #principia
<dd> morning. Is there a way to notify BurnEditors that the values changed outside of the BurnEditor/FlightPlanner? I mean I change them via the c++ interface by replacing a burn with a new one, but the user interface doesn't refresh.
<_whitenotifier-2275> [Principia] Success. Build finished. - http://casanova.westeurope.cloudapp.azure.com:8080/job/Principia/4813/
<_whitenotifier-2275> [Principia] pleroy commented on pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/Jt7YY
<_whitenotifier-2275> [Principia] pleroy reviewed pull request #2898 commit - https://git.io/Jt7Y3
egg|anbo|egg_ has joined #principia
<_whitenotifier-2275> [Principia] eggrobin commented on pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/Jt7G4
<egg|anbo|egg_> dd: a downside of calling internals is that they were never designed to be called in arbitrary ways; this is especially apparent if those calls change the state of things as opposed to just reading it
<dd> i understand this, because that's exactly what i'm trying to do for my testing phase - expose the interface so I can create/edit/delete manoeuvre nodes (but mostly burns) via kRPC (and python, and c++...).
<dd> so this would be the wall that I've hit right now - as there's no way to notify BurnEditors about an update. While with FlightPlan it works - I can replace/edit FlightPlan tolerance, time, and steps outside of usual routines and the UI/KSP notices the changes.
<dd> I guess I'll move this discussion to the corresponding issue.
<egg|anbo|egg_> I am not sure how that is going to help
<egg|anbo|egg_> Nor do I understand what your question is; you are trying to do something for which the things you are using were never designed, so no, there is no mechanism for you to do that
<egg|anbo|egg_> the whole point of us asking for a design is that these problems need to be addressed in their entirety, otherwise you will keep running into things that cannot work because they were never meant to
<dd> there's no mechanism yet, correct. and you're also correct about design - i haven't proposed any (yet), because I wanted to see what can be done right know with what is already there.
<discord-_> e​gg. — dd: You seem to be confused about what the difficult part is, and spending a lot of energy on something trivial. The difficulty is not to implement an API, we mostly know how our code works. The difficulty is in defining an API that will keep making sense in the future, and not constrain us unnecessarily; for instance, manœuvres are currently located by their initial time, but that could change: the
<discord-_> e​gg. — From pleroy’s first reply to you in #1621, emphasis added:
<discord-_> e​gg. — > a design document detailing the APIs that you want added, *with some indication of why they would be useful to users*
<discord-_> e​gg. — You have so far left the « what are you trying to do and why » question entirely unanswered and immediately jumped to the « how to do it » aspect (which is probably a bit daunting unless you are familiar with the structure of the Principia codebase).
<egg|anbo|egg_> ah great, the relay truncated the first line..
<discord-_> B​utcher. — 640 characters should be enough for anyone egg. 😉
<discord-_> e​gg. — dd: You seem to be confused about what the difficult part is, and spending a lot of energy on something trivial. The difficulty is not to implement an API, we mostly know how our code works.
<discord-_> e​gg. — The difficulty is in defining an API that will keep making sense in the future, and not constrain us unnecessarily; for instance, manœuvres are currently located by their initial time, but that could change: there has been discussion of anchoring them to the mean mean anomaly or the mean argument of latitude.
<discord-_> e​gg. — Such an API is likely to be entirely unlike the internal interface; the latter is tightly coupled to the current Principia data model, the UI logic, and the KSP execution order.
<discord-_> e​gg. — which combines fetching the history and rendering it, and has some tricky memory management aspects.
<discord-_> e​gg. — From pleroy’s first reply to you in #1621, emphasis added:
<discord-_> e​gg. — > a design document detailing the APIs that you want added, *with some indication of why they would be useful to users*
<discord-_> e​gg. — You have so far left the « what are you trying to do and why » question entirely unanswered and immediately jumped to the « how to do it » aspect (which is probably a bit daunting unless you are familiar with the structure of the Principia codebase). (edited)
<dd> Well, to phrase it shortly: I want to use Principia's trajectory/burn/manoeuvre plotting from kRPC to test my math from basic orbital mechanics which I want to implement in a hobby autopilot.
<discord-_> B​utcher. — Why not use patched conics if it;s just for basic orbital mechanics?
<dd> because I *thought* they produce different results with Principia installed?
<discord-_> e​gg. — well, what is it you want to model in your hobby autopilot? if you model two-point-masses dynamics, you are not going to get the same thing Principia does; if you implement some sort of orbital precession model you might approximate decently low Earth orbit mechanics
<discord-_> e​gg. — also, if it is just to test your autopilot, why are KSP and kRPC even in that loop? You could just test it unitarily against a self-standing orbital mechanics library of your choice
<dd> I want to achieve at least simple parked-in-low-orbit to another-celestial-body transfers.
<dd> KSP and kRPC are simply there because it's fun - you can interact with the components and your environment and not just develop it in a vacuum.
<dd> thanks for the links. and yes, I agree with you on what's actually hard in this case.
<dd> maybe I'll go back to the drawing board, and when I exhaust the stock KSP model, and I have the hopefully sane, abstracted interface I'll come back to Principia with a proposal. there's no rush.
dd has quit [Quit: webchat.esper.net]
Iskierka has quit [*.net *.split]
egg|anbo|egg_ has quit [*.net *.split]
Raidernick has quit [*.net *.split]
armed_troop has quit [*.net *.split]
mic_e has quit [*.net *.split]
Rokker has quit [*.net *.split]
mofh_ has quit [*.net *.split]
goblin has quit [*.net *.split]
Majiir has quit [*.net *.split]
mkalte_ has quit [*.net *.split]
acc has quit [*.net *.split]
mofh has quit [*.net *.split]
goblin has joined #principia
mic_e has joined #principia
egg|anbo|egg_ has joined #principia
Iskierka has joined #principia
acc has joined #principia
mkalte has joined #principia
Rokker has joined #principia
mofh_ has joined #principia
Raidernick has joined #principia
Majiir has joined #principia
mofh has joined #principia
armed_troop has joined #principia
egg|anbo|egg has quit [Read error: Connection reset by peer]
egg|anbo|egg has joined #principia
egg|cell|egg has quit [Ping timeout: 189 seconds]
kawaider_ has joined #principia
bees has quit [Ping timeout: 189 seconds]
kawaider_ is now known as bees
<_whitenotifier-2275> [Principia] rnlahaye synchronize pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/JtHWD
<_whitenotifier-2275> [Principia] Pending. Build queued… - 
<_whitenotifier-2275> [Principia] Pending. Building… - http://casanova.westeurope.cloudapp.azure.com:8080/job/Principia/4814/
<_whitenotifier-2275> [Principia] rnlahaye reviewed pull request #2898 commit - https://git.io/Jt5mf
<_whitenotifier-2275> [Principia] rnlahaye commented on pull request #2898: Prevent Vessel::RepeatedlyFlowPrognostication from bypassing sleep call. - https://git.io/Jt5mJ
<_whitenotifier-2275> [Principia] Success. Build finished. - http://casanova.westeurope.cloudapp.azure.com:8080/job/Principia/4814/
<_whitenotifier-2275> [Principia] eggrobin reviewed pull request #2898 commit - https://git.io/Jt5Yn
egg|anbo|egg_ has quit [Read error: Connection reset by peer]