Conference PaperPDF Available

Porting legacy applications to immersive virtual environments - a case study.

Authors:

Abstract and Figures

Immersive virtual environments are becoming increasingly common, driving the need to develop new software or adapt existing software to these environments. We discuss some of the issues and limitations of porting an existing molecular graphics system, PyMOL, into an immersive virtual environment. Presenting macromolecules inside an interactive immersive virtual environment may provide unique insights into molecular structure and improve the rational design of drugs that target a specific molecule. PyMOL was successfully extended to render molecular structures immersively; however, elements of the legacy interactive design did not scale well into three-dimensions. Achieving an interactive frame rate for large macromolecules was also an issue. The immersive system was developed and evaluated on both a shared- memory parallel machine and a commodity cluster.
Content may be subject to copyright.
PORTING LEGACY APPLICATIONS TO IMMERSIVE VIRTUAL
ENVIRONMENTS
A Case Study
Kenny Gruchalla, Jonathan Marbach
Department of Computer Science, University of Colorado at Boulder, USA
gruchall@colorado.edu, marbach@colorado.edu
Mark Dubin
Department of Molecular,Cellular, and Developmental Biology, University of Colorado at Boulder, USA
dubin@colorado.edu
Keywords: Immersive visualization, molecular visualization, virtual reality, software engineering, biology.
Abstract: Immersive virtual environments are becoming increasingly common, driving the need to develop new
software or adapt existing software to these environments. We discuss some of the issues and limitations of
porting an existing molecular graphics system, PyMOL, into an immersive virtual environment. Presenting
macromolecules inside an interactive immersive virtual environment may provide unique insights into
molecular structure and improve the rational design of drugs that target a specific molecule. PyMOL was
successfully extended to render molecular structures immersively; however, elements of the legacy
interactive design did not scale well into three-dimensions. Achieving an interactive frame rate for large
macromolecules was also an issue. The immersive system was developed and evaluated on both a shared-
memory parallel machine and a commodity cluster.
1 INTRODUCTION
As immersive environments become more
ubiquitous, so does the desire to adapt legacy three-
dimensional applications to operate within these
environments. However, tightly integrating the
functionality, particularly interactive functionality,
of a legacy three-dimensional application within an
immersive virtual environment (IVE) may not be
possible without major redesign of the application's
architecture. This paper addresses design issues,
implementation issues, and the overall effectiveness
of extending PyMOL (DeLano 2002), an existing
open-source molecular graphics software system, to
support the visualization and manipulation of virtual
macromolecules within an IVE.
PyMOL was successfully extended using
CAVELibTM to render its molecule representations
inside a CAVE-like IVE. This allows
crystallographers to physically walk around the
macromolecule representations and view them from
multiple perspectives. Extending the rendering
capabilities was straight-forward; however,
integrating the interactive molecular editing features
of PyMOL was less successful. The initial intent was
to provide a true three-dimensional interface for all
the molecular editing capabilities of PyMOL.
Providing this interface was hindered by two
underlying design principles of PyMOL. First,
virtual objects are selected in PyMOL using an off-
screen buffer color-coding scheme, which is
inappropriate for immersive environments.
Secondly, all PyMOL editing is done directly to the
chemical data structures and not to their graphic
representations. For large molecular structures this
introduces an inefficiency that makes interactive
editing impossible. Therefore, our port is currently
incomplete: it only allows the manipulation
(translation and rotation) of complete molecular
structures but not individual atoms and bonds.
However, this is still a useful result, allowing
crystallographers to investigate the fitting between
two or more molecules.
This work is motivated by a larger pilot study to
determine if there is added value in using immersive
visualization as a molecular research tool. The shape
179
of a molecule provides the basis for its function.
This is the principle behind rational drug design,
which uses structural information to design drugs
that bind with high affinity and specificity to a
therapeutic target. The effective visualization of
three-dimensional molecular structure can play a
critical role in understanding molecular function,
leading to better drug design. However,
understanding the complex irregular geometry of
multiple macromolecules is a daunting task. Even
more complicated is interacting with and
manipulating these complex three-dimensional
structures. Therefore, immersive visualization of
molecule structures has long been proposed to cope
with the complex three-dimensional nature of
molecule biology (Ihlenfeldt 1997).
There exists a common intuition that an
immersive virtual environment can provide an
improved interface to view and interact with
complex three-dimensional datasets compared to the
more traditional graphics workstation (van Dam
2000). This intuition is based on the fact that an IVE
provides the user with an egocentric three-
dimensional point-of-view, allowing the user to view
and interact with the data space using “natural
skills.” There have been recent studies that have
shown that some three-dimensional tasks can be
improved when the data is presented and
manipulated in an IVE (Pausch 1997, Arns et al.
1999, Swan et al. 2003, Gruchalla 2004). However,
the results are mixed. Several of these and other
studies have also shown reduced performance in
accomplishing various tasks in an IVE (Pausch
1997, Arns et al 1999). The suggestion is that the
applicability of an IVE is highly task dependent.
Therefore, the principle thesis of our larger effort is
to determine if an immersive interface can improve
the rational design of drugs that target a specific
molecule.
2 PYMOL
PyMOL is a powerful and versatile open-source,
cross-platform molecular graphics system with an
embedded Python interpreter. It is capable of real-
time visualization using OpenGL® and the
generation of high-quality, ray-traced images.
PyMOL supports most of the common
representations for molecular structures: wire bonds,
cylinders, spheres, ball-and-stick, dot surfaces, solid
surfaces, wire meshes, backbone ribbons, and
cartoon ribbons. Proteins and electron densities can
be imported from many file types (e.g., PDB, SDF,
and MOL) (DeLano 2002).
Figure 1: A PyMOL rendered visualization of a
membrane-bound protein docking to a membrane
(yellow).
PyMOL is written in C, but its primary interface
is an embedded Python interpreter. The basis for its
sophistication is the PyMOL scripting language, a
superset of Python. All of the features of PyMOL
are accessible through a command-line interface.
PyMOL also provides an external Tcl/Tk GUI and a
simple internal OpenGL menu system. Both are
merely wrappers around PyMOL scripting
commands: button presses in the GUI generate
PyMOL script that is then evaluated by the
embedded interpreter (DeLano 2002).
There are several immersive molecular
visualization tools that have already been developed.
VRMol is an immersive application that allows for
the interactive investigation of multiple complex
molecules (Hasse et al. 1996). RealMOL is another
more recent example of an interactive immersive
molecular research tool (Ai and Fröhlich 1998).
However, in the context of our larger research goals,
extending PyMOL provided several advantages over
existing immersive molecular applications. The
driving motivation behind this work is to design an
empirical experiment to study the benefits of using
immersive visualization in rational drug design. A
team of crystallographers, from which we will draw
our test subject population, recommended PyMOL
for its sophistication, quality of visualizations, and
user-adjustable parameters. PyMOL is currently
being used within this target population as a desktop
molecular research tool. Drawing from an
experienced user-base will allow us to conduct a
comparative study of a real-world application on
real-world problems. A secondary factor in the
selection of PyMOL was that it has been released
GRAPP 2007 - International Conference on Computer Graphics Theory and Applications
180
Figure 2: Desktop version of PyMOL (DeLano 2002). PyMOL provides a Python-
b
ased scripting language, which can be
used directly at the command prompt or indirectly through the Tcl/Tk GUI or the simple OpenGL menu system.
under an open-source software license. This
provides us the opportunity to contribute to both the
immersive visualization and molecular research
communities.
3 IMMERSIVE PORT
The intent of the project was to extend PyMOL's
three-dimensional rendering and manipulation
capabilities into an IVE, allowing crystallographers
an egocentric view of molecular structures.
Furthermore, the scientist would be able to
manipulate the macromolecule at a component level:
selecting and manipulating atoms, bonds, and
structures directly using a six-degree of freedom
input device. The goal of the port was not to replace
the desktop version of PyMOL, but rather to
augment and enhance the desktop version with an
immersive counter-part. Three architectural areas of
PyMOL had to be addressed to provide this
functionality: the rendering architecture, thread
control architecture, and interaction architecture.
PyMOL provides two mechanisms to render
molecular structures: the standard OpenGL pipeline
for interactive visualizations, and a built-in ray-
tracer for generating static, high-quality images for
publication. For the purposes of this port, we were
only interested in interfacing with PyMOL's
interactive visualization capabilities. We used
CAVELibTM to handle the hardware-specific details
of the IVE display system. An immersive display
callback function was added to PyMOL that is called
from the CAVELibTM display loop for each rendered
view. CAVELibTM handles the necessary projections
for each view and synchronization among views in
the IVE. The immersive display function is almost
identical to the PyMOL display function, with two
exceptions: it allows CAVELibTM to handle
PORTING LEGACY APPLICATIONS TO IMMERSIVE VIRTUAL ENVIRONMENTS - A Case Study
181
stereoscopic rendering, and it bypasses the
additional back-buffer render used in the picking
scheme discussed below.
PyMOL is a multi-threaded application with
separate threads for the rendering and interaction,
the embedded Python interpreter, and the Tcl/Tk
GUI. This architecture was easily extended to handle
the multiple threads used to render each immersive
view. This involved simply adding an additional
mutex to prevent resource competition between the
immersive displays and the windowed display, and
between the immersive interactions and the
command driven interactions. Although the
development required to extend the thread
architecture was minimal, the difficulty of
understanding the PyMOL thread control should not
be understated. Thorough understanding of the
PyMOL and CAVELibTM threads was critical in the
success of the port.
PyMOL provides limited but functional
molecular editing capabilities. From the command-
line, entire molecular structures can be manipulated
(e.g., rotated, translated). PyMOL also provides
limited mouse-driven editing capabilities. These
capabilities allow the individual atoms and bonds of
a protein to be selected and transformed. Extending
these capabilities to a true three-dimensional
interface was hindered by two underlying design
principles of PyMOL. First, virtual objects are
selected in PyMOL using a back-buffer color-coding
scheme. When the user clicks a mouse button, a
function renders each pickable object into the back-
buffer using a distinct color. The color at the mouse
position is read back, and is used to index an array
of visible objects. Unfortunately, this process does
not scale to a three-dimensional pointing device. The
position of the three-dimensional pointing device
cannot be projected into the two-dimensions of a
single back-buffer since there may be multiple views
in an immersive environment. This is further
complicated by stereographic projection, since there
may be multiple back-buffers per view. Extending
PyMOL's architecture to support data structures that
can be efficiently selected in three-dimensions will
require a sizable effort. As a temporary work-
around, we have provided the ability to select
objects from the command-line that can then be
manipulated within the IVE.
The second problem in adapting interactions into
three dimensions was the design of the data
structures used to model the molecular structures.
PyMOL editing is done directly to the chemical data
structures and not to their graphic representations:
transformations are applied to each individual atom,
then, the graphical representation of the molecule is
reconstructed from the transformed atoms. For large
molecules, the construction or reconstruction of
certain types of graphics representations (e.g., solid
surfaces) can cause a delay of several seconds. Since
most PyMOL interaction originates from the
command-line, this inefficiency was tolerable.
However, for manipulation of objects inside an IVE
the potential multiple-second lag between the user's
movements and the visualization response was
clearly unacceptable as operational feedback.
Indeed, if the internal structure of a molecule is
modified, the graphics representation may need to be
reconstructed. However, if the internal structure of a
molecule is not edited and only the molecule's
relative position or orientation has been changed, the
graphics representation does not have to be
reconstructed -- it can simply be transformed with a
transformation matrix.
Figure 3: User interactively docking a protein to a
membrane (yellow) inside an immersive virtual
environment.
To allow rapid independent manipulation of
complete molecular structures, we added
transformation matrices to encapsulate the position
and orientation of the graphics representations
during editing. This provides a crystallographer
means to investigate the fitting between two or more
molecules inside the IVE interactively (see Figure
3). Once the relative positions and orientations of the
graphical representations are decided upon, a
scripting command has been added to transform and
synchronize the chemical data structures with the
graphics representations. Currently, there are no
means to interactively modify internal molecular
structures from within the IVE.
GRAPP 2007 - International Conference on Computer Graphics Theory and Applications
182
4 RESULTS
System performance is critical, as our pilot users are
interested in visualizing and interacting with
macromolecules on the order of tens of thousands of
atoms. For example, the macromolecule 1GRU has
over 58,000 atoms (Ranson et al. 2001). Even a
medium-resolution surface representation of this
macromolecule has close to one million triangles. To
maintain satisfactory spatiotemporal correlation
between a user’s actions and system responses, an
update rate of at least ten frames per second must be
achieved (Bowman et al. 2005). Furthermore, the
application is stereoscopic, requiring two views to
be rendered per frame. Therefore, we would require
a throughput of twenty million Gouraud-shaded
polygons with specular highlighting per second. This
throughput figure is of course for one molecule only,
yet for the application to be of value to users, they
must be able to interactively manipulate multiple
molecules.
Our initial development efforts were carried out
on a 20-processor SGI Onyx 3800 with four
InfiniteReality3 graphics pipes. The appeal of
developing on such a machine is the simplicity of
software development: a single application is
executed on a single machine, with multiple
rendering threads running in parallel. The distinct
disadvantage of such a hardware environment is that
its graphics performance trails that of recent
hardware.
To deliver the performance necessary to maintain
interactivity, we ported our immersive version of
PyMOL to a four-PC cluster equipped with
QuadroFX 3000G graphics cards from NVidia. The
clear advantage of such a system is its high-
performance graphics capabilities and cost-effective
upgrade path, but this system incurs its own costs.
With four applications running simultaneously on
separate machines, synchronization becomes an
issue. CAVELib™ does provide synchronized
tracker and controller data to the application;
therefore, if the application responds
deterministically to these inputs, the cluster nodes
will behave identically. Unfortunately, there is no
mechanism that automatically synchronizes
application-specific events and data.
To avoid requiring that the user replicate
commands manually across the four PCs, we have
implemented a command distribution mechanism
using CAVELib™’s synchronized communication
functions. As described earlier, most of PyMOL’s
functionality is exposed through extensions to the
embedded Python interpreter, which accepts
commands as character strings. To achieve
command synchronization, we intercept the strings
before they are sent to the interpreter, and distribute
them to the remote cluster nodes. The only limitation
of this approach is that commands must be entered
on the master node, since CAVELib™ only exposes
a synchronized scatter operation from master to non-
master nodes. A major benefit of this approach is
that most user-initiated events, even from PyMOL
GUIs, are handled as command strings, so these are
automatically distributed and synchronized across
the cluster.
We performed a small pilot study to assess the
usability of the immersive port. Three University of
Colorado biochemistry groups were invited to study
a molecule of their choice using the immersive
version of PyMOL. The biochemistry groups
conducted actual research on how the structure of
their molecule related to its function. Typically,
three or four members of the team would work
collaboratively inside the IVE, while one team
member would control the visualization from a
desktop computer using the PyMOL command-line
and desktop interfaces.
Despite the limitations of the immersive port, our
pilot users indicate that the immersive version of
PyMOL is indeed useful as a research tool. In fact,
the immersive examination of the selected molecules
led all three research groups to a new understanding
of their molecule's functional structure. All three
groups reported the discovery of a large spatial
feature, such as an empty space or ridge that had not
been previously recognized during extensive
previous work with the molecule using the PyMOL
on the desktop.
5 CONCLUSIONS
In this paper, we discussed some of the issues and
limitations of porting PyMOL into an immersive
virtual environment. We successfully extended
PyMOL to render its molecule representations inside
an IVE. However, the interactive molecular editing
features of PyMOL have not been completely nor
effectively integrated into our immersive version. As
a consequence of how three-dimensional objects are
represented and how they are selected in PyMOL,
full immersive integration of the interactive features
will not be realized without a significant amount of
work. This port serves as an example that legacy
three-dimensional applications designed for a
desktop may have made underlying assumptions that
will complicate an immersive port. In fact, to fully
PORTING LEGACY APPLICATIONS TO IMMERSIVE VIRTUAL ENVIRONMENTS - A Case Study
183
integrate the interactive features of a legacy
application may require major architectural changes.
The following observations can be made from the
effort to port PyMOL:
PyMOL's use of the OpenGL rendering
pipeline provided a direct means to extend
the molecular visualizations to an
immersive platform using CAVELibTM.
Thread-safety was a key issue. Without
PyMOL's existing thread-safe architecture
the immersive extension would have been
vastly more complicated.
Being based on an embedded Python
interpreter, commands strings were easily
distributed across a cluster.
Some object selection schemes designed for
two-dimensional pointing devices do not
scale well for three dimensional pointing
devices.
Although PyMOL provided molecular
editing capabilities, these were not
designed to support the interactivity
necessary in an IVE.
Much work remains before the immersive PyMOL
will be fully capable of supporting rational drug
design. The ability to select molecules, bonds, and
atoms using a three-dimensional pointing device will
be critical to the success of the project. New data
structures will need to be added to PyMOL to
support this ability. Additionally, the performance of
PyMOL must be improved to reach the frame rates
necessary for interaction with large macromolecules.
Since PyMOL was not architected for rendering to
multiple windows, all OpenGL rendering must be
done in immediate mode. We are currently
investigating options for improving performance,
such as allowing display lists to be used in the
presence of multiple rendering contexts. Finally,
since PyMOL's internal GUIs are rendered using
OpenGL, we have begun investigating the
possibility of directly rendering them in the
immersive environment. Although we do not aim to
replicate all of PyMOL's functionality within the
IVE, this should improve the overall usability of the
immersive port.
ACKNOWLEDGEMENTS
This project was supported by a University of
Colorado Butcher Award and by equipment
donations from NVIDIA. We would like to thank
Geoffery Dorn, Gwen Pech, and Mick Coady of the
University of Colorado at Boulder, BP Center for
Visualization for their assistance, support and
advice. We are most grateful to the members of the
research groups who participated in the pilot study.
Professor Pardi was especially helpful in defining
the early stages of this project.
REFERENCES
Ai, Z. and Frohlich, T., 1998. Molecular Dynamics
Simulation in Virtual Environments. Computer
Graphics Forum. 17(3), 267-275.
Arns, L., Cook, D., Cruz-Neira, C., 1999. The benefits of
statistical visualization in an immersive virtual
environment. In Proceedings of IEEE Virtual Reality
1999. IEEE Press, 88-95.
Bowman, D.A., Kruijff, E., LaViola, J., Poupyrev, I.,
2005. 3D user Interfaces: Theory and Design.
Addison-Wesley.
DeLano, W.L., 2002. The PyMOL Molecular Graphics
System. DeLano Scientific, San Carlos, CA, USA.
http://www.pymol.org
Gruchalla, K., 2004. Immersive Well-Path Editing:
Investigating the added value of immersion. In
Proceedings of IEEE Virtual Reality 2004, IEEE
Press, 157-164.
Haase, H., Strassner, J., and Dai, F., 1996. VR techniques
for the investigation of molecule data. Computers &
Graphics, 20(2), 1996, 207-217.
Ihlenfeldt, W., 1997. Virtual Reality in Chemistry. Journal
of Molecular Modeling 3, 386-402.
Moshell, J.M., and Hughes, C.E., 2002. Virtual
environments as a tool for academic learning. In:
Stanney, K.M., (ed.) Handbook of Virtual
Environments. Lawrence Erlbaum Associates:
Mahwah, NJ. Chapter 45. pp 893-910.
Pausch, R., Proffitt, D., Williams, G., 1997. Quantifying
Immersion in Virtual Reality. Proceedings of the 24th
annual conference on computer graphics and
interactive techniques, 13-18.
Ranson, N., Farr, G., Roseman, A., Gowen, B., Fenton,
W., Horwich, A., Saibil, H., 2001. ATP-Bound States
of Groel Captured by Cyro-Electron Microscopy. Cell.
107. 869.
Swan, J., Gabbard, J., Hix, D., Schulman, R., and Kim, K.,
2003. A Comparative Study of User Performance in a
Map-Based Virtual Environment. Proceedings of
IEEE Virtual Reality 2003, IEEE Press, 259-266.
GRAPP 2007 - International Conference on Computer Graphics Theory and Applications
184
... The research groups had each intensively studied their chosen molecule using non-immersive visualization techniques-the desktop version of PyMOL, a popular open-source molecular visualization system (DeLano 2002)-for at least a year prior to conducting their research in the IVE. We ported this same tool to a stereoscopic, interactive IVE (Gruchalla, Marbach, & Dubin 2007) to provide some informal control in our study. ...
Article
Full-text available
The geometry of biomolecules dictates their function, but reasoning about that structure is difficult because of their 3D complexity and the range of scales involved. The wooden or plastic ball-and-stick models that are common in high-school chemistry labs help people rea- son about these issues when the molecules involved are small, but they are useless in the study of large biomolecules. Largely for this reason, 3D computer visualization tools have become essential in this field. However, these tools are limited by their interfaces. Tra- ditional graphics workstations project a D model onto 2D screen, and interaction with the D model is indi- rect, using 2D mouse or pointing device. Immersive vi- sualization is a potential solution to this: it allows a user to visualize a biomolecule in 3D and interact with it di- rectly in 3-space. This paper reports upon a pilot study about the effects of immersive visualization upon an ex- pert's reasoning about the qualitative structure of these molecules. We ported a standard visualization applica- tion (PyMOL) to a CAVE-like immersive virtual envi- ronment (IVE), then invited three separate biochemistry research groups—people who use PyMOL routinely on desktop computers—to examine their favorite molecule in the IVE. Within ninety minutes of immersive inves- tigation, each group reported a new discovery about the qualitative structure of that molecule. We believe that the immersive environment facilitated these discoveries by supporting and facilitating the natural spatial reason- ing abilities of its users. An immersive virtual environment is a combination of hard- ware and software that provides a psychophysical experi- ence of being surrounded by a computer-generated scene (see Figure 1). Immersive virtual environments provide users with an egocentric three-dimensional perspective: users are immersed in a virtual world, where they can ex- plore complex spatial systems by looking through them, walking around them, and viewing them from different per- spectives. Immersive environments may help people see and understand the structure of complex three-dimensional datasets; in contrast to more traditional graphics worksta- tions, these environments allow one to visualize data us- ing the well-practiced, non-concious analysis that automati- cally accompanies an embodied, egocentric visual perspec- tive. There are several studies that have investigated the added value of immersive environments (Pausch, Proffitt, & Williams 1997; Ruddle, Payne, & Jones 1999; Arns, Cruz- Neira, & Cook 1999; Swan et al. 2003; Gruchalla 2004; Schulze et al. 2005; Demiralp et al. 2006). However, the results of these studies are mixed and the issue is somewhat controversial. There are few studies that clearly demonstrate the effectiveness of immersive environments for real-world problems, and none that approach this issue from the stand- point of qualitative reasoning. Our study does so, and our results indicate that experts understand more about the ge- ometry of biomolecules if they use an immersive environ- ment than if they use the same visualization tools on a stan- dard desktop. Within ninety minutes of immersive inves- tigation, each of the three groups in our study reported a new discovery about the qualitative structure of an important biomolecule—molecules that these groups had been study- ing for years in with the same software visualization tool on desktop environments. Immersive visualization has long been proposed as a means to analyze the complex three-dimensional structure of biological molecules (Ihlenfeldt 1997), and it is used by numerous investigators in basic research and industrial set- tings. Qualitative spatial analysis of the structure of these molecules at a range of scales is essential, because their overall three-dimensional configuration dictates the atomic interactions that are the basis of their function. Understand- ing the geometry of the building blocks of a biomolecule, and their relationships, is key to many of the grand-challenge problems in biochemistry: the rational design of drugs that enhance or inhibit molecular activity, the understanding of how steps in embryonic development normally proceed or go wrong in the presence of genetic mutations of molecular structure, and so on. This paper documents a pilot study in which three sepa- rate groups of biochemists visualized and interacted with in- dividual biological molecules in a CAVE-like IVE. In each case, the immersive working session yielded new insights that the same biochemists had not previously achieved with their extensive use of the same visualization package on standard desktop computer displays. Large-scale spatial features, such as pockets and ridges, were readily identi-
Conference Paper
Full-text available
We have created an immersive application for statistical graphics and have investigated what benefits it offers over more traditional data analysis tools. We present a description of both the traditional data analysis tools and our virtual environment, and results of an experiment designed to determine if an immersive environment based on the XGobi desktop system provides advantages over XGobi for analysis of high-dimensional statistical data. The experiment included two aspects of each environment: three structure detection (visualization) tasks and one ease of interaction task. The subjects were given these tasks in both the C2 virtual environment and a workstation running XGobi. The experiment results showed an improvement in participants' ability to perform structure detection tasks in the C2 to their performance in the desktop environment. However, participants were more comfortable with the interaction tools in the desktop system
Article
Full-text available
Virtual Reality (VR) has generated much excitement but little formal proof that it is useful. Because VR interfaces are difficult and expensive to build, the computer graphics community needs to be able to predict which applications will benefit from VR. In this paper, we show that users with a VR interface complete a search task faster than users with a stationary monitor and a hand-based input device. We placed users in the center of the virtual room shown in Figure 1 and told them to look for camouflaged targets. VR users did not do significantly better than desktop users. However, when asked to search the room and conclude if a target existed, VR users were substantially better at determining when they had searched the entire room. Desktop users took 41% more time, re-examining areas they had already searched. We also found a positive transfer of training from VR to stationary displays and a negative transfer of training from stationary displays to VR.
Article
Full-text available
The chaperonin GroEL drives its protein-folding cycle by cooperatively binding ATP to one of its two rings, priming that ring to become folding-active upon GroES binding, while simultaneously discharging the previous folding chamber from the opposite ring. The GroEL-ATP structure, determined by cryo-EM and atomic structure fitting, shows that the intermediate domains rotate downward, switching their intersubunit salt bridge contacts from substrate binding to ATP binding domains. These observations, together with the effects of ATP binding to a GroEL-GroES-ADP complex, suggest structural models for the ATP-induced reduction in affinity for polypeptide and for cooperativity. The model for cooperativity, based on switching of intersubunit salt bridge interactions around the GroEL ring, may provide general insight into cooperativity in other ring complexes and molecular machines.
Conference Paper
Full-text available
The benefits of immersive visualization are primarily anecdotal; there have been few controlled user studies that have attempted to quantify the added value of immersion for problems requiring the manipulation of virtual objects. This research quantifies the added value of immersion for a real-world industrial problem: oil well-path planning. An experiment was designed to compare human performance between an immersive virtual environment (IVE) and a desktop workstation. This work presents the results of sixteen participants who planned the paths of four oil wells. Each participant planned two well-paths on a desktop workstation with a stereoscopic display and two well-paths in a CAVE™-like IVE. Fifteen of the participants completed well-path editing tasks faster in the IVE than in the desktop environment. The increased speed was complimented by a statistically significant increase in correct solutions in the IVE. The results suggest that an IVE allows for faster and more accurate problem solving in a complex three-dimensional domain.
Article
A virtual environment for interactive molecular dynamics simulation has been designed and implemented at the Fraunhofer Institute for Computer Graphics. Different kinds of virtual reality devices are wed in the environment for immersive display and interaction with the molecular system. A parallel computer is used to simulate the physical and chemical properties of the molecular system dynamically. A high-speed network exchanges data between the simulation program and the modeling program. Molecular dynamics simulation virtual environment provides scientists with a powerful fool to study immersively the world of molecules. The dynamic interaction between an AIDS antiviral drug and reverse transcriptase enzyme is illustrated in the paper.
Article
Thank you for your excellent review. Especially it was a pleasant suprise to see that the article not only mentioned VRML (which about every article within the area does) but also clearly states that “VRML is not Virtual Reality”. I stronly support this statement. VRML is a language which describes (in version 2.0 animated) 3D scenes. With its hyperlink capabilities (similar to HTML) it is a great tool for building Web interfaces to 3D databases. However, it is not suitable for manipulating molecules in virtual reality. E.g.: it is not possible to grab a bond of a molecule and to turn it, in order to change a torsions angle. Such things are simply beyond the scope of VRML. Maybe someday Java3D applications filling this gap will appear. Some more infos and-I fear-errata: We, my co-authors and me, are cited in the chapter “Immersive VR Molecular Modeling”, 12th paragraph, [53]. I’m glad to announce that this article is now available online at: http://tebio3.biologie.uni-stuttgart.de:8080/himm/public/himm_gcb96.html However, we are not the “Biology Department of the University of Stuttgart”, but the Institute of Technical Biochemistry of the chemistry department (of the University of Stuttgart). Our institute’s home page and the homepage of the project cited within the article can be found at: http://tebio3.biologie.uni-stuttgart.de:8080/ http://tebio3.biologie.uni-stuttgart.de:8080/himm/index.html
Article
A virtual environment for interactive molecular dynamics simulation has been designed and implemented at the Fraunhofer Institute for Computer Graphics. Different kinds of virtual reality devices are used in the environment for immersive display and interaction with the molecular system. A parallel computer is used to simulate the physical and chemical properties of the molecular system dynamically. A high-speed network exchanges data between the simulation program and the modeling program. Molecular dynamics simulation virtual environment provides scientists with a powerful tool to study immersively the world of molecules. The dynamic interaction between an AIDS antiviral drug and reverse transcriptase enzyme is illustrated in the paper.
Article
With the advent of ever more powerful computer graphics hardware and visualization packages, new graphical methods of scientific visualization and data exploration are beginning to be explored. This includes fully immersive environments where the chemist is surrounded by data objects in 3D space. New models of animation and interactive manipulation of graphical entities are developed to help the chemist in gaining insight from or navigating in large amounts of data. This review discusses some representative approaches and systems which demonstrate where chemistry-related visualization and data management is headed.
Article
This paper describes a system for investigating molecule data. By means of combined Virtual Environment and Scientific Visualization techniques it allows for immersive exploration of individual molecules as well as for investigation of docking behaviour between two molecules. Special emphasis is put on good interaction (simultaneous operation of two input devices with 6 degrees of freedom each, virtual menus), on fast rendering of large molecules in high quality (level of detail, fast rendering of spheres, utilization of multiple rendering pipelines, sorted triangle strips for transparent surfaces), and on other perceptual issues (e.g. Judgement of position and size of molecules by shadows). The techniques which were realized for this system may also be used in other applications like assembly tasks, virtual material testing, etc.