Jump to content

helaeon

Members
  • Posts

    558
  • Joined

  • Last visited

Reputation

161 Excellent

1 Follower

Profile Information

  • About me
    Warp Drive Engineer

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. @PunkRockZoologist Keep in mind too large part counts have a very large and fast detrimental effect due to the way we need to move all those parts through space to make the warp effect happen. Every frame a new position and velocity is applied to each part in the vessel. This is done on a vessel wide basis but, KSP is still doing all of that and calculating all that it usually does to keep that wad of parts together. I part clip pretty severely and have never really had huge problems, but they have happened. Radial connections of course are more dangerous than node connections. My part counts are nearly always under 300 or so if I have a lander docked individual ships are 150 or less (usually closer to 100). Keep in mind too I'm running an i7-8770k, 32gb DDR4 memory, and a nVidia 1080 so I can get away with more than a lot of people can.
  2. @capi3101 I honestly don't remember where I set the minmax at. If it's in the file as .001c then that's what it is at. You may tune as you see fit. I probably left it exposed in the cfg for just this reason (and so could be altered by module manager as desired).
  3. @capi3101 how severe of a braking effect are you expecting? That video was looking about right to me for Duna. Especially after the Laythe + Jool fix (apparently that combined gravity well is quite deep and you can't get out at all with the way I had it originally with much stronger braking). Now there is an absolute minimum max speed the warp drive will make you go. It's a floor on how severe the braking can get. I think it happens to be 0.0001c if I remember right. So yeah, looks like working as expected.
  4. Physics Tick is in the settings. It's Max Physics Delta-Time per frame. Different versions of KSP have had different defaults here. Also people with heavily modded games have often made this number larger, which means the warp-drive's calculation update less often. Instead of your warp drive "flying" through space think of it that it's doing successive hops of a calculated distance and in that physics delta time, you're in a new location everything gets updated and another jump. To give you an idea of how this can be a big issue: at 1c in with a physics tick of .04 seconds (which may be the minimum one can set it to) your ship jumps 12,000 km. Kerbin has a diameter of 1200km.
  5. @capi3101 What is your physics tick set at? The amount of distance being covered here, higher physics tick times can make big jumps in all the calculations happen due to the obscene distances being covered very quickly and I have most of the calculations happening exponentially or logarithmicly - due to the extremely large speeds and distances being considered. There isn't much I can do about this and it's been a problem since I first started tinkering with the laws governing warp in KSP. Are you trying to approach the planet at full throttle? Just like Elite Dangerous you're going to blow by (or through) and the brakes aren't going to work very well. Unlike E:D the warp drive is not an integral part of the game so the functions I'd probably need to keep everything nice and tidy aren't there, so... we get a much more finnicky and unpredictable warp drive. Also unlike E:D if you blow through the planet and are unlucky to be in it during the next physics tick you super explode not be placed at fail-safe altitude. Further, with most bodies other than Jool or Kerbol (I think), even with a physics tick of .04 you can blast by the entire failsafe altitude in one tick if at full throttle. You do know that our "lore" that's part of the deal with getting to use a warp drive... that it is a bit unpredictable and we'll call certain bugs features. Also FYI I'm playing a lot of Warframe so I'm unlikely to be doing much with KSP. I do check in once in a while to answer questions, but I won't be making any coding changes to this in the near future. Anyone is welcome to make adjustments though It is also possible something has happened between 1.3 and 1.6 that has broken how the brakes worked. I personally haven't ran a warp-drive ship since my last burst of coding to put the brakes in.
  6. I haven't flown one since I made the changes to the braking code that made it not trap you at Laythe. Actually I'm on 1.6 right now and don't even have my own mod installed... yet. Duna has a small gravity well, and "physics ticks" are a major issue with anything warp drive related. Sometimes you just cover too much space per tick for the game to do much with your warp velocity. I did test the brakes with Dres and I do remember having to come in kinda slow to get the brakes to kick on (I may have had to turn some of the braking related settings up. It's been a while so I don't remember). It really is like the Frame Shift Drive in Elite:Dangerous, you come in too hot and there's not much the brakes can do for you.
  7. I play this way exclusively with an xbox one controller and have been since version .24 or something like that. Bluetooth works but if it disconnects you can't get it to connect again without re-starting the game, so USB cable is the way. You'll need to figure out your own key mappings, and using a button as a mod/shift key doesn't work very well. I don't do any of the steam controller driver stuff, just map the axes and buttons directly through KSP. For VAB and most of the UI I'm using keyboard/mouse (mostly mouse). Flight is all controller and action groups (up on the keyboard)
  8. @capi3101 Velocity vector direction doesn't change from your start. Velocity magnitude (speed) changes a lot. That's mostly due to my own limitations with the math and for simplicity's sake. You can't just do regular algebra on vectors, so I had to keep that direction constant. Then I can mess with the other parameters. Velocity magnitude changes in order to conserve angular momentum / orbital energy. As you move your ship around the gravity well, the resulting orbit(s) will have roughly the same energy as when you started. The total velocity conserving version gives you lots of free energy. Example I always use is that Jool has a lot more orbital energy than Kerbin (that's why it is further away), so when you get out to Jool from an orbit starting at Kerbin, you should be falling into Kerbol (what AM mode does), not trying to escape it (what velocity mode does). Turns out that warp drive in AM mode still makes you "pay" for your translation in DeltaV almost the same as your normal escape and capture burns if you went at the same time. You just pay for it all at the end (and you can do trickery with repeated slingshots to match orbits). You should also be able to drive out to Jool, turn around, return to your original location around Kerbin and have the same orbit. As a practical piloting manner one can't do that, but you can get close and it was one of the scenarios I tested against. One of the reasons for the new speed reductions in the gravity well were so you could drive your ship in warp more slowly so place it more precisely when you drop out of warp for more complex and precise maneuvers. Side Note: I learned recently that my intuition as to why I liked the Angular Momentum mode better and seemed more "right", is actually kinda based in work Emmy Noether did and how it relates to the mathematical symmetry gravitational field. Turns out the conserved quantity in conservation of energy in such a system like how we use our warp drives is in fact angular momentum. Which is probably why the math all fell out very nice and clean once I hit upon the correct equations.
  9. Because they are almost exact opposites. By switching between the two modes you can cancel out the undesirable effects of the other mode. There should be a flag on the part in your save file that will let you switch it. I was using a quicksave so I could change it in the file, save the file, then reload. That's how I was testing between the two modes easily.
  10. The USI warp drive works pretty well... I may have had a hand in making it though so filter that as you may.
  11. Have you tried running timewarp? Sometimes when you come out of time warp, especially high warp, the game will re-do the altitude & position calculations. Another thing to do is attach landing legs then do the suborbital landed thing you did. I used to always have problems with bases without legs. Lately, less so, but around 1.2 and before I had to always have legs on the rigid parts.
  12. I have noticed this as well. Can menu snipe and click the "open" button again from the right click dialog and it closes it, but yeah no close window. I think this one may be a bug in OSE workshop however.
  13. You are basically talking about Nertea's Near Future pack of mods. Which is one of the community's top shelf mods and always has been. It's awesome. I would think Squad would be hesitant to go into this territory because this particular mod is so high quality. Kerbal Re-usability Expansion has the landing legs you want.
  14. @capi3101When I made the 25x EC configs I was thinking about the fusion reactors from DSEV so didn't include WildBlue/Pathfinder as a whole. Pathfinder's SAFER reactor didn't exist then, neither did Flying Saucers, so right now WildBlue generally should probably trigger the higher numbers but I have no plans to push such a change.
  15. If mods aren't a problem Coatl Aerospace has some great small probe parts. Including a bunch of small reaction wheels.
×
×
  • Create New...