Re: [Jmol-users] Jmol-users Digest, Vol 55, Issue 25

2010-12-24 Thread rspinney
(Zeff=1) the 2s is larger than the 1s as except, but the 3s, 4s ... are all smaller than the 1s and getting smaller as n increases. Rick On Wed, Dec 22, 2010 at 12:50 PM, rspinney rspin...@chemistry.ohio-state.edu wrote: According to the documentation the command ?isosurface phase atomicOrbital

[Jmol-users] bug in atomicOrbitals

2010-12-22 Thread rspinney
According to the documentation the command isosurface phase atomicOrbital 1 0 0 1 translucent 0.6; should generate the 1s orbital for hydrogen, the fourth number behind atomicOrbital being the Zeff. I am getting very strange results for n= 3. These orbitals are smaller then the n=1 or n=2. I have

[Jmol-users] bug in Gaussian reader

2010-04-15 Thread rspinney
I was just playing with displaying MOs from a Gaussian output file (freq and pop=full) and get an error message: Error reading file at line 1394: DENSITY MATRIX. Null For file ... Type Gaussian So Jmol is recognizing the file type correctly but has a read error. I thought

[Jmol-users] frame range

2009-09-16 Thread rspinney
I have an animation where I want to run the first 36 frames, stop it and then run the last 36 frames. I assumed that the commands frame RANGE 1 37; animation on; would animate frames 1 - 37 and then stop, but it just runs through the entire 72 frame range. This is a bug or am I doing something

[Jmol-users] lcaocartoon bug?

2009-07-20 Thread rspinney
I was trying to display the lone pair electrons on an oxygen atom using the following: 'select oxygen; lcaocartoon scale 1.5 sp2b; lcaocartoon color red;' + 'lcaocartoon scale 1.5 sp2c; lcaocartoon color red;' + 'lcaocartoon scale 0.75 -sp2b; lcaocartoon color blue;' + 'lcaocartoon

[Jmol-users] dipole command

2009-06-22 Thread rspinney
There appears to be a bug in the dipole command, the following code no longer changes the color of the dipole. javascript:showscript(63,0) dipole mydipole1 (atomno=1) (atomno=2) offsetSide 0; javascript:showscript(64,0) color $mydipole1 red; For versions 11.7.42 and 11.6.21. Rick

[Jmol-users] set picking spin

2008-08-22 Thread rspinney
Set picking SPIN seems to be broken in 11.6-RC9 Rick Spinney - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK win great

Re: [Jmol-users] pdb files

2008-08-14 Thread rspinney
after it. Bob rspinney wrote: I have just downloaded jmol-11.6.RC4 and have a problem opening pdb files. I get an error message of: Error reading file at line 1: HEADER String out of index range: -1 I seem to get this error message for any pdb file I try

[Jmol-users] show draw in animation

2008-04-08 Thread rspinney
I have been trying to get some curly arrows into animations but keep running into a problem. Using draw arrow works for any frame in the animation, but I can not seem to get the coordinates of the arrow using show draw, the always come back as: draw arrow1 ARROW {0.0 0.0 0.0} {0.0 0.0 0.0} {0.0

[Jmol-users] multiple display

2007-12-05 Thread rspinney
I have a page with two jmol applets in it. Is there a way to use a jmolmenu script to load different molecules into each applet? I was think of something similar to the jmolSetTarget command, ie jmolSetTarget(0); load moleculeA.pdb; jmolSetTarget(1); load moleculeB.pdb. Any ideas? Thanks,

Re: [Jmol-users] dipoles

2007-08-16 Thread rspinney
Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=windows-1252; format=flowed rspinney wrote: Hi Bob, I want to display dipole moments and have been playing with different file types trying to find something smaller than Spartan?s output files. I tried a Gaussian output file

[Jmol-users] dipole support for Gaussian output files

2007-08-14 Thread rspinney
Hi Bob, I want to display dipole moments and have been playing with different file types trying to find something smaller than Spartan's output files. I tried a Gaussian output file and it displays bond dipole moments ok, but it does not display the molecular dipole moment. Is this a bug? If

Re: [Jmol-users] questions

2007-06-05 Thread rspinney
Message: 2 Date: Sat, 02 Jun 2007 07:58:37 -0500 From: Bob Hanson [EMAIL PROTECTED] Subject: Re: [Jmol-users] questions To: jmol-users@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1; format=flowed rspinney wrote: I have a couple

[Jmol-users] questions

2007-06-01 Thread rspinney
I have a couple of questions for Bob. (I am using 11.1.44.) 1) I am not clear if frame (or model) next or previous make a call to animFrameCallback. I have a jmolSetCallback linked to animFrameCallback, and it works fine for model play, pause and resume (which will execute a script dependent on

Re: [Jmol-users] 11.1.42

2007-05-21 Thread rspinney
Message: 3 Date: Mon, 21 May 2007 08:22:46 -0500 From: Bob Hanson [EMAIL PROTECTED] Subject: [Jmol-users] 11.1.42 To: Jmol Developers [EMAIL PROTECTED], jmol-users@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1; format=flowed We are

[Jmol-users] bug in set picking draw

2007-05-16 Thread rspinney
There appears to be a bug in set picking draw. In 11.0.2 the three vertices of the arrow are displayed, but shift + mouse drags the entire arrow, not just the vertex selected. In 11.1.39, the three vertices are highlighted, but shift + mouse had no effect. Thanks, Rick

Re: [Jmol-users] if statement

2007-05-11 Thread rspinney
are doing, right? Bob rspinney wrote: I am trying to use the if statement to run scripts during an animation (using version 11.1.36) using the following script (where the messages are directed to a textbox using the jmolsetcallback function, I want to change the message based on the model number

Re: [Jmol-users] if statement

2007-05-11 Thread rspinney
jmolScript('set animframecallback testanim ') and then have: function testanim(app,frame,p3) { jmolScript(if(_modelNumber = 5);message is5;else;message not5;endif) } I do get the messages expected. So I think that is working properly. Bob I couldn't use this as is, but it gave me an idea

[Jmol-users] if statement

2007-05-10 Thread rspinney
I am trying to use the if statement to run scripts during an animation (using version 11.1.36) using the following script (where the messages are directed to a textbox using the jmolsetcallback function, I want to change the message based on the model number): if (_modelNumber = 1); message

[Jmol-users] symbol font in labels

2007-03-20 Thread rspinney
I know that both the echo and message commands can display symbol fonts (i.e. alpha; beta; .). Can this feature be added to the label command? Thanks, Rick -- Dr. Richard Spinney The Ohio State University Department of Chemistry 160 B Celeste

Re: [Jmol-users] symbol font in labels

2007-03-20 Thread rspinney
Message: 5 Date: Tue, 20 Mar 2007 21:45:20 +0100 From: Angel Herraez [EMAIL PROTECTED] Subject: Re: [Jmol-users] symbol font in labels To: jmol-users@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=US-ASCII Rick, how do you get echo alpha; to work? Not

[Jmol-users] additions to connect and if statements

2007-03-02 Thread rspinney
I have been working on some animations and a couple of features would be nice to have. 1) for the connect command a PARTIALTRIPLE bond similar to the partialdouble bond 2) for the if statement the ability to test for which model is loaded, i.e. if (model = 12) . endif;

