/// <summary> Planetary system contructor. Builds an accretion disc for the /// specified planet around the specified star. This has not been /// exercised to any significant degree, because moon formation /// doesn't seem to follow Dole's model quite as well. /// </summary> /// <param name="s">Primary for this system. /// </param> /// <param name="p">Planet around which these moons will form. /// </param> public Protosystem(Star s, Planet p) { star = s; planet = p; body_inner_bound = planet.nearest_moon(); body_outer_bound = planet.farthest_moon(); disc = new DustDisc(0.0, star.stellar_dust_limit(), planet.nearest_moon(), planet.farthest_moon()); disc.cloud_eccentricity = 0.2; }
/// <summary> Star system contructor. Builds an accretion disc for the /// specified star. /// </summary> /// <param name="s">Primary for this system. /// </param> public Protosystem(Star s) { star = s; planet = null; //planet_head = null; body_inner_bound = star.nearest_planet(); body_outer_bound = star.farthest_planet(); disc = new DustDisc(0.0, star.stellar_dust_limit(), star.nearest_planet(), star.farthest_planet()); disc.cloud_eccentricity = 0.2; }