Hi!
I have just started to use Celestia. I would like to create an overview
of the Sun-Earth system for the last glaciations:
from -160 000 years to present day.
I have the orbital parameters values but I don't understand where I can modify it for the earth and where I can specify the epoch of modelling.
Could you help me?
Thank you!
paleo Earth orbital configurations
My understanding is that the Earth's orbital and orientation parameters have not changed noticeably since the last glaciation. The only difference is in the amount of ice, waterlevels and cloudcover. Those are shown by using a different Texture and a different CloudMap. In other words, you need to use your favorite paint program to create appropriate maps.
They can be shown at the right dates by replicating the current definition of the Earth (which is in solarsys.ssc), changing the Texture name, and adding Beginning and Ending directives to control when the glaciated Textures are shown.
I would use an SSC something like this:
etc.
They can be shown at the right dates by replicating the current definition of the Earth (which is in solarsys.ssc), changing the Texture name, and adding Beginning and Ending directives to control when the glaciated Textures are shown.
I would use an SSC something like this:
Code: Select all
Modify "Earth" "Sol" {
Beginning "-10000 1 1" # start of current inter-glacial period
}
"Earth-Wurm-Wisconsin" {
Beginning "-108000 1 1"
Ending "-10000 1 1"
Texture "Wurm-Wisconsin-glaciation.*"
# followed by all other Earth parameters except for Texture
}
etc.
Selden
- Chuft-Captain
- Posts: 1779
- Joined: 18.12.2005
- With us: 18 years 11 months
There are a couple of addons already showing how this can be done... I think I made a not very serious addon just to demonstrate the principle, but I think the user Maxim made quite a good addon which may be just what you're after. You may find this still on Maxim's website.
I'll try to track down the references for you.
I'll try to track down the references for you.
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
- Chuft-Captain
- Posts: 1779
- Joined: 18.12.2005
- With us: 18 years 11 months
A search for keyword="paleo" user="maxim" on the forum yielded the following :
http://celestiaproject.net/forum/viewtopic.php ... ight=paleo
http://celestiaproject.net/forum/viewtopic.php ... ight=paleo
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
-- Gerard K. O'Neill (1969)
CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS
Well my understanding is that orbitals parameters are constantly changing.
(eg tilt, eccentricity, precession) ie
http://en.wikipedia.org/wiki/Milankovitch_cycles
However, I dont believe Celestia has mechanism for modifying these on a continuous basis.
(eg tilt, eccentricity, precession) ie
http://en.wikipedia.org/wiki/Milankovitch_cycles
However, I dont believe Celestia has mechanism for modifying these on a continuous basis.
Celestia's builtin planetary ephemeris, VSOP87, is only good for about +/- 3000 years. Beyond that it reverts to standard Keplerian orbits.
However, Celestia v1.5.0 supports ScriptedOrbit and ScriptedRotation functions. You can use them to implement whatever orbital mechanics you want.
For details, see http://en.wikibooks.org/wiki/Celestia/T ... iptedOrbit
and http://en.wikibooks.org/wiki/Celestia/R ... edRotation
However, Celestia v1.5.0 supports ScriptedOrbit and ScriptedRotation functions. You can use them to implement whatever orbital mechanics you want.
For details, see http://en.wikibooks.org/wiki/Celestia/T ... iptedOrbit
and http://en.wikibooks.org/wiki/Celestia/R ... edRotation
Selden