[Jmol-users] message command

2007-01-08 Thread rspinney
I have several anaimations where I would like to print comments to a textarea controlled by the animation sequence. I have experimented with the SetCallback(meassageCallback, javascript_function) which works well, except that I get messages from everything (status, error, echos etc). Is there a

[Jmol-users] jmol-11.0.RC4

2007-01-08 Thread rspinney
I have also released 11.0.RC4 which contains a few bug fixes. If no problems are reported for this version, it will become Jmol 11.0. Please, check that every bugs you may have seen in previous versions are fixed. Nico I am not sure if it is a bug or not, but the dots command does not produce

[Jmol-users] bug in set picking?

2006-12-21 Thread rspinney
I have a page that used the following commands to measure distances, angles and torsion angles. This no longer works in 11.0.RC3. Any ideas? Is this a bug or has there been a change in syntax? Thanks, Rick jmolRadioGroup([ ['set measurement ANGSTROMS; set picking MEASURE DISTANCE; set

[Jmol-users] displaying a plane in an animation

2006-12-13 Thread rspinney
I have an animation (multi-model pdb) in which a mesh surface is displayed during the animation. This worked in Jmol 10, but fails for Jmol 11, where the mesh surface is only displayed for the first frame of the animation. Producing a plane using the draw command also only displays the plane for

[Jmol-users] measure bug(?)

2006-12-11 Thread rspinney
I am using Jmol 10.9.104 and seem to have found a bug in the measure command. I have a pdb file and am trying to measure an angle where in middle atom is at the origin. The measure command fails for this atom with any other atoms in the file, but works for any other combination of atoms. Has

[Jmol-users] 10.9.73

2006-10-10 Thread rspinney
I downloaded version 10.9.73 from the sourceforge link, but have been having problems with it. It does not do some of the latest changes (reading charges from a CIF file, displaying the correct ionic radii...). When I checked the version in the menu - About Jmol it states it is version 10.9.60

Re: [Jmol-users] MEP

2006-09-25 Thread rspinney
--- molecular electrostatic potentials -- *WE NEED TESTERS TO TAKE A CLOSE LOOK AT THIS.* Jmol 10.9.63 introduces bisosurface MEP/b, with which you can display molecular electrostatic potentials. These potentials are calculated from partial charge data present in

[Jmol-users] font command

2006-09-20 Thread rspinney
I am using the echo command to place a number of messages on the applet. I would like all of them to be the same size and font. I tried using the font command to do this but it appears that it only affects one echo command at a time. Is there a way to set a default font size? Thanks,

[Jmol-users] RE: orbitals/isosurfaces

2006-05-25 Thread rspinney
-Original Message- [note: this message relates to the experimetal prototype Jmol 10.x not the public release Jmol 10.2. See http://www.stolaf.edu/people/hansonr/jmol/test/proto/new.htm for details.] The JVXL format is a GO. Very nice Bob! The results for the isosurfaces, mapped