LOAD KERNEL @file
The LOAD KERNEL command is used to make SPICE kernels (data files) available
to PERCY. Until kernels have been loaded PERCY can not do very much for you.
Kernels give the program access to the position, velocity, orientation and
shape of solar system objects. \index{LOAD KERNEL}
The following kernels are recognized by the program:
LOAD KERNEL filenameDepending upon what you plan to do with PERCY, you may need to load several types of SPICE kernels. If you are using the same set of files repeatedly, you may wish to gather a collection of LOAD KERNEL commands in a PERCY start up file. By doing so you can can load all needed kernels at program initialization by using the command line argument ``-start''.
You can determine the currently loaded kernels at any time using the ``SHOW ENVIRONMENT'' command.
This example shows how you might create a start up file that loads all of the
SPICE kernels required for your routine PERCY sessions. Below are the
contents of a PERCY procedure we shall call ``standard.begin'.'
;
; Standard Start up Configuration of Kernels
;
; We use our standard Leapseconds kernel
;
LOAD KERNEL myleapseconds.ker;
;
; SPK files used.
;
LOAD KERNEL de403.bsp;
LOAD KERNEL jupitersatellites.bsp;
LOAD KERNEL saturnsatellites.bsp;
LOAD KERNEL phobosdeimos.bsp;
LOAD KERNEL basicasteroids.bsp;
;
; PCK file
;
LOAD KERNEL pck00008.tpc;
;
; Station Frame Kernels
;
LOAD KERNEL frames.tfr;
;
EXIT;
To load this kernel automatically at start up, start PERCY as shown here.
percy -start standard.begin