VisIt

VisIt

Infobox Software
name = VisIt



caption =
author =
developer = Lawrence Livermore National Laboratory
released =
latest release version = 1.10
latest release date = September 2008
operating system = Unix/Linux, Mac OS X, Microsoft Windows
genre = Scientific visualization, Interactive visualization
license = BSD
website = [http://visit.llnl.gov/ visit.llnl.gov]

VisIt is an open source interactive parallel visualization and graphical analysis tool for viewing scientific data. It can be used to visualize scalar and vector fields defined on 2D and 3D structured and unstructured meshes. VisIt was designed to handle very large data set sizes in the terascale range and yet can also handle small data sets in the kilobyte range [http://visit.llnl.gov/ Official homepage] .

History

VisIt was developed by the Department of Energy (DOE) Advanced Simulation and Computing Initiative (ASCI) to visualize and analyze the results of terascale simulations. It was developed as a framework for adding custom capabilities and rapidly deploying new visualization technologies. After an initial prototype effort, work on VisIt began in the summer of 2000, and the initial version of VisIt was released in the fall of 2002. Although the primary driving force behind the development of VisIt was for visualizing extremely large data, it is also well suited for visualizing data from typical simulations on desktop systems. Because of its applicability beyond visualizing terascale data, VisIt is made freely available. In 2005 it won an R&D 100 award. [ [http://www.rdmag.com/rd100ach/RD100SearchResults.aspx?strProduct=visit&Type=P R&D 100 Awards Archives ] ] [ [https://publicaffairs.llnl.gov/news/news_releases/2005/NR-05-07-01.html Public Affairs Office: Lab Wins Four R&D 100 Awards ] ] .

VisIt is now supported by the DOE's SciDAC (Scientific Discovery Through Advanced Computing) program to assist with analysis and visualization of the large datasets generated by open scientific computing. As such, it is now developed in part by many organizations, including Oak Ridge National Laboratory, Lawrence Berkeley National Laboratory, and the University of California, Davis, among others. Since VisIt is open source and released under the BSD license, many others have made contributions as well.

Summary

VisIt is an open source, turnkey application for large scale simulated and experimental data sets. Its charter goes beyond pretty pictures; the application is an infrastructure for parallelized, general post-processing of extremely massive data sets. Target use cases include data exploration, comparative analysis, visual debugging, quantitative analysis, and presentation graphics.

The VisIt product delivers the efforts of many software developers in a single package. First, VisIt leverages several third party libraries: the Qt widget library for its user interface, the Python programming language for a command line interpreter, and the Visualization ToolKit (VTK) library for its data model and many of its visualization algorithms. On top of that, an additional fifty man-years worth of effort have been devoted to the development of VisIt itself. The VisIt-specific effort has largely been focused on parallelization for large data sets, user interface, implementing custom data analysis routines, addressing non-standard data models (such as
adaptive mesh refinement (AMR) and mixed materials zones), and creating a robust overall product. VisIt consists over one and a half million lines of code, and its third party libraries have an additional million lines of code. It has been ported to Windows, Mac, and many Unix variants, including AIX,
IRIX, Solaris, Tru64, and Linux, including ports for SGI's Altix, Cray's XT4, and many commodity clusters.

The basic design is a client-server model, where the server is parallelized. The client-server aspect allows for effective visualization in a remote setting, while the parallelization of the server allows for the largest data sets to be processed reasonably interactively. The tool has been used to visualize many large data sets, including a twenty seven billion data point structured grid, a one billion point particle simulation, and
curvilinear, unstructured, and AMR meshes with hundreds of millions to billions of elements. The most common form of the server is as a stand alone process that reads in data from files. However, an alternate form exists where a simulation code can link in "lib-VisIt" and become itself the server, allowing for in situ visualization and analysis.

VisIt follows a data flow network paradigm where interoperable modules are connected to perform custom analysis. The modules come from VisIt's five primary user interface abstractions and there are many examples of each. There are twenty one ``plots" (ways to render data), forty-two ``operators" (ways to manipulate data), eighty-five file format readers, over fifty ``queries" (ways to extract quantitative information), and over one hundred ``expressions" (ways to create derived quantities). Further, a
plugin capability allows for dynamic incorporation of new plot, operator, and database modules. These plugins can be partially code generated, even including automatic generation of Qt and Python user interfaces.

The VisIt project originated at Lawrence Livermore National Laboratory as part of the Advanced Simulation and Computing (ASC) program of the Department of Energy's (DOE) National Nuclear Security Agency, but it has gone on to become a distributed project being developed by several groups. Major hubs for the project come from:
* VACET [ [http://www.vacet.org/ The Visualization and Analytics Center for Enabling Technologies (VACET) ] ] , a center for enabling technologies from DOE's SciDAC (Scientific Discovery through Advanced Computing) program from its Office of Science,
* from ASC, and
* from GNEP (the Global Nuclear Energy Partnership from the DOE's Office of Nuclear Energy). The project has twenty developers from many organizations and universities, including five DOE Laboratories. VisIt received an R&D 100 award in 2005 and is downloaded approximately twenty five thousand times per year.

Features

* Has rich feature set for scalar, vector, and tensor field visualization. VisIt handles 2D and 3D data equally well. VisIt also has the ability to animate data, allowing users to see the time evolution of their data.

* Provides qualitative and quantitative visualization and analysis. VisIt provides support for derived fields, which allow new fields to be calculated using existing fields. For example, if a dataset contains a velocity field, it is possible to define a new field that is the velocity magnitude. It also supports a generalized query interface, which allows you to query derived quantities such as volume or surface area.

* Supports multiple mesh types. VisIt provides support for a wide range of computational meshes, including two- and three-dimensional point, rectilinear, curvilinear, and unstructured meshes. In addition, VisIt supports structured AMR meshes and CSG meshes.

* Powerful, full-featured graphical user interface. VisIt’s graphical user interface allows novice users to quickly get started visualizing their data, as well as allowing power users access to advanced features. It automatically creates time-based animations from data sets that contain multiple time steps. In addition, it also has a keyframe animation capability that allows users to create sophisticated animations. VisIt allows users to pan, zoom, and rotate objects interactively using the mouse. It also gives users the ability to interactively size and position geometric objects such as planes and spheres.

* Parallel and distributed architecture. VisIt employs a distributed and parallel architecture in order to handle extremely large data sets interactively. VisIt’s rendering and data processing capabilities are split into "viewer" and "engine" components that may be distributed across multiple machines:
** "Viewer" is responsible for rendering and is typically run on a local desktop or visualization server so that it can leverage the extremely powerful graphics cards.
** "Engine" is responsible for the bulk of the data processing and input/output and is typically run on a remote machine where the data is located. This eliminates the need move the data and makes high-end compute and I/O resources available to it. The engine can be run serially on a single processor or in parallel on thousands of processors.

* Interfaces with C++, Python, and Java. The C++ and Java interfaces make it possible to provide alternate user interfaces for VisIt or allow existing C++ or Java applications to add visualization support. The Python scripting interface gives users the ability to batch process data using a scripting language. This feature can be used to create extremely sophisticated animations or implement regression suite.

* Extensible with dynamically loaded plug-ins. VisIt achieves extensibility through the use of dynamically loaded plugins. All of VisIt’s "plots", "operators", and "database readers" are implemented as plugins and are loaded at run-time from the plugin directory. New plugins can be added simply by installing them in this directory. VisIt comes with a graphical plugin creation tool, which greatly simplifies the process of creating new plugins.

References

External links

* [http://visitusers.org VisIt user community web site with wiki, forum, etc.]
* [http://visit.llnl.gov/gallery.html Examples of visualizations on the official homepage.]


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?
Synonyms:

Look at other dictionaries:

  • visit — n Visit, visitation, call are comparable when they mean a coming to stay with another, usually for a brief time, as a courtesy, an act of friendship, or a business or professional diity. Visit applies not only to such a stay with another {pay a… …   New Dictionary of Synonyms

  • Visit — Vis it, n. [Cf. F. visite. See {Visit}, v. t., and cf. {Visite}.] 1. The act of visiting, or going to see a person or thing; a brief stay of business, friendship, ceremony, curiosity, or the like, usually longer than a call; as, a visit of… …   The Collaborative International Dictionary of English

  • visit — [viz′it] vt. [ME visiten < OFr visiter < L visitare, freq. < visere, to go to see < visus: see VISION] 1. to go or come to see (someone) out of friendship or for social reasons 2. to stay with as a guest for a time 3. to go or come to …   English World dictionary

  • Visit — Vis it, v. t. [imp. & p. p. {Visited}; p. pr. & vb. n. {Visiting}.] [F. visiter, L. visitare, fr. visere to go to see, to visit, fr. videre, visum to see. See {Vision.}] [1913 Webster] 1. To go or come to see, as for the purpose of friendship,… …   The Collaborative International Dictionary of English

  • visit — [n] social call upon another appointment, call, evening, holiday, interview, sojourn, stay, stop, stopover, talk, tarriance, vacation, visitation, weekend; concepts 226,227 visit [v1] be a guest of call, call on, chat, come around, come by,… …   New thesaurus

  • visit on — ˈvisit on ˈvisit upon [transitive] usually passive [present tense I/you/we/they visit on he/she/it visits on present participle visiting on past tense …   Useful english dictionary

  • Visit — Vis it, v. i. To make a visit or visits; to maintain visiting relations; to practice calling on others. [1913 Webster] …   The Collaborative International Dictionary of English

  • Visit — (engl. „Besuch“) steht für: ein Visitenkartenporträt einen Internet Seitenabruf, siehe Unique Visit Diese Seite ist eine Begriffsklärung zur Unterscheidung mehrerer mit demselben Wort bezeichneter Begrif …   Deutsch Wikipedia

  • visit — (v.) early 13c., come to (a person) to comfort or benefit, from O.Fr. visiter, from L. visitare to go to see, come to inspect, frequentative of visere behold, visit (a person or place), from pp. stem of videre to see, notice, observe (see VISION… …   Etymology dictionary

  • visit — To visit with someone, i.e. pay them a brief call, is now regarded as an Americanism although it was current in Britain in the 19c, occurring for example in writings of Ruskin and George Eliot (Middlemarch, 1872) …   Modern English usage

  • visit — index appointment (meeting), attend (be present at), inhabit Burton s Legal Thesaurus. William C. Burton. 2006 …   Law dictionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”