enlarging the Sun's size
Posted: 09.01.2008, 21:54
What's the easiest way to enlarge the Sun's size? Just write an STC file? Thanks.
Real-time 3D visualization of space
https://celestiaproject.space/forum/
https://celestiaproject.space/forum/viewtopic.php?f=2&t=11883
arlduc wrote:What's the easiest way to enlarge the Sun's size? Just write an STC file? Thanks.
arlduc wrote:I need to make an animation that shows the whole solar system in one frame, so I am enlarging the planets. It looks weird to have the planets larger than the sun.
Code: Select all
Radius 5000000
Code: Select all
0 "Sol:Sun"
{
OrbitBarycenter "Solar System Barycenter"
CustomOrbit "vsop87-sun"
SpectralType "G2V"
AbsMag 4.83
RotationPeriod 609.12 # 25.38 days
Obliquity 7.25 # correct orientation relative to ecliptic
EquatorAscendingNode 75.77 #
RotationOffset 23.00 # standard meridian
}
arlduc wrote:I need to make an animation that shows the whole solar system in one frame, so I am enlarging the planets. It looks weird to have the planets larger than the sun.
t00fri wrote:looks like "dangerous traffic", i.e. hard to survive without collisions F.
rra wrote:other option would be to use Vincent's latest
lua tools,
it has a magnification options for the planets (I believe 200 times)
Ren?©
Code: Select all
-------------------------------------------------------------------------------------------------------
-- Define objects to magnify when the magnification box is checked.
-- Objects to magnify can be:
-- "planets": magnify all the planets in our solar system;
-- "moons": magnify all the moons in our solar system;
-- "asteroids": magnify all the asteroids in our solar system;
-- "comets": magnify all the comets in our solar system;
-- "earth_moon": magnify the Earth and the Moon.
-------------------------------------------------------------------------------------------------------
magnified_objects = "planets"
-------------------------------------------------------------------------------------------------------
-- Define the different magnification coefficients.
-------------------------------------------------------------------------------------------------------
planets_magnification = 2000
moons_magnification = 100
asteroids_magnification = 200000
comets_magnification = 2000
earth_moon_magnification = 30
-------------------------------------------------------------------------------------------------------