shrx
Members-
Posts
70 -
Joined
-
Last visited
Reputation
1 NeutralProfile Information
-
About me
Rocketry Enthusiast
-
The Other Linux Thread
shrx replied to skeevy's topic in KSP1 Technical Support (PC, modded installs)
Has anyone managed to run KSP over SSH? What command should I use? If I try ./KSP.x86_64 I only get a brief flash of a black window which quickly disappears and nothing else happens. The output in the console is -
Please make it cross-platform!
-
I'm not asking about the flare, I'd like to know if the sun is scaled up to match the real size like the rest of the planets. Because it doesn't look like it is.
-
So the sun is correctly sized up in RSS?
-
Why is the sun so small in RSS, as compared to the real life sun? Is it not scaled properly in game?
-
Kerbal science: The atmosphere of Kerbin
shrx replied to CaptainArbitrary's topic in KSP1 Discussion
I'm glad I found this thread, I'm doing some science measurements because I'm trying to restore Moho's atmosphere from 0.17. Here are the temperature profiles for stock Moho and Duna. I can see Duna's profile has some similarities to Kerbin's atmosphere. -
Thanks. I'm not really concerned by the visuals, just the physical effects.
-
I can't get atmoshpereTemperatureMultiplier to work. I want to restore Moho's atmosphere to what it was in 0.17. I enabled atmosphere and set atmoshpereTemperatureMultiplier to 1. The next time I load the game and switch to a vessel landed on Moho it displays a black screen and locks up. What's the problem? I am running 32bit KSP. Happens with no other mods installed. Here is the cfg that kittopia produces when I save the configuration: http://pastebin.com/DN9c5Ld3
-
OK, this is the updated cfg: REALSOLARSYSTEM { Moho { atmosphere = true useLegacyAtmosphere = true atmosphereMultiplier = 0.005 atmosphereScaleHeight = 2 maxAtmosphereAltitude = 27640 temperatureCurve { // The units are km, °C, dK / dkm, next dK / dkm. key = 0. 500. 0. -20. key = 10. 300. -20. -17.0068027211 key = 27.64 0. -17.0068027211 0. } } } Pressure now works correctly, but temperature still doesn't work as it should.
-
Thanks I'll try with your suggestions. atm/km is actually (atm2-atm1)/(km2-km1) between points 1 and 2. I don't think the atmosphere was visible, is AtmosphereFromGround{} just for visuals?
-
I'm trying to restore Moho's atmosphere to pre-0.18 values with RSS. This is my config (atmosphereMultiplier = 1 so the atmosphere should be more noticeable and temperatureCurve values are just placeholders): REALSOLARSYSTEM { Moho { atmosphereMultiplier = 1 atmosphereScaleHeight = 2 maxAtmosphereAltitude = 27640 useLegacyAtmosphere = True temperatureCurve { // The units are km, °C, dK / dkm, next dK / dkm. key = 0. 500. -10000. -20. key = 10. 300. -20. -17.0068027211 key = 27.64 0. -17.0068027211 0. } AtmosphereFromGround { waveLength = 0.49, 0.5, 0.53, 1.0 innerRadius = 247500 // 0.99 outerRadius = 312500 // 1.025 } } } However it does not seem to work. Pressure is always 0 (barometer displays "IN VACUM"). Temperature on the ground is 0° instead of 500°. Temperature at 10 km is 0.45° instead of 300°. How can I make it work? This is the first time I'm trying to make something with RSS. Any help will be appreciated.