Sha256: a433d1ef9fef5d339a10569826df5ad8d0c8524e817b229bf644d2edeb05c779
Contents?: true
Size: 873 Bytes
Versions: 5
Compression:
Stored size: 873 Bytes
Contents
vocabulary Astronomy; /* * Value Types */ AstronomicalObject Code is written as String(12); Mass is written as Real(32); Moon Name is written as String(256); Nr Days is written as Real(32); Planet Name is written as String(256); /* * Entity Types */ AstronomicalObject is identified by its Code; AstronomicalObject has at most one Mass; Moon is a kind of AstronomicalObject identified by its Name; Orbit is where AstronomicalObject is in orbit; Orbit is around one AstronomicalObject (as Center) /* [acyclic, stronglyintransitive] */; Orbit has a synodic period of at most one Nr Days; Planet is a kind of AstronomicalObject identified by its Name; Star is a kind of AstronomicalObject; /* * Constraints: */ for each AstronomicalObject exactly one of these holds: AstronomicalObject is a Star, AstronomicalObject is a Planet, AstronomicalObject is a Moon;
Version data entries
5 entries across 5 versions & 1 rubygems