FELIX startup

Once installation is complete, FELIX is ready to use. You can start FELIX by either double clicking the FELIX alias icon on your desktop, or by selecting Start/Programs/Accelrys FELIX 2004/FELIX 2004.

Note: If FELIX complains about invalid licensing, you have to install the licensing pack by selecting Start/Programs/Accelrys License Pack/License Utilities, or you have to install a demo license by selecting Start/Programs/Accelrys FELIX 2004/Demo License Installer. Please ask your system administrator for details.


The felixrc.ini file

On startup, FELIX looks for the felixrc.ini file in the installation directory. This file defines paths for FELIX to search to find macros, menus, data, and other files. You can always edit the felixrc.ini file to modify the individual directory paths.

The line numbers shown below do not appear in the felixrc.ini file, but are used here for reference. A line starting with # is ignored by FELIX.


The felixrc.ini file format

1 #
2 # Default user paths
3 #
4 env 'ACCELRYS_FELIX' biosym
5 def annpfx ./
6 def biopfx ./
7 def datpfx ./
8 def dbapfx ./
9 def etcpfx ./
10 def ezppfx ./
11 def limpfx ./
12 def matpfx ./
13 def objpfx ./
14 def parpfx ./
15 def txtpfx ./
16 def xyzpfx ./
17 def conpfx ./
18 def forpfx ./
19 def umacpfx ./
20 def menus menus
21 def mnumod 1
22 #
23 # User local macro and menu directories go here
24 #
25 def macpfx &biosym/macros/felix/&menus/mac/
26 def macpf1 &biosym/macros/felix/&menus/model/mac/
27 def macpf2 &biosym/macros/felix/&menus/assign/mac/
28 def macpf3 &biosym/macros/felix/&menus/ht/mac/
29 def macpf4 &umacpfx
30 def nmacpfx 4
31 def mnupfx &biosym/macros/felix/&menus/mnu/
32 def mnupf1 &biosym/macros/felix/&menus/model/mnu/
33 def mnupf2 &biosym/macros/felix/&menus/assign/mnu/
34 def mnupf3 &biosym/macros/felix/&menus/ht/mnu/
35 def motpfx &biosym/macros/felix/&menus/mot/
36 def icopfx &biosym/macros/felix/&menus/ico/
37 def msgpfx &biosym/data/felix/msgs/
38 def schpfx &biosym/database/felix/schema/
39 def filpfx &biosym/exe/filters/
40 def asglib &biosym/data/felix/asglib/
41 #
42 # System paths go here
43 # CHANGE ONLY AT YOUR OWN RISK
44 #
45 SYSTEM MACROS &biosym/macros/felix/&menus/mac/
46 SYSTEM MACROS &biosym/macros/felix/&menus/assign/mac/
47 SYSTEM MACROS &biosym/macros/felix/&menus/model/mac/
48 SYSTEM MACROS &biosym/macros/felix/&menus/ht/mac/
49 SYSTEM MENUS &biosym/macros/felix/&menus/mnu/
50 SYSTEM MENUS &biosym/macros/felix/&menus/assign/mnu/
51 SYSTEM MENUS &biosym/macros/felix/&menus/model/mnu/
52 SYSTEM MENUS &biosym/macros/felix/&menus/ht/mnu/
53 SYSTEM MOTIF &biosym/macros/felix/&menus/mot/
54 SYSTEM ICONS &biosym/macros/felix/&menus/ico/
55 SYSTEM MSGS &biosym/data/felix/msgs/
56 SYSTEM SCHEMA &biosym/database/felix/schema/
57 SYSTEM FILTERS &biosym/exe/filters/
58 SYSTEM ASGLIB &biosym/data/felix/asglib/
59 #

Line 4:

The FELIX command env maps the environment variable ACCELRYS_FELIX to the user symbol biosym. This symbol is used to set the paths for the system files which are macros, menus, msgs, and schema.

Lines 5-19:

The default paths for searching for the files you create (e.g., text files and data files) are set here. You can change this to whatever paths you would like FELIX to search for particular files. The example shown above let FELIX search all the files you create in the current working directory, which is usually the directory where you create the database file when you start up FELIX.

Lines 20-21:

These lines are obsolete..

Lines 25-40:

The paths for your local macros, menus, and other files are set here. By default, these paths are set to the system (or installation paths). If you want to modify a macro for your use, you need to place this macro in a directory (e.g., mymacros) and set the macpfx symbol to point to this directory. By default, the following strategy is used by FELIX to search for files (e.g., macros and menus):

1. Look in the user's current working directory.

2. Look in the directories pointed to by the macpf*, mnupf*, and similar prefixes.

When the specified file is found, the search ends and that file is used. This gives you more flexibility in editing and changing macros for your own use, while not affecting other users of FELIX.

You may define up to 10 directories to be searched for each file type. Keep in mind, though, that execution speed may be slowed by long search paths.

Lines 44-58:

These lines are obsolete.


The initialization macro

The init.mac file is the FELIX macro file that is executed when FELIX starts. It determines every detail of how FELIX starts. FELIX uses a two step search to find the init.mac file. FELIX first looks in the Start In folder for the init.mac file. If it is not found there, FELIX next searches the paths defined by the macpf1, macpf2, ... symbols in your felixrc.ini file (see previous section).

Note: FELIX cannot run without the init.mac file.

The init.mac file has the following commands that you may want to customize:

 > def verify 0

This suppresses the macro debug mode. You can change the value to 1 or 2 to show macro file names and macro contents for debugging.

 > def blkwht 0

This sets the background color of the spectral frames to be black. If you set it to 1, the background color will be white.

 > cfg 32768 6

This sets six buffers for 1D data swapping, and each buffer as 32768 complex points.

 > def maxdim 4

Initializes the maximum number of dimensions that FELIX will be able to handle.