Main > Free Download Search >

Free chemistry classes online software for linux

chemistry classes online

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3582
Gnome Chemistry Utils 0.9.0

Gnome Chemistry Utils 0.9.0


Gnome Chemistry Utils provide C++ classes and Gtk+-2 widgets related to chemistry. more>>
Gnome Chemistry Utils software provides C++ classes and Gtk+-2 widgets related to chemistry. They are used in both Gnome Crystal and GChemPaint.

To compile and use the Gnome Chemistry Utils, you need libglade-2, and GtkGLExt, and their own dependencies. Everything except GtkGLExt is available from the Gnome repository or one of its mirrors.

The GtkChem3DViewer widget also needs Gnome-vfs and OpenBabel to be built.

GChemistry Utils are distributed under the LGPL license.

Gnome Chemistry Utils are in an early development stage.

Three widgets:

- a periodic table,
- a crystal structure viewer,
- a 3D molecular structure viewer.

The last widget is also accesible as a Bonobo control.

The Gnome Chemistry Utils are the basis for the development of both GChemPaint and Gnome Crystal

<<less
Download (1.6MB)
Added: 2007-06-28 License: GPL (GNU General Public License) Price:
848 downloads
Chemistry::SQL 0.01

Chemistry::SQL 0.01


Chemistry::SQL is an access database functions module. more>>
Chemistry::SQL is an access database functions module.

SYNOPSIS

use strict;
use Chemistry::SQL;
use Chemistry::Artificial::SQL;

my $db_name = $ARGV[0];
my $file = $ARGV[1];

my $db1 = Chemistry::SQL::new(db_host=>"127.0.0.1",db_user=>"root",db_port=>"3306",db_pwd=>"",
db_name=>$db_name,db_driver=>"mysql");
if ($db1->db_exist)
{ $db1->connect_db;
$db1->del_tables;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
else
{
$db1->create_db;
$db1->connect_db;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
# Reaction Insertion

my $qart = Chemistry::Artificial::SQL::new($db1);
my $qr =$qart->q_reaccion(C=CC=C.C=C>>C1=CCCCC1,smiles);
$db1->reactionsert($qr,"","0");

This package provides the necessary functions to interact with the database. The methods implemented in this module are oriented to give users control of the database without knowing how to use SQL queries.

<<less
Download (0.014MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1185 downloads
Chemistry::Mol 0.36

Chemistry::Mol 0.36


Chemistry::Mol is a molecule object toolkit. more>>
Chemistry::Mol is a molecule object toolkit.

SYNOPSIS

use Chemistry::Mol;

$mol = Chemistry::Mol->new(id => "mol_id", name => "my molecule");
$c = $mol->new_atom(symbol => "C", coords => [0,0,0]);
$o = $mol->new_atom(symbol => "O", coords => [0,0,1.23]);
$mol->new_bond(atoms => [$c, $o], order => 3);

print $mol->print;

This package, along with Chemistry::Atom and Chemistry::Bond, includes basic objects and methods to describe molecules.
The core methods try not to enforce a particular convention. This means that only a minimal set of attributes is provided by default, and some attributes have very loosely defined meaning.

This is because each program and file type has different idea of what each concept (such as bond and atom type) means. Bonds are defined as a list of atoms (typically two) with an arbitrary type. Atoms are defined by a symbol and a Z, and may have 3D and internal coordinates (2D coming soon).

<<less
Download (0.042MB)
Added: 2007-08-15 License: Perl Artistic License Price:
803 downloads
Network Chemistry RogueScanner 2.5.0

Network Chemistry RogueScanner 2.5.0


RogueScanner is an open-source vulnerability management tool. more>>
RogueScanner project is an open-source vulnerability management tool that is used to gain greater network visibility to enable you to quickly identify and remove rogue wireless devices that may provide a back door to access your critical data and infrastructure.
Considering that rogue access points and peers represent a major threat to data integrity, RogueScanner is a valuable tool that you can start using today at no cost.
More than 300 companies manufacture access points, and there are more than 10,000 different models of network infrastructure.
Companies thus face a major challenge in maintaining a system to track and identify all potential rogue wireless devices and in continually scanning the network to identify them. To address this challenge, Network Chemistry has made an open-source product available to help organizations begin to immediately scan their networks.
RogueScanner is available for use at no charge by organizations looking for a tool focused on device identification and rogue detection. RogueScanner leverages the Collaborative Device Classification system to automatically lookup and identify the device type and its identity in real time.
Enhancements:
- Many scanning and classification improvements.
- Support has been added for parsing routes under from IOS CLI.
- Support has been added for dumping Cisco device CDP cache via both SNMP and CLI (IOS and CatOS).
- Support has been added for sniffing CDP broadcasts off the wire.
- CDP information is now submitted to the classification server and used for classification.
- FTP (21/TCP) has been added to the list of ports that are probed if open.
<<less
Download (1.5MB)
Added: 2007-05-01 License: GPL (GNU General Public License) Price:
919 downloads
Perl6::Classes 0.22

Perl6::Classes 0.22


Perl6::Classes project contains first class classes in Perl 5. more>>
Perl6::Classes project contains first class classes in Perl 5.

SYNOPSIS

use Perl6::Classes;

class Composer {
submethod BUILD { print "Giving birth to a new composern" }
method compose { print "Writing some music...n" }
}

class ClassicalComposer is Composer {
method compose { print "Writing some muzak...n" }
}

class ModernComposer is Composer {
submethod BUILD($) { $.length = shift }
method compose() { print((map { int rand 10 } 1..$.length), "n") }
has $.length;
}

my $beethoven = new ClassicalComposer;
my $barber = new ModernComposer 4;
my $mahler = ModernComposer->new(400);

$beethoven->compose; # Writing some muzak...
$barber->compose # 7214
compose $mahler; # 89275869347968374698756....

Perl6::Classes allows the creation of (somewhat) Perl 6-style classes in Perl 5. The following features are currently supported:

subs, methods, and submethods
And their respective scoping rules.

Attributes
Which are available through the has keyword, and look like $.this.

Inheritance
Both single and multiple inheritance are available through the is keyword.

Signatures
Signatures on methods, subs, and submethods are supported, but just the Perl 5 kind.

Data hiding
Using the public, protected, and private traits, you can enforce (run-time) data hiding. This is not supported on attributes, which are always private.

Anonymous classes
That respect closures. You can now nest them inside methods of other classes, even other anonymous ones!

The Perl6::Classes module augments Perls syntax with a new declarator: class. It offers the advantage over Perls standard OO mechanism that it is conceptually easier to see (especially for those from a C++/Java background). It offers the disadvantage, of course, of being less versatile.

<<less
Download (0.007MB)
Added: 2007-06-08 License: Perl Artistic License Price:
868 downloads
Stamits Online Poker 0.1

Stamits Online Poker 0.1


Stamits Online Poker project is a simple OpenGL poker game that can be played online with another person. more>>
Stamits Online Poker project is a simple OpenGL poker game that can be played online with another person.

Compilation:

Make sure you have the GNU C and C++ compilers.

Get MOGUL, the Minimal OpenGL Utility Library, compile and install it (or use a compiled binary version, if there is one available). Instructions should be included.

Open `Makefile and uncomment the lines below the label `Unix configuration.

Say `make. The result should be an executable named `sopoker in the current working directory.

<<less
Download (0.15MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
949 downloads
Easy-Money-Online 1.0

Easy-Money-Online 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-12 License: Freeware Price: Free
195 downloads
Kemistry 0.7

Kemistry 0.7


Kemistry is a collection of chemistry applications for the K Desktop Environment. more>>
Kemistry is a collection of chemical applications for the K Desktop Environment (release 3.x).

Originally the applications were distributed in a single source package, but currently every application is distributed in a standalone package. The available applications are

* KMolCalc - molecular weight and elemental composition calculator
* KemBabel - a file conversion program based on Open Babel
<<less
Download (1.15MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1666 downloads
Chemistry Development Kit 1.0.1

Chemistry Development Kit 1.0.1


Chemistry Development Kit is a Java classes for chemo- and bioinformatics. more>>
Chemistry Development Kit classes are Java utitility classes for ChemoInformatics and Computational chemistry, written in Java. They are developed constantly developed parallel to other projects that make use of them.
They are a complete re-write of the CompChem classes that were the basis of JChemPaint, a Java Editor for 2D chemical structures, and of JMDraw, a Java package for the graphical layout of 2D chemical structures.
The CDK project was started in September 2000 to replace the CompChem libraries used by JChemPaint, Jmol and SENECA. It no longer is in its initial stage, but is slowly getting a solid state.
The people involved in setting up the project are Christoph Steinbeck then at the Chemoinformatics Group at the Max Planck Institute of Chemical Ecology in Jena, as well as Egon Willighagen from the University of Nijmegen, The Netherlands, who is also involved with JChemPaint and many other Java Chemoinformatics programs, and Dan Gezelter from Notre Dame University, South Bend, USA, the initiator of Jmol, a 3D viewer and analyzer for molecules .
Now, the rewrite of these CompChem/CDK library classes do somehow effect all of our projects. All of our code relies to some extend on the so-called CompChem classes for computational chemistry.
Christoph Steinbeck started this chemistry library when he started programming SENECA, a system for Computer Assisted Structure Elucidation. It turned out that some of the code had design flaws that prevented others, like the authors of (Jmol) to use it.
Enhancements:
- This release consists of mostly some bugfixes, but also solves a few Java 1.4.2 compile problems and adds more functionality to the SMARTS parser.
<<less
Download (13.1MB)
Added: 2007-06-26 License: LGPL (GNU Lesser General Public License) Price:
851 downloads
Buy it online 0.9

Buy it online 0.9


Buy it online allows you to buy a product online through the context menu. more>>
Buy it online allows you to buy a product online through the context menu.

Highlight a name of a product on a web page, right click the mouse, and choose Buy it online menu item, to see the list of on-line offerings of this product.

No annoying shopping toolbars, just select and click. No affiliation with shopping vendors.

<<less
Download (0.072MB)
Added: 2007-04-26 License: MPL (Mozilla Public License) Price:
956 downloads
Rauls classes for PHP 0.6.3

Rauls classes for PHP 0.6.3


Rauls classes for PHP is an OOP database abstraction layer for PHP 5.1 or greater. more>>
Rauls classes for PHP is an OOP database abstraction layer for PHP 5.1 or greater. Rauls classes for PHP provides abstract classes to access database servers and traverse result sets.
There are several implementation classes to access different types of databases: SQLite, MySQL, PostgreSQL, and MSSQL.
The classes provide functions to establish connections, execute queries, traverse result sets with pagination support, and retrieve the list of databases, tables and fields. Any possible error is signaled by throwing exceptions with specific message and error code.
Enhancements:
- A quickref.txt file was added to the project.
- A totalRows get property was included for SQL result objects.
- A third optional parameter was added to the printPageSelect method in order to return the page < select > code as an string instead of printing it.
<<less
Download (0.050MB)
Added: 2006-06-08 License: MIT/X Consortium License Price:
1235 downloads
C++ Foundation Classes 0.1.4

C++ Foundation Classes 0.1.4


C++ Foundation Classes package contains a Fully Overloaded String object that works with other classes. more>>
The C++ Foundation Classes package contains a Fully Overloaded String object that works with other classes (even those not owned by CFC), a full (template) Matrix and Vector Object, some Data types like DateTime, Boolean, Integer, Real, and Complex, and Sets, Stack, Queues, etc. C++ Foundation Classes also has an LL-type Parser and Scanner for lexical reading.

Installation:

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (1.2MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1440 downloads
Dynamic Probe Class Library 3.4.3

Dynamic Probe Class Library 3.4.3


Dynamic Probe Class Library (DPCL) is an object-based C++ class library. more>>
Dynamic Probe Class Library (DPCL) is an object-based C++ class library that provides the necessary infrastructure to allow tool developers and sophisticated tool users to build parallel and serial tools through technology called dynamic instrumentation.
Dynamic Probe Class Library takes the basic components needed by tool developers and encapsulates them into C++ classes. Each of these classes provide the member functions necessary to interact and dynamically instrument a running application with software patches called probes.
Dynamic instrumentation provides the flexibility for tools to insert probes into applications as the application is running and only where it is needed.
Enhancements:
- This version is a minor update to DPCL that fixes a couple problems that have been reported since the v3.4.2 release
<<less
Download (2.5MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1185 downloads
Open IT Online 2.5.1

Open IT Online 2.5.1


Open IT Online will improve your browsers capability greatly. It is designed as a Firefox addon that allows to open and edit your documents from everywhere! more>> <<less
Added: 2009-07-21 License: MPL Price: FREE
13 downloads
Chemistry::Artificial::Graphics 0.01

Chemistry::Artificial::Graphics 0.01


Chemistry::Artificial::Graphics is a graphic plot for artificial with database support. more>>
Chemistry::Artificial::Graphics is a graphic plot for artificial with database support.

SYNOPSIS

use strict;
use Chemistry::SQL;
use Chemistry::Artificial::Graphics;

my $dbname = $ARGV[0];
my $chaname = $ARGV[1];
my $file = $ARGV[2];
my $mode = $ARGV[3];

if (scalar(@ARGV)!=4)
{ print "Error in parameter number n";
print "perl chaplot.pl DB_NAME
CHA_NAME FILE_NAME MODE (svg | svg_static | text)n";
exit;
}
my $db1 =
Chemistry::SQL->new(db_host=>"127.0.0.1",db_user=>"root",db_port=>"3306",sb_pwd=>"",db_name=>"$dbname",db_driver=>"mysql");
$db1->connect_db;
my $pcha = Chemistry::Artificial::Graphics->new(db => $db1, width=> "800",height=>"600",radius=> "10",distanceh=>"200",file=> $file,
mode=> $mode);
$pcha->ch_plot("$chaname");

This package, along with Chemistry::SQL, includes all the necessary to generate graphics of the artificial chemistry in database.
<<less
Download (0.014MB)
Added: 2006-07-28 License: Perl Artistic License Price:
1184 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5