Iannic-ann-od Posted September 14, 2012 Share Posted September 14, 2012 (edited) Stewardship of the VOID has passed to Toadicus -- please visit the new thread or SpacePort page for current discussion and download links.Thanks! Edited October 23, 2013 by Iannic-ann-od Link to comment Share on other sites More sharing options...
togfox Posted September 14, 2012 Share Posted September 14, 2012 Nice first stab. I think we need more of this stuff. Problem is, in 0.17 we'll not want to know just the Mun phase angle but Eve, Duna, and all the rest. If you think about that now you'll get a head start. Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted September 14, 2012 Author Share Posted September 14, 2012 Thanks! This is actually what I plan to figure out next. Link to comment Share on other sites More sharing options...
dikkjo Posted September 14, 2012 Share Posted September 14, 2012 Ha, its funny I've just started doing something like this but as partmodule to add to the different pods. The doubt i had myself is that in 0.17 there will be some sort of in-game tool allowing to phase angle recognition or even the angle displayed in the orbital map.Anyway if you check the rendezvous module of last mechjeb version, it has a nice gui to select bodies or vessels. The only thing it's missing is the phase angle and the possibility to switch the reference body which will come useful in the next update.Also in your angle calculation, your code despite being probably correct it can be made lot easier by using the implicit operators on Vector3d, i.e :Vector3d v1 = vessel.mainBody.position;Vector3d v2 = orbitingBody.position; // assuming orbitingBody existVector3d v3 = referenceBody.position; // assuming referenceBody existVector3d vA1 = v1 - v3; // Vector between the center of ref body and vessel Vector3d vA2 = v2 - v3; // Vector between the center of ref body and orbiting bodydouble angle = Vector3d.Angle(vA1,vA2)All the vectorial maths are included in the class Vector3d. Finally if you give the projected angle on the actual orbital plane that can lead to disastrous approaches moreover when planets are added.I think its preferable to have the real angle between vectors AND the planes (mis)alignment angle, this way you can judge what is your real position.Cheers, Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted September 14, 2012 Author Share Posted September 14, 2012 The doubt i had myself is that in 0.17 there will be some sort of in-game tool allowing to phase angle recognition or even the angle displayed in the orbital map.I don't mind at all if it becomes obsolete with 0.17. I assume it will at some point, but I couldn't wait.I am going to try adding a toggle to display lines for the vectors like RemoteTech Relay Network uses soon also. Also in your angle calculation, your code despite being probably correct it can be made lot easier by using the implicit operators on Vector3d, i.e :Vector3d v1 = vessel.mainBody.position;Vector3d v2 = orbitingBody.position; // assuming orbitingBody existVector3d v3 = referenceBody.position; // assuming referenceBody existVector3d vA1 = v1 - v3; // Vector between the center of ref body and vessel Vector3d vA2 = v2 - v3; // Vector between the center of ref body and orbiting bodydouble angle = Vector3d.Angle(vA1,vA2)All the vectorial maths are included in the class Vector3d. Thanks! Simpler is always better.Finally if you give the projected angle on the actual orbital plane that can lead to disastrous approaches moreover when planets are added.I think its preferable to have the real angle between vectors AND the planes (mis)alignment angle, this way you can judge what is your real position.Cheers,This is a very good idea. I will get with Google and see what can be done. Link to comment Share on other sites More sharing options...
maximalyst Posted September 15, 2012 Share Posted September 15, 2012 Alright, this is the first plugin I'm trying to install... Need some help, apparently. I put the contents of Parts into the main KSP Parts folder, and Plugins (just the .dll file) into the Plugins folder. What am I missing? It's not showing up... Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted September 15, 2012 Author Share Posted September 15, 2012 It sounds like you have the files in the right places. If you moved the entire rbr_VOID folder into parts, that is good. And only the .dll goes into Plugins.Are you seeing the part in the VAB? It's under the Command & Control tab. Looks just like the SAS module so make sure you aren't grabbing the wrong one.Once the part has been added to your ship and you send it to the launchpad, the window will pop up.Hope this helps. Link to comment Share on other sites More sharing options...
maximalyst Posted September 15, 2012 Share Posted September 15, 2012 Therein lies the issue; I didn't realize you had to add it to the ship. Thanks. Link to comment Share on other sites More sharing options...
Alephzorg Posted September 25, 2012 Share Posted September 25, 2012 I think... I think I'm in love ! Link to comment Share on other sites More sharing options...
Werwolf Posted September 25, 2012 Share Posted September 25, 2012 GREAT utility! This is exactly what I have been looking for, thank you SO much! Link to comment Share on other sites More sharing options...
Alephzorg Posted September 27, 2012 Share Posted September 27, 2012 I can't wait to try out the new update. Link to comment Share on other sites More sharing options...
Alephzorg Posted September 28, 2012 Share Posted September 28, 2012 The new VOID module is a real treat. It should be a standard part of every probe.Here we can see that Moho's atmosphere actually start way above the 14km altitude (closer to 27km, 28km according to the wiki).And man is it hot ! Even an ion engine overheats easily. Link to comment Share on other sites More sharing options...
Tommygun Posted September 29, 2012 Share Posted September 29, 2012 Nice mod, I did run into some conflicts when I had it on a rocket with both the Romfarer Lazor System and kerbal combined engineer redux mods.When I tried to turn on some of Void's functions it would turn the other two mods on and off. Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted September 29, 2012 Author Share Posted September 29, 2012 And man is it hot ! Even an ion engine overheats easily.Ya, that is brutal. Did you get all the way to the surface? Curious the temp there. I was just at Laythe and I have to say that it was much more hospitable.Nice mod, I did run into some conflicts when I had it on a rocket with both the Romfarer Lazor System and kerbal combined engineer redux mods.When I tried to turn on some of Void's functions it would turn the other two mods on and off.Oops! XD Thank you for letting me know. Link to comment Share on other sites More sharing options...
phoenix_ca Posted September 29, 2012 Share Posted September 29, 2012 Sooooo...what are the chances of outputting all that raw data somewhere? A la ISAMapSat... That'd be nifty. We could make graphs and stuff. Not really any compelling reason to do so, but...graphs! Lines! Things! Science! Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted September 29, 2012 Author Share Posted September 29, 2012 Sooooo...what are the chances of outputting all that raw data somewhere? A la ISAMapSat... That'd be nifty. We could make graphs and stuff. Not really any compelling reason to do so, but...graphs! Lines! Things! Science!Your reasons are plenty compelling enough for me. Plus I've been meaning to learn how to save and load the window positions and I think this would tie right in. I'll see what I can do. For science! Link to comment Share on other sites More sharing options...
Tommygun Posted September 30, 2012 Share Posted September 30, 2012 I was wondering if it would be possible to have a difference between the direct day light and shaded temperatures?So if your space craft passes behind a planet or the sun goes down if you have landed it gets colder.They have a plug-in that tracks the sun for the solar panels and does something similar for how much energy they produce, so maybe a modification of that? Link to comment Share on other sites More sharing options...
okbillybunnyface Posted September 30, 2012 Share Posted September 30, 2012 You should add dV to the transfer angle window. Link to comment Share on other sites More sharing options...
Talfryn Posted October 1, 2012 Share Posted October 1, 2012 Hey, excellent plugin, one issue though the data displayed blinks in and out when at high warp speeds. Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted October 10, 2012 Author Share Posted October 10, 2012 I was wondering if it would be possible to have a difference between the direct day light and shaded temperatures?That's a good idea. I will see what I can do. Don't hold your breath though, good chance I will have to find someone to help me math that.You should add dV to the transfer angle window.I've put Transfer Velocity back into the display for the new version. Subtract your current velocity from it and you have the dV.Hey, excellent plugin, one issue though the data displayed blinks in and out when at high warp speeds. Thanks! Were you using the 3-man pod? I get random blinking of any plugin windows when using that pod, most often at 1x warp. I haven't noticed it with any other pods, though. I'm not sure what I can do to fix it at the moment. Link to comment Share on other sites More sharing options...
sal_vager Posted October 11, 2012 Share Posted October 11, 2012 Iannic-ann-od, can you add a license to this, if it's there I couldn't find it. Link to comment Share on other sites More sharing options...
Iannic-ann-od Posted October 12, 2012 Author Share Posted October 12, 2012 Iannic-ann-od, can you add a license to this, if it's there I couldn't find it.It's at the top of the source .cs. I added a "GPL" to the OP now, also. Good? Link to comment Share on other sites More sharing options...
Cydonia Posted October 12, 2012 Share Posted October 12, 2012 It's at the top of the source .cs. I added a "GPL" to the OP now, also. Good?You could add this link to your post too:https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt Link to comment Share on other sites More sharing options...
hubbazoot Posted October 13, 2012 Share Posted October 13, 2012 One SUPER handy feature would be relative velocity to another vessel. Link to comment Share on other sites More sharing options...
maltesh Posted October 14, 2012 Share Posted October 14, 2012 Something's wrong with the Physical Characteristics section.VOID lists Kerbin's radius as 600km, which is correct.VOID's Surface area result is 4,523,893 km^2. Aso correct.Volume is listed as 6.97*10^8 km^3. Assuming that same 600-km radius, it should be about 9.05 *10^8 kg.Mass is listed as 5.29 * 10 ^19 kg. It's actually 5.29 * 10^22 kg. I think you're assuming that the game stats are offering the mass in grams, when they're offering it in kilograms.Using the actual mass and volume results in a density of about 58,500 kg/m^3 instead of VOID's 77.98 kg/m^3. Link to comment Share on other sites More sharing options...
Recommended Posts