Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. public class PlanetData
  2. {
  3. public int index;
  4. public int gridLevel;
  5. public float meanTropoHeight;
  6. public float irradiance; //the value of incoming SW radiaton, ie. Kerbin = 1360.8
  7. public float deltaAlt;
  8. public float specificHeatGas;
  9. public float specificHeatLiquid;
  10. public float specificHeatSolid;
  11. public float specificHeatDewSub; //the specific heat of the dewing substance, ie. Earth/kerbin would dew water
  12. public float SWA; //0.27 for kerbin
  13. public float IRA; //0.55 for kerbin
  14. public CelestialBody body;
  15. public DewShit dewShit;
  16. public Dictionary<float, float> TropAlts = new Dictionary<float, float>(); //one time init for the tropopause altitudes, Key = latitude, Value = altitude
  17. public Dictionary<string, BiomeData> biomeDatas = new Dictionary<string, BiomeData>(); //biome data for all the biomes
  18. public List<CellMap<WeatherCell>> LiveMap = new List<CellMap<WeatherCell>>();
  19. public List<CellMap<WeatherCell>> BufferMap = new List<CellMap<WeatherCell>>();
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement