Click on a link below to see what it does. You can also type a command in the box below the model to see its effect. The script run in this case was load caffeine.mol.

This page lists all new features in Jmol 12.3 (which, when released, will be 12.4). Features new to Jmol 12.2 (with links there to previous versions) are described in new2.htm Documentation for all commands can be found in the Interactive Documentation for Jmol 12.4. For the complete change log development summary, see Jmol.properties. Comments? Suggestions? Bob Hanson

Be sure you have the Latest version. Very latest may appear as Jmol-12.zip prior to release at SourceForge.

documentation   sample model files    feature request    bug report



35. set MESHSCALE

Jmol 12.3.29 adds set MESHSCALE to allow changing the diameter of isosurface and MO mesh lines.


34. MMFF94 minimization

Jmol 12.3.26 adds fully validated MMFF94 molecular mechanics minimization. If no atoms are selected, the minimization is carried out on the current model; otherwise only specific atoms are minimized. (This is unchanged; see the minimization command for full details.) Any time the MMFF94 atom types cannot be found, for example if the model does not have multiple bonding indicated, the minimization reverts to UFF (Universal Force Field). The default maximum minimization steps is 100, but the minimization can be continued by using MINIMIZE again.
  • load caffeine.mol
  • minimize
  • load caffeine.xyz
  • minimize


  • 33. script functions

    Jmol 12.3.26 adds the capability to run a script with parameters. One simply adds a set of variables in parentheses after the script file name and then within the script those values will be found in the _arguments array. On this site, the file testsf.spt simply reads prompt _arguments. the command name SCRIPT is optional if the file name is in quotations or ends with ".spt".
  • testsf.spt("param1","param2",3+5)
  • testsf.spt("testsf.spt",load("testsf.spt"))


  • 32. model ID "..."

    Jmol 12.3.26 adds an ID for models. This allows going to a specific model by name and is used as part of the syncronization between the Jmol and JSpecView applets. IDs are not case-sensitive.
  • load cyclohexane_movie.xyz;model 1.1;model ID "chair1";model 1.35;model ID "chair2";frame 10
  • frame "chair1"
  • frame "chair2"


  • 31. measures "2:%VALUE %UNITS//xx and set defaultDistanceLabel "%UNITS//xx"

    Jmol 12.3.26 adds the capability to specify units for a given distance measurement, a set of selected distance measurements, or all future distance measurements to a specific unit such as angstroms or nanometers
  • load caffeine.mol; set defaultDistanceLabel "%VALUE %UNITS//A";measure {_O}[1] {_O}[2]
  • measure {_O}[1] {_O}[2] "%VALUE//nm"


  • 30. Jmol selection extension to SMARTS searching

    Jmol 12.3.26 expands Jmol SMARTS searching to include full Jmol selection syntax within an atom primitive using the recursive option and "select ".
  • load caffeine.xyz
  • print {*}.find("{c}$(select _N and connected(2, _C))")


  • 29. set forcefield "MMFF" or "UFF"

    Jmol 12.3.26 allows setting the minimization force field to either MMFF94 or UFF. The default is MMFF, but Jmol automatically switches to UFF if atom types cannot be set. Any minimizationCallback and the variable _minimizationForceField both report the actual force field used.


    28. set energyUnits kJ|kcal

    Jmol 12.3.26 allows setting the units of energy for minimization reports in kJ/mol or kcal/mol.


    27. calculate partialCharge

    Jmol 12.3.24 adds the capability to calculate relatively reasonable partial charges using the MMFF94 charge model. Multiple bonding is required.
  • load caffeine.mol
  • calculate partialCharge; wireframe only;label %3.2[partialCharge]
  • calculate partialCharge; isosurface vdw map mep translucent


  • 26. write "http://..."

    Jmol 12.3.24 allows posting information to a server using the write command. The information is sent as application/octet-stream and can be an image or JMOL zip file or a Jmol variable. The return from the server can be used as an internal Jmol AJAX communication (but better!).


    25. load filter "CENTER"

    Jmol 12.3.24 adds a loading option that centers all models in a file based on the first model's position.


    24. load filter "NAME=..."

    Jmol 12.3.24 adds the load option NAME, which loads only those models with a name that contains a specified set of characters.


    23. PubChem search with ":"

    Jmol 12.3.24 adds easy PubChem searching using compound names, CAS numbers, PubChem CID numbers, or smiles strings. This capability requires the signed applet. click here to load the signed applet. Please be patient for this server to respond.
  • load ":name:tylenol" # or just load :tylenol
  • zap;set echo top left;echo loading...;refresh;load ":cas:103-90-2" # or just load :103-90-2
  • zap;set echo top left;echo loading...;refresh;load ":cid:1983" # or just load :1983
  • zap;set echo top left;echo loading...;refresh;load ":smiles:C/C=C/C"


  • 22. Jmol/ChemDoodle collaboration

    Jmol 12.3.22 adds a completely new API that allows pages showing Jmol applets to show either images or ChemDoodle canvases instead, depending upon the capabilities of the device showing the page. Demonstration pages include simple2.htm. The new API also provides considerably more flexibility for the Jmol applet itself, irrespective of ChemDoodle. The JavaScript is object-based and deprecates Jmol.js.


    21. write CD

    Jmol 12.3.22 adds the capability to write a model to ChemDoodle JSON format. For example: java -jar JmolData.jar -iRJ "load $tylenol;print write('cd')" generates: {"mol":{"a":[{"x":0.20549999,"y":0.8303,"z":0.3823},{"x":0.6906,"y":-1.4656999,"z":-0.14220001},...]}}


    20. "headless" application and -R, -T flags

    Jmol 12.3.21 fully implements headless Java operation specifically designed for server-side operation. The -R (restricted) flag allows the server to restrict operation to no reading or writing of local (server-side) files (other than a final image file using the -g and -w flags). The -T (timeout) flag sets the number of seconds to allow before the operation is canceled. The best file to use on the server is JmolData.jar, which has no graphics, and the preferred call looks something like this: java -Djava.awt.headless=true -Xmx512m -jar "JmolData.jar" -RJ "load $tylenol;" -g1000x1000 -wJPG:t.jpg. Headless operation disables command threading and the DELAY, TIMEOUT, PAUSE, LOOP, GOTO, SPIN [rate], and ANIMATION ON commands, and turns SPIN [rate] [degrees] into just ROTATE [degrees].


    19. model {atomset}

    Jmol 12.3.19 allows setting of a model by an atom set. The first atom in the set determines which model is displayed. For example, model {within(smarts,"[r3]")} would bring into frame the first model with a 3-membered ring.


    18. simpler color scheme definition

    Jmol 12.3.29 allows simpler color scheme definition using color names or arrays.
  • load 1crn.pdb
  • color property temperature "myscheme=red green blue"
  • Var x = ["red","white","blue"]; color property temperature "myscheme" @x


  • 17. JSpecView integration into Jmol

    Jmol 12.3.16 marks a new collaboration with Robert Lancashire and the JSpecView project. with the incorporation of JSpecView into the Jmol application. This is most evident in that there is a new menu item Tools...JSpecView, which opens a new JSpecView frame that includes the current model. Work is in progress to bring this interface to fruition, involving the design and implementation of a new JCAMP-DX format that incorporates models and assignments into JDX files using custom ##$MODELS and ##$PEAKS records. Progress can be monitored here. the Jmol application command SYNC ON; sync * "JSpecView:..." sends commands to JSpecView.


    16. sync ~ 'Select: [attributes]'

    Jmol 12.3.15 adds an additional method of interaction between applets. The sync command option Select: was specifically designed for interaction with the JSpecView applet, and has attributes much like an XML tag including file, model, atoms, select, and script. If Jmol does not find a model with ID file#model, it will load that model. atoms is a list of atom numbers separated by commas: 1,2,3 that will be translated into the selection @1 or @2 or @3. select can be any valid Jmol selection such as THR or 1-30. Jmol automatically adds visible and to the selection created from atom or select. Requires SYNC ON.


    15. NFF neutral file format reader

    Jmol 12.3.15 adds the capability to read NFF files (see http://paulbourke.net/dataformats/nff/nff1.html) for electron microscopy data exported from IMOD using the ISOSURFACE command


    14. isosurface SCALE expanded

    Jmol 12.3.13 expands the use of isosurface SCALE to the reading of isosurface data from CUBE files and other volume-data files.


    13. zoom $isosurfaceID 0

    Jmol 12.3.13 allows zooming to match the size of a specific isosurface.


    12. plot RAMACHANDRAN and {xxx}.psi/phi

    Jmol 12.3.11 lets you get PSI and PHI values from Ramachandran plots directly from the points involved.
  • load 1crn.pdb;plot ramachandran;
  • prompt "the average psi for helix residues is " + format("%5.1f",{helix and 2.1}.psi)


  • 11. LOAD .... filter "reverseModels"

    Jmol 12.3.11 allows loading of models in reverse order. This is particularly useful for developing animations of IRC calculation where the second part of the pathway may need to be reversed when combined with the first.


    10. set echo SCALE x.x

    Jmol 12.3.10 allows scaling of an image loaded with the SET ECHO command.
  • background white;set echo myecho off; set echo myecho [0 100%];set echo image "Caffeineredraw.png"
  • set echo myecho depth 0 # behind the model
  • set echo myecho scale 0.5 # half size


  • 9. write PDB adds CONECT records

    Jmol 12.3.10 adds CONECT records for heteroatoms and all multiple bonding. It uses the nonstandard CONECT i j j format for indicating multiple bonds.
  • load caffeine.mol
  • prompt script("write PDB")


  • 8. COMPARE ... ... FRAMES

    Jmol 12.3.10 adds a powerful new frame alignment option that is particularly useful for multimodel files where you want to align several models with one reference model. This is useful for IRC (intrinsic reaction coordinate) calculations and particularly helpful in patching together reaction mechanism sequences from different files. The default syntax is simply COMPARE {from} {to} FRAMES where {from} is a set of frames and {to} is the reference frame. All of the options of the COMPARE command, such as SUBSET, ATOMS, ROTATE, and TRANSLATE are still available. (ROTATE and TRANSLATE are implied by the FRAME keyword if neither is given.) If {to} is a subset of {from} -- for example, COMPARE {*} {1.1}, then the FRAMES keyword is unnecessary. See the mp directory for more examples.
  • load files "alkeneregioselectivity.xyz" "alkeneregioselectivity2.xyz";rotate x -60 # partial bonding would also be indicated using CONNECT commands, but those are not given here.
  • animation on # note the poor alignment between the two files.
  • compare {file=2} {1.1} FRAMES ATOMS @7@3 @4@2 @8@4 #pairs of atoms to correlate. "@n" was added in 12.1.51 and is the same as "{atomno=n}"
  • animation on


  • 7. application animation play

    The Jmol 12.3.10 application animation play forward/reverse buttons now allow continuous animation by holding the button down.


    6. _animTimeSec

    Jmol 12.3.10 adds a way of finding out (approximately) how long it will take for an animation to run once through. This allows a script to wait for an animation to run a specific number of times and then continue. It was needed for the St. Olaf installation of its Molecular Playground.
  • load mp-alkeneregioselectivity.png;zoom {*} 0;animation mode loop;animation on;delay @{2 * _animtimesec};animation off # twice through


  • 5. frame DELAY x.x

    Jmol 12.3.9 adds a way of pausing a running animation at any specific frame. The delay applies to all models specified in the most recent FRAME command.
  • load cyclohexaneFlip.jmol;frame 1.12;frame delay 2;draw pointgroup;frame title "half chair";frame 1.18;frame delay 2;frame title "twist boat";draw pointgroup;frame 1.25;frame delay 2;draw pointgroup;frame title "half chair";frame 1.1
  • select within(smarts,"{H}(.t : !-170,170)CC{H}");color green;select within(smarts,"{H}(.t :-10,10)CC{H}");color red # coloring trans-diaxial H atoms green and eclipsed H atoms red.
  • (.t indicates a torsional angle range 3D-SMARTS search; {..} indicates which specific atoms to select)
  • animation mode palindrome;animation on


  • 4. write PNGJ == PNG + JMOL

    Jmol 12.3.8 adds the capability to write a single file that can be displayed (and placed into Google documents, for example) as a PNG file but also contains all the files necessary to load the state back into Jmol. Use write PNGJ "filename" to create these files. Go ahead and copy the image on the right to your hard drive and then open it with Jmol.
  • load 1crn.png


  • 3. load Z-matrix files

    The Z-Matrix format allows for molecules to be described by internal coordinates (distances, angles, and dihedrals) rather than in terms of actual Cartesian coordinates. Jmol 12.3.8 can read several forms of Z-matrix data, including Gaussan/MOPAC format as well as a format designed for Jmol that allows also the simple introduction of bond order. Details are given in the Z-Matrix reader code itself. Examples can be found in the data directory under "zmat".
  • load zmat0.txt # methane
  • load zmat2.txt # CO2, with bonding designated
  • load zmat3.txt # CO2 with dummy atoms for repositioning
  • load zmat4.txt # NH3 using angles only, no dihedrals
  • load zmat5.txt # NH3 with variables
  • load zmat6.txt;frame title @{load("zmat6.txt").lines[1]}
  • load zmat7.txt;frame title @{load("zmat7.txt").lines[1]}
  • load zmat8.txt;frame title @{load("zmat8.txt").lines[1]}
  • load zmat9.txt;frame title @{load("zmat9.txt").lines[1]}
  • load zmat10.txt;frame title @{load("zmat10.txt").lines[1]}
  • load zmat11.txt;frame title @{load("zmat11.txt").lines[1]}
  • load zmat12.txt;frame title @{load("zmat12.txt").lines[1]}
  • load zmat13.txt;frame title @{load("zmat13.txt").lines[1]}
  • load zmat14.txt;frame title @{load("zmat14.txt").lines[1]}
  • load ZMATRIX::zmat6.txt # forcing ZMATRIX -- Ethane from the MOPAC example site


  • 2. color isosurface PHASE color1 color2

    Jmol 12.3.5 allows coloring atomic orbitals and molecular orbitals by phase after they have been created.


    1. show NMR

    Jmol 12.3.3 adds the capability to display a predicted 1H NMR spectrum. This uses the service at http://www.nmrdb.org/predictor and requires the signed applet. click here to load the signed applet.
  • load $acetaminophen
  • show nmr
  • See textarea below for results:

    [animationInfo] [appletInfo] [atomInfo] [atomList] [auxiliaryInfo]
    [bondInfo] [boundBoxInfo] [centerInfo] [chainInfo] [consoleText]
    [dataInfo] [errorMessage] [evaluate] [extractModel] [fileContents]
    [fileContents] [fileHeader] [fileInfo] [fileName] [image]
    [isosurfaceInfo] [jmolStatus] [jmolViewer] [ligandInfo] [measurementInfo]
    [menu] [messageQueue] [minimizationInfo] [modelInfo] [moleculeInfo]
    [mouseInfo] [orientationInfo] [pointGroupInfo] [polymerInfo] [shapeInfo]
    [stateInfo] [transformInfo] [extractModel] [reload THIS orientation]

      Array JSON String

      new window

        AJAX: PDB     NIH     MSA/CIF     STOLAF-ANY    
        show orientation image stereo (images not available with MSIE)
        save/show/restore state new resizable Window 2D-to-3D minimize
        higher quality   faster performance original 2D


        cmd: popup ??
        Java Console Log level:          

        Application loaded.