Jump to content

Feradose

Members
  • Posts

    398
  • Joined

  • Last visited

Posts posted by Feradose

  1. I don't know if it's what he was talking about in the post, but a way to generate/consume resources during time-warp almost has to be added now to support the new science-over-time generation capability of the Science lab.

    Put a satellite in orbit around kerbin with solar panels and set some timewarp. You will notice resource generation while warping is already there

  2. I put a lander with bangometer in all biomes in kerbin (except waters.. dangerous places) and when I crash to a biome, bangometer doesnt see anything or make any experiments?? Is kerbin excluded, or does lander legs and other parts block bangometer from getting data?

    -edit:

    put a probe, sitting directly on a bangometer, no experiment result still, and bangometer is so wobbly it crashes to kerbin while standing.

    should I try it on an atmosphereless body? I tried subsonic, supersonic and reentry speeds and no science for me :(

  3. Hello everyone,

    I wanted to make a DeltaV calculator in python and I failed I think.

    Can anyone fix it?

    (I read it had to do something with local gravity too so I put them there)

    You dont need to put aerodynamics stuff in it, just think its vacuum

    mass_empty=int(raw_input("Enter dry mass "))

    mass_full=int(raw_input("Enter wet mass "))

    isp=int(raw_input("Enter Isp "))

    thrust=int(raw_input("Enter thrust "))

    celestialBody_number=int(raw_input("Choose celestial body "))

    if celestialBody_number==0:

    g=1.746

    print "You have selected Kerbol"

    if celestialBody_number==1:

    g=0.275

    print "You have selected Moho"

    if celestialBody_number==2:

    g=1.7

    print "You have selected Eve"

    if celestialBody_number==3:

    g=0.005

    print "You have selected Gilly"

    if celestialBody_number==4:

    g=1

    print "You have selected Kerbin"

    if celestialBody_number==5:

    g=0.116

    print "You have selected Mün"

    if celestialBody_number==6:

    g=0.05

    print "You have selected Minmus"

    if celestialBody_number==7:

    g=0.3

    print "You have selected Duna"

    if celestialBody_number==8:

    g=0.112

    print "You have selected Ike"

    if celestialBody_number==9:

    g=0.115

    print "You have selected Dres"

    if celestialBody_number==10:

    g=0.8

    print "You have selected Jool"

    if celestialBody_number==11:

    g=0.8

    print "You have selected Laythe"

    if celestialBody_number==12:

    g=0.235

    print "You have selected Vall"

    if celestialBody_number==13:

    g=0.8

    print "You have selected Tylo"

    if celestialBody_number==14:

    g=0.06

    print "You have selected Bop"

    if celestialBody_number==15:

    g=0.038

    print "You have selected Pol"

    if celestialBody_number==16:

    g=0.172

    print "You have selected Eeloo"

    Delta_V=(mass_full/mass_empty)*isp*g

    print Delta_V

×
×
  • Create New...