bookmarks  117

  •  

    This library is written in Modelica. The purpose of this library is to calculate fluid properties from an equation of state (EoS), directly within Modelica and not from an external dll. It supports EoS of the form f=f(T,d) meaning Helmholtz energy as a funtion of temperature and density. In addition to all state properties, this library calculates viscosity, thermal conductivity and surface tension. So far, the fluids n-Butane, R134a and Isobutane are implemented, but not fully validated. The next fluids to be implemented are probably isopentane, propane, ammonia, CO2 and other possible working fluids for Organic-Rankine-Cycles.
    12 years ago by @thorade
     
     
  •  

    Scilab ist ein freies Software-Paket für Anwendungen aus der numerischen Mathematik, das seit 1990 als Alternative zu MATLAB entwickelt wird. Die Funktionalität und Syntax von Scilab ist zu weiten Teilen mit der von MATLAB identisch und es gibt Konverter von MATLAB nach Scilab.
    15 years ago by @thorade
     
     
  •  

    JabRef is an open source bibliography reference manager. The native file format used by JabRef is BibTeX, the standard LaTeX bibliography format.
    15 years ago by @thorade
     
     
  •  

    Zotero is a free, easy-to-use Firefox extension to help you collect, manage, and cite your research sources. It lives right where you do your work — in the web browser itself.
    15 years ago by @thorade
     
     
  •  

    refbase is a web-based, platform-independent, multi-user interface for managing scientific literature, references and citations
    15 years ago by @thorade
     
     
  •  

    Der FOSSGIS e.V. ist ein eingetragener und gemeinnütziger Verein. Unser Ziel ist die Förderung und Verbreitung freier Geographischer Informationssysteme (GIS) im Sinne Freier Software und Freier Geodaten.
    15 years ago by @thorade
     
     
  •  

    Lightning brings the Sunbird calendar to the popular email client, Mozilla Thunderbird. Since it's an extension, Lightning is tightly integrated with Thunderbird, allowing it to easily perform email-related calendaring tasks.
    15 years ago by @thorade
     
     
  •  

    Xara Xtreme for Linux is a powerful, general purpose graphics program for Unix platforms including Linux, FreeBSD and (in development) OS-X. Formely known as Xara LX, it is based on Xara Xtreme for Windows, which is the fastest graphics program available, period. The Xara Xtreme source code was made available open-source in early 2006, and is being ported to Linux. This process is almost complete and Xara Xtreme for Linux is available for download now. Xara X has been a commercial shipping Windows product for 10 years (and non-Windows versions go back before that). It's a modern, object orientated design that's highly stable, and has gained hundreds of thousands of users. Our users and customers have produced artwork that is as impressive, if not more impressive, than that produced from any other vector graphics program.
    15 years ago by @thorade
     
     
  •  

    This is the MiKTeX project page. MiKTeX is a typesetting system for the Windows operating system. The distribution includes TeX, pdfTeX and XeTeX.
    15 years ago by @thorade
     
     
  •  

    Diese Erweiterung erlaubt die Anpassung des Druckbildes von Mozilla Calendar an die eigenen Vorstellungen. So kann z. B. die Schriftart und die Schriftgröße geändert werden. Außerdem werden nunmehr die Farben für die Kategorien tatsächlich mit ausgedruckt, und die Berechnung des Endes der Monatsübersicht funktioniert. Neu ist auch die Möglichkeit, durch die TimeSheet-Ansicht einen Ausdruck zu erzeugen, der der Wochenansicht auf dem Bildschirm ähnelt.
    15 years ago by @thorade
     
     
  •  

    ParaView is an open-source, multi-platform data analysis and visualization application. ParaView users can quickly build visualizations to analyze their data using qualitative and quantitative techniques. The data exploration can be done interactively in 3D or programmatically using ParaView's batch processing capabilities. ParaView was developed to analyze extremely large datasets using distributed memory computing resources. It can be run on supercomputers to analyze datasets of terascale as well as on laptops for smaller data.
    14 years ago by @thorade
     
     
  •  

    Open Source Tool for Graphical UML2 Modeling, based on Eclipse
    14 years ago by @thorade
     
     
  •  

    Subversion is a full-featured version control system originally designed to be a better CVS. Subversion has since expanded beyond its original goal of replacing CVS, but its basic model, design, and interface remain heavily influenced by that goal. Even today, Subversion should still feel very familiar to CVS users. The following list of features is presented with the assumption that you, the reader, have a basic understanding of what version control is and how version control systems work in general. If there's a feature that you're looking for that is not represented in this list, feel free to ask about it on our project mailing lists — perhaps we just didn't think to list it here. If Subversion truly lacks a feature you need, your feedback will help us to improve Subversion, and in the meantime, perhaps we can help you meet your need with the features that Subversion does have. * Most CVS features. ¶ CVS is a relatively basic version control system. For the most part, Subversion has matched or exceeded CVS's feature set where those features continue to apply in Subversion's particular design. * Directories are versioned. ¶ Subversion versions directories as first-class objects, just like files. * Copying, deleting, and renaming are versioned. ¶ Copying and deleting are versioned operations. Renaming is also a versioned operation, albeit with some quirks. * Free-form versioned metadata ("properties"). ¶ Subversion allows arbitrary metadata ("properties") to be attached to any file or directory. These properties are key/value pairs, and are versioned just like the objects they are attached to. Subversion also provides a way to attach arbitrary key/value properties to a revision (that is, to a committed changeset). These properties are not versioned, since they attach metadata to the version-space itself, but they can be changed at any time. * Atomic commits. ¶ No part of a commit takes effect until the entire commit has succeeded. Revision numbers are per-commit, not per-file, and commit's log message is attached to its revision, not stored redundantly in all the files affected by that commit. * Branching and tagging are cheap (constant time) operations. ¶ There is no reason for these operations to be expensive, so they aren't. Branches and tags are both implemented in terms of an underlying "copy" operation. A copy takes up a small, constant amount of space. Any copy is a tag; and if you start committing on a copy, then it's a branch as well. (This does away with CVS's "branch-point tagging", by removing the distinction that made branch-point tags necessary in the first place.) * Merge tracking. ¶ Subversion 1.5 introduces merge tracking: automated assistance with managing the flow of changes between lines of development, and with the merging of branches back into their sources. The 1.5 release of merge tracking has basic support for common scenarios; we will be extending the feature in upcoming releases. * File locking. ¶ Subversion supports (but does not require) locking files so that users can be warned when multiple people try to edit the same file. A file can be marked as requiring a lock before being edited, in which case Subversion will present the file in read-only mode until a lock is acquired. * Symbolic links can be versioned. ¶ Unix users can place symbolic links under version control. The links are recreated in Unix working copies, but not in win32 working copies. * Executable flag is preserved. ¶ Subversion notices when a file is executable, and if that file is placed into version control, its executability will be preserved when it it checked out to other locations. (The mechanism Subversion uses to remember this is simply versioned properties, so executability can be manually edited when necessary, even from a client that does not acknowledge the file's executability, e.g., when having the wrong extension under Microsoft Windows). * Apache network server option, with WebDAV/DeltaV protocol. ¶ Subversion can use the HTTP-based WebDAV/DeltaV protocol for network communications, and the Apache web server to provide repository-side network service. This gives Subversion an advantage over CVS in interoperability, and allows certain features (such as authentication, wire compression) to be provided in a way that is already familiar to administrators * Standalone server option (svnserve). ¶ Subversion offers a standalone server option using a custom protocol, since not everyone wants to run an Apache HTTPD server. The standalone server can run as an inetd service or in daemon mode, and offers the same level of authentication and authorization functionality as the HTTPD-based server. The standalone server can also be tunnelled over ssh. * Parseable output. ¶ All output of the Subversion command-line client is carefully designed to be both human readable and automatically parseable; scriptability is a high priority. * Localized messages. ¶ Subversion uses gettext() to display translated error, informational, and help messages, based on current locale settings. * Interactive conflict resolution. ¶ The Subversion command-line client (svn) offers various ways to resolve conflicting changes, include interactive resolution prompting. This mechanism is also made available via APIs, so that other clients (such as graphical clients) can offer interactive conflict resolution appropriate to their interfaces. * Repository read-only mirroring. ¶ Subversion supplies a utility, svnsync for synchronizing (via either push or pull) a read-only slave repository with a master repository. * Write-through proxy over WebDAV. ¶ Subversion 1.5 introduces a write-through proxy feature that allows slave repositories (see read-only mirroring) to handle all read operations themselves while passing write operations through to the master. This feature is only available with the Apache HTTPD (WebDAV) server option. * Natively client/server, layered library design with clean APIs. ¶ Subversion is designed to be client/server from the beginning; thus avoiding some of the maintenance problems which have plagued CVS. The code is structured as a set of modules with well-defined interfaces, designed to be called by other applications. * Binary files handled efficiently. ¶ Subversion is equally efficient on binary as on text files, because it uses a binary diffing algorithm to transmit and store successive revisions. * Costs are proportional to change size, not data size. ¶ In general, the time required for a Subversion operation is proportional to the size of the changes resulting from that operation, not to the absolute size of the project in which the changes are taking place. * Bindings to programming languages. ¶ The Subversion APIs come with bindings for many programming languages, such as Python, Perl, Java, and Ruby. (Subversion itself is written in C.) * Changelists. ¶ Subversion 1.5 introduces changelists, which allows a user to put modified files into named groups on the client side, and then commit by specifying a particular group. For those who work on logically separate changesets simultaneously in the same directory tree, changelists can help keep things organized.
    14 years ago by @thorade
     
     
  •  

    Kile is a user friendly TeX/LaTeX editor for the KDE desktop environment. KDE is available for many architectures such as PC, Mac, and BSD. The main features are: * Compile, convert and view your document with one click. * Auto-completion of (La)TeX commands * Templates and wizards make starting a new document very little work. * Easy insertion of many standard tags and symbols and the option to define (an arbitrary number of) user defined tags. * Inverse and forward search: click in the DVI viewer and jump to the corresponding LaTeX line in the editor, or jump from the editor to the corresponding page in the viewer. * Finding chapter or sections is very easy, Kile constructs a list of all the chapter etc. in your document. You can use the list to jump to the corresponding section. * Collect documents that belong together into a project. * Easy insertion of citations and references when using projects. * Flexible and smart build system to compile your LaTeX documents. * QuickPreview, preview a selected part of your document. * Easy access to various help sources. * Advanced editing commands.
    14 years ago by @thorade
     
     
  •  

    digiKam is an advanced digital photo management application for KDE, which makes importing and organizing digital photos a "snap". The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. Tired of the folder constraints? Don’t worry, digiKam also provides tagging. You tag your images which can be spread out across multiple folders, and digiKam provides fast and intuitive ways to browse these tagged images. You can also add comments to your images. digiKam makes use of a fast and robust database to store these meta-informations which makes adding and editing of comments and tags very reliable. digiKam makes use of KIPI plugins for lots of added functionality. KIPI (KDE Image Plugin Interface) is an initiative to create a common plugin infrastructure for digiKam, KPhotoAlbum, Showimg, and GwenView. Its aim is to allow development of image plugins which can be shared among KDE graphical applications. An easy-to-use interface is provided that enables you to connect to your camera and preview, download and/or delete your images. Basic auto-transformations can be deployed on the fly during image downloading. Another tool, which most artists and photographers will be familiar with, is a Light Table. This tool assists artists and photographers with reviewing their work ensuring the highest quality only. A classical light table will show the artist the place on the images to touch up. Well in digiKam, the light table function provides the user a similar experience. You can import a photo, drag it onto the light table, and touch up only the areas that need it. The digiKam Image Editor has its own plugin subsystem with some common tools e.g. red eye correction or Gamma correction. Additional plugins are provided with the main application to process advanced corrections on image like color management, noise reduction, or special effects. digiKam Image Editor supports all camera RAW file formats, 16 bits color depth, Exif/Makernote/IPTC/GPS/XMP metadata, Color management, tagging/rating/comments pictures, etc. A stand-alone image editor version named ShowFoto is also available. It runs without digiKam images database support, but provides all Image Editor functions.
    14 years ago by @thorade
     
     
  •  

    KmPlot is a mathematical function plotter for the KDE-Desktop. It has built in a powerfull parser. You can plot different functions simultaneously and combine their function terms to build new functions. KmPlot supports functions with parameters and functions in polar coordinates. Several grid modes are possible. Plots may be printed with high precision in correct scale.
    14 years ago by @thorade
     
     
  •  

    SciDAVis is a free application for Scientific Data Analysis and Visualization. SciDAVis is a free interactive application aimed at data analysis and publication-quality plotting. It combines a shallow learning curve and an intuitive, easy-to-use graphical user interface with powerful features such as scriptability and extensibility. SciDAVis is similar in its field of application to proprietary Windows applications like Origin and SigmaPlot as well as free applications like QtiPlot, Labplot and Gnuplot. What sets SciDAVis apart from the above is its emphasis on providing a friendly and open environment (in the software as well as the project) for new and experienced users alike. Particularly, this means that we will try to provide good documentation on all levels, ranging from user’s manual over tutorials down to and including documentation of the internal APIs We encourage users to share their experiences on our forums and on our mailing lists.
    14 years ago by @thorade
     
     
  •  

    Free browser add-on from Mozilla Labs that keeps your bookmarks, saved passwords, browsing history and open tabs backed up and synchronized, with end-to-end encryption for your privacy and security. Synchronize Your Firefox Experience Across Desktop and Mobile The Weave Browser Sync add-on for Firefox is now generally available to seamlessly bridge your desktop and mobile Firefox experiences. Using this free browser add-on from Mozilla Labs, you can securely access all of your personal data across all of your supported devices, making your Web experience instantly more personal and useful. Weave Browser Sync backs up and synchronizes your bookmarks, saved passwords, browsing history and open browser tabs. And all of your data is encrypted end-to-end to ensure your privacy. Future releases of Weave Browser Sync will add support for backing up and synchronizing your browser add-ons, search plugins and other customizations and ultimately everything that makes your Firefox and Web experience personal.
    14 years ago by @thorade
     
     
  •  

    LyX is a document processor that encourages an approach to writing based on the structure of your documents (WYSIWYM) and not simply their appearance (WYSIWYG). LyX combines the power and flexibility of TeX/LaTeX with the ease of use of a graphical interface. This results in world-class support for creation of mathematical content (via a fully integrated equation editor) and structured documents like academic articles, theses, and books. In addition, staples of scientific authoring such as reference list and index creation come standard. But you can also use LyX to create a letter or a novel or a theatre play or film script. A broad array of ready, well-designed document layouts are built in. LyX is for people who want their writing to look great, right out of the box. No more endless tinkering with formatting details, “finger painting” font attributes or futzing around with page boundaries. You just write. On screen, LyX looks like any word processor; its printed output — or richly cross-referenced PDF, just as readily produced — looks like nothing else.
    14 years ago by @thorade
     
     
  •  

    Cantera is a suite of object-oriented software tools for problems involving chemical kinetics, thermodynamics, and/or transport processes. It can be used from MATLAB, Python, C++, or Fortran.
    14 years ago by @thorade
     
     

publications  4  

  • ⟨⟨
  • 1
  • ⟩⟩