Code: Select all
Color [x x x]
Orientation [x x x]
etc...
Code: Select all
Color [x x x]
Orientation [x x x]
etc...
Code: Select all
Timeline [
# Phase 1 - on launchpad
{
OrbitFrame { BodyFixed { Center "Sol/Earth" } }
BodyFrame { BodyFixed { Center "Sol/Earth" } }
FixedPosition [ ... ]
FixedRotation { ... }
# Three days on the launch pad
Beginning "2008 2 18"
Span "259200" # was Ending "2008 2 21"
}
# Phase 2 - off into space
{
OrbitFrame { EquatorJ2000 { Center "Sol/Earth" } }
BodyFrame { EquatorJ2000 { } }
SampledTrajectory { ... }
SampledOrientation { ... }
}
]
Code: Select all
Timeline
[
# Cassini
{
Beginning "1997 10 15 09:27"
OrbitFrame { BodyFixed { Center "Sol" } }
FixedPosition [ ... ]
BodyFrame { BodyFixed { Center "Sol" } }
FixedRotation { ... }
}
# Huygens attached to Cassini
{
Beginning "1997 10 15 09:27"
OrbitFrame { BodyFixed { Center "Sol/Cassini" } }
FixedPosition [ ... ]
BodyFrame { BodyFixed { Center "Sol/Cassini" } }
FixedRotation { ... }
}
# Huygens Free flight
{
Span "227032440" # was Beginning "2004 12 25 02:01"
OrbitFrame { EclipticJ2000 { Center "Sol/Saturn/Titan" } }
SampledTrajectory { ... }
BodyFrame { EclipticJ2000 { } }
SampledOrientation { ... }
}
etc..
]
Chuft-Captain wrote:Sorry I haven't had time to follow this thread, but there is one thing that has occurred to me.
With regard to the use of absolute times within a Timeline:
Unless I've missed something, it seems to me that the use of absolute times within your implementation makes it incompatible with any future plans for Periodic Motion.
An idea I'd like you to consider is to use durations instead of absolute times in the Timeline (or find some other way to make it time-independent).
This would make it possible for a timeline to be used in conjunction with some sort of Periodic Motion construct (when that's finally specified).
eg. I can imagine that in the future quite complex repetitive motions could be specified by enclosing a Timeline within a Periodic Motion, where the Begin/End Times (and subsequent repetition behaviour) are specified as part of the Periodic Motion construct, whereas the Timeline construct is independent of any specific absolute time.
If you're serious about implementing Periodic Motion in the future, then IMO you should be avoiding using absolute times in any new constructs such as this.
I think we have a mis-understanding here...chris wrote:Chuft-Captain wrote:Sorry I haven't had time to follow this thread, but there is one thing that has occurred to me.
With regard to the use of absolute times within a Timeline:
Unless I've missed something, it seems to me that the use of absolute times within your implementation makes it incompatible with any future plans for Periodic Motion.
An idea I'd like you to consider is to use durations instead of absolute times in the Timeline (or find some other way to make it time-independent).
This would make it possible for a timeline to be used in conjunction with some sort of Periodic Motion construct (when that's finally specified).
eg. I can imagine that in the future quite complex repetitive motions could be specified by enclosing a Timeline within a Periodic Motion, where the Begin/End Times (and subsequent repetition behaviour) are specified as part of the Periodic Motion construct, whereas the Timeline construct is independent of any specific absolute time.
If you're serious about implementing Periodic Motion in the future, then IMO you should be avoiding using absolute times in any new constructs such as this.
The Timeline isn't intended to be a general system for animation. It is intended to describe significant changes in the positioning of an object over its lifetime, thus eliminating the need to use multiple SSC bodies to represent a single entity.
I recognize that Celestia needs some sort of system for general animation, but that's not what the Timeline is really for. For animation, I think we should look to incorporate some sort of existing technology into Celestia. There's OpenFlight, COLLADA, Open Scene Graph, or perhaps the Orbiter file format. All of these support articulated models. Alternately, the cmod format could be extended to support animation (and a tool to convert from other formats written.) Also, there would need to be a mechanism for connecting Celestia's clock to the internal timeline of the mesh.
That said, if you want to do animation using independent SSC objects, you still can. The addition of a periodic sampled trajectories and orientations might help a lot. Mathieu Joubert from CNES and Selden have already done incredible things using ScriptedOrbits. These are both special cases though: the positions and orientations are coming from a simulator in the CNES app, and the Hale animations are dependent on the position of the currently selected object. I think that for less specialized animations, it would be easier to have the animation description in the model file rather than the SSC. The articulated parts of a model could be much 'lighter weight' than ssc objects. More importantly, much of the animation could be composed within modeling software instead of with a text editor.
--Chris
But animation is the point of periodic motion, is it not?Chuft-Captain wrote:I think we have a mis-understanding here...
When I refer to Periodic Motion, I'm not meaning animation, but rather the ability to repeat an XYZ journey. Currently XYZ's contain absolute times (as does your new Timeline feature). Consequently, both XYZ events and Timeline events can only occur at the specified times.
What I suggested in the Periodic Motion thread is the removal of the dependence on absolute time within the XYZ file itself (which would allow the XYZ journey to be periodically repeated according to a regime specified in the SSC definition of the associated object).
I'm simply pointing out in this thread that it may be a good idea to also remove any time dependence from Timelines as well, in order to give more flexibility in their use and possible applications.
I'm anticipating for example that a Timeline might be embedded within a Periodic Motion construct...(the Timeline providing the capability to change reference frames within different phases of the journey, whilst the Periodic Motion construct would provide the ability to repeat the whole journey according to some regime).
It occurs to me that an individual phase of the Timeline might also be subject to repetition.
chris wrote:That is not the intended usage of Timeline. Something like Buggs' proposed Span property might be quite useful as an alternative to specifying the end time of a phase, but the Beginning definitely must be an absolute date. What else could it be?
Code: Select all
"Variable" "some star"
{
Emissive true
Timeline
[
# First Observation
{
Beginning "1880 1 1"
}
# Minimum
{
Mesh "sphere.cmod"
Texture "minimum.*"
Radius 484e6
Span "14299200"
}
# Maximum
{
Mesh "lobefilled.cmod"
Texture "maximum.*"
Radius 486e6
Span "14299200"
}
]
EllipticalOrbit {
Period 1e10
SemiMajorAxis 1e-10
}
RotationPeriod 1000
}
Strictly speaking, yes.chris wrote:But animation is the point of periodic motion, is it not?Chuft-Captain wrote:I think we have a mis-understanding here...
When I refer to Periodic Motion, I'm not meaning animation, but rather the ability to repeat an XYZ journey. Currently XYZ's contain absolute times (as does your new Timeline feature). Consequently, both XYZ events and Timeline events can only occur at the specified times.
Sounds like a good idea... similar to what I suggested in the Periodic Motion thread, except that I was assuming the TimeBase of an XYZ would always be "inherited" from the BeginDate (ie. mission start date) of the object using the XYZ. As long as the Timebase is specified in the SSC and not in the XYZ (ie. XYZ times are zero-based), then I don't see any problems.chris wrote:What I suggested in the Periodic Motion thread is the removal of the dependence on absolute time within the XYZ file itself (which would allow the XYZ journey to be periodically repeated according to a regime specified in the SSC definition of the associated object).
What you're asking for in xyz files could be accomplished by making two additions to SampledTrajectory: a boolean Repeat flag, and a TimeBase property. TimeBase would specify a Julian date which is added to each time in the xyz file. This could be useful in situations that don't use periodic motion at all. For example, you could use MJD (modified Julian days) in an xyz file instead of Julian days by specifying TimeBase 2400000.5. Other useful base times might be J2000.0 or mission start time.
Yes of course, but surely specifying an absolute Beginning Time can be done once only (at object level), and then inherited into any enclosed Timelines (and any referenced zero-timebased XYZ's).chris wrote:I'm simply pointing out in this thread that it may be a good idea to also remove any time dependence from Timelines as well, in order to give more flexibility in their use and possible applications.
I'm anticipating for example that a Timeline might be embedded within a Periodic Motion construct...(the Timeline providing the capability to change reference frames within different phases of the journey, whilst the Periodic Motion construct would provide the ability to repeat the whole journey according to some regime).
That is not the intended usage of Timeline. Something like Buggs' proposed Span property might be quite useful as an alternative to specifying the end time of a phase, but the Beginning definitely must be an absolute date. What else could it be?
No, I was not suggesting the Timeline should be the foundation for animation, but simply that by zero-timebasing Timelines (in principle the same as what you suggest for XYZ's above) you would have the option of enclosing an entire Timeline within another construct (which would be the foundation for repetition).chris wrote:It occurs to me that an individual phase of the Timeline might also be subject to repetition.
Again, what it sounds like you're asking for is for Timeline to be the foundation for some sort of animation system. And while I agree that improved animation support would indeed be useful, I maintain that there are better ways to do it than complicating the ssc file format.
--Chris
Code: Select all
Modify "Jupiter" "Sol"
{
Timeline
[
# Before Galileo
{
CustomOrbit "vsop87-jupiter"
EllipticalOrbit
{
Period 11.8622
SemiMajorAxis 5.2034
Eccentricity 0.0484
Inclination 1.3053
AscendingNode 100.556
LongOfPericenter 14.7539
MeanLongitude 34.404
}
Ending "1995 11 22 00:00"
}
# Galileo Mission
{
OrbitFrame { EclipticJ2000 { Center "Sol/JupSSBary/Jupiter_bary"}}
BodyFrame
{
MeanEquator
{
Center "Sol/JupSSBary/Jupiter_bary"
}
}
Ending "2003 09 30 00:00"
SpiceOrbit
{
Kernel "galileo_traj.bsp"
Target "599"
Origin "5"
Ending "2003 09 30 00:00"
BoundingRadius 1e10
}
}
# After Galileo
{
CustomOrbit "vsop87-jupiter"
EllipticalOrbit
{
Period 11.8622
SemiMajorAxis 5.2034
Eccentricity 0.0484
Inclination 1.3053
AscendingNode 100.556
LongOfPericenter 14.7539
MeanLongitude 34.404
}
}
]
}
volcanopele wrote:WOOTAGE!!! I just needed to add beginning statements to the second and third orbit definitions.
volcanopele wrote:Okay, it wasn't working as perfectly as possible. How this SHOULD work is that prior to the Galileo mission, Jupiter and its satellites orbit according to the Custom Orbit, the first orbit definition in the timeline. During the Galileo mission, between November 1995 and September 2003, Jupiter and its satellites orbit around the Jupiter system barycenter (that itself orbits around the solar system barycenter) in accordance with information from a spice kernel file. After September 2003, Jupiter and its satellites should return to the CustomOrbit.
But something happens with this that causes Galileo to orbit the Jupiter system barycenter and Jupiter on the other side of the Solar system.
Code: Select all
Modify "Jupiter" "Sol"
{
Timeline
[
# Before Galileo
{
CustomOrbit "vsop87-jupiter"
Ending "1995 11 22 00:00"
}
# Galileo Mission
{
OrbitFrame { EclipticJ2000 { Center "SSB" } }
SpiceOrbit
{
Kernel "de405.bsp"
Target "5"
Origin "0"
BoundingRadius 1e9
}
Ending "2003 09 30 00:00"
}
# After Galileo
{
CustomOrbit "vsop87-jupiter"
}
]
}