# list directories in columns alias ls 'ls -C'
Save and quit. The next time you log in the alias will take effect. If you want it in effect during your current session, type the command:
source .bashrc
in a the shell window (don't forget the leading period!). This will cause the shell to reread its configuration file.
A path is the sequence of directories through which one must move to reach a particular file. Your home directory is reached by traversing the path: /home/your loginname.
cp somedata /home/rfortjr
If you have permission to write to my directory, the command will be executed.
cp somedata rfortjr
you will find a new file, called rfortjr, in your home directory, containing the same things as the file somedata.
To copy file somedata to directory DATA, which is a subdirectory of directory PCMODEL, which is a subdirectory of your home directory:
cp somedata PCMODEL/DATA
will work just fine. Using /home/yourname/PCMODEL/DATA doesn't hurt; it just wastes your time.
Yup, lots of ways. Here's one. Do an ls command in the directory where the files are, but redirect the output from ls to a file. Thus
ls > files.dat
Instead of the file listing appearing on the screen, you will create the file files.dat, containing the file info. Now edit it with vi or jot to suit yourself, paste the whole file into your message, and send it off.
Essentially, the answer is that I haven't bothered to tell them. Linux workstations talk to each other about the time (without human intervention), and quite literally argue about which one of them is in charge of keeping the time for all of them. Log files contain statements like, "Katahdin is candidate time master." and "Magic is slave to OldBlue". The result is that if the master machine drifts off time, all of the others follow. So far, I haven't found any way to stop this except to shut down the time daemons. I'm working on it.
Until we can afford a printer for the Modeling Center, here are the options.
A little discussion of file formats is in order. All of the data, input and output files, mail files, and so on that we work with under UNIX are plain text files - ASCII files, in computer acronymese.
That's why we have PFE (Programmer's File Editor) for your PCs: it can translate and save text files in either PC or UNIX format.
Because the axial conformer is in a minimum on the potential energy surface - it's just not the deepest minimum.
As long as the change corresponds to downhill motion, the search continues. When an inflection point is found, searching ceases.
There is no guarantee that it will land in the deepest valley; much more likely is a landing in the valley most directly under the point where we drop it. We created an axial structure, so the valley most directly under it is the minimum energy axial conformer possible.
The various computational models within SPARTAN all offer the choice of conducting a Single Point calculation or a Geometry Optimization.
So far, with either PCModel or SPARTAN, we have been examining molecules in the gas phase (isolated, no solvent) and nearly vibrationally unexcited (that is, essentially at 0 Kelvin).
In the course of an optimization, SPARTAN needs to refer many times to the same set of integrals. When 'direct' is checked, these integrals are recalculated each time they are needed.
If it is not checked, the integrals are written to a scratch file on disk the first time they are calculated, and read into memory whenever needed. Because disk accesses are very slow compared to memory accesses, 'direct' is much faster, except for very small molecules.
You can get a list of SPARTAN's 'built-in' basis sets, by selecting 'Ab initio' from the HELP menu.
The molecular orbitals obtained from a Hartree-Fock calculation are the so-called canonical orbitals that diagonalize the Fock operator. These molecular orbitals are typically "delocalized" over the whole of the molecule, they are orthogonal and transform according to the irreducible representations of the molecular symmetry point group.
The canonical orbitals are sometimes characterized as "spectroscopic" orbitals; e.g., they have a unique physical significance within the context of Koopmans' theorem.
But molecular orbitals are one-electron wavefunctions and are not observables. In principle, they only serve as convenient building blocks in the construction of many-electron wavefunctions.
In fact, the determinantal many-electron wavefunction resulting from a Hartree-Fock calculation is invariant towards a unitary transformation of the occupied orbitals. It is thus possible to transform the canonical set of orbitals into a set of "localized" orbitals (a number of localization criteria have been suggested).
The localized orbitals generally correspond to bond orbitals and lone-pairs, and thus preserve the conventional picture dating from G.N. Lewis' famous 1916 paper on electron-pair bonds. However, in some cases orbital localization breaks down, for example, for aromatic pi-systems.
In other words, the organic chemists' set of localized MOs is simply an artificial construction that is useful in some cases because it corresponds to the Lewis structures with which we are used to communicating.
Answers to other questions of genereal interest may be added from time to time.