Main > Free Download Search >

Free solar energy software for linux

solar energy

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 108
Solar Empire 2.9.1.2

Solar Empire 2.9.1.2


Solar Empire is a highly competitive, Web-based space strategy game. more>>
Solar Empire project is a highly competitive, Web-based space strategy game.

Solar Empire is a highly competitive, Web-based, multi-player space based strategy game where players use combat, diplomacy, bounties, and other such components to eliminate their enemies.

<<less
Download (MB)
Added: 2007-06-20 License: GPL (GNU General Public License) Price:
856 downloads
Solar Visitor 0.2.1

Solar Visitor 0.2.1


Solar Visitor is a space simulator where the user flies around our Solar System in a 3D view. more>>
Solar Visitor is a space simulator where the user flies around our Solar System in a 3D view. The program and source code are offered free, there are builds for Windows and Linux. Solar Visitor uses the Ogre graphics library. The planets and objects were created with the Blender program.
Because Solar Visitor is a 3D program, performance depends on the capabilities of the users video system.
If you wish you may build from source using available tools but be warned this is not an easy task. An addition to Ogre a compiler and IDE (on Windows) are required. The Ogre web site has installation instructions for its use. Those without c/c++ experience will find themselves jumping in the deep end.
With the release of version 0.2.x the user can view planets rendered from textures which is a vast improvement over the painted colours of 0.1.0. There is still realism to add. For instance, the orbits are engineered to showcase shadow effects and not be realistic, where eclipses are rare.
The program code is released under the GPL, the media are generated from downloadable images on the web, details of location are provided. Images remain the property of respective owners.
Enhancements:
- bugfixes
- tilted orbits
<<less
Download (10.6MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
903 downloads
Solar Imperium 2.4.0 Beta

Solar Imperium 2.4.0 Beta


Solar Imperium is a Solar Realms Elite clone. more>>
Solar Imperium is a Solar Realms Elite clone. In it, you rule a solar empire. Solar Imperiums goal is to become and remain the most powerful empire. You can gain strength by buying forces, and you can gain size by colonizing planets.

You start with some planets, and a little bit of money. You are required to feed your people and army, and to pay to maintain your planets and army. If you fail to do these things, disastrous results may occur.

You are given several turns of protection, during which you cannot attack or be attacked, and cannot perform covert operations. This provides a way for smaller empires to build up their defenses and planets before they enter the real world.

<<less
Download (MB)
Added: 2007-04-27 License: Free for non-commercial use Price:
916 downloads
Astaro Command Center 1.400

Astaro Command Center 1.400


Astaro Command Center (ACC) is an application for centralized management of Astaro Security Gateways. more>>
Astaro Command Center (ACC) is an application for centralized management of Astaro Security Gateways. With ACC, network administrators can easily manage and control multiple Astaro devices.
The intuitive Web-based user interface provides an effective overview that details the actual health of each device, swiftly allowing administrators to see which gateways require immediate action.
Astaro Command Center offers monitoring, inventory management, central update management, WebAdmin single-sign-on, and a world map view.
Enhancements:
- This version changes the GUI to the new look and feel of the ASG V7 style and it adds V7 support.
- It also handles the new daylight saving time dates from the Energy Savings Act in the US and Canada.
- Cluster monitoring global pattern version and UPS battery charge monitoring are now supported, and ACC can be used as an Up2Date Cache for all V7 packages.
- Besides these new features, some minor bugs were fixed.
<<less
Download (247MB)
Added: 2007-03-13 License: LGPL (GNU Lesser General Public License) Price:
956 downloads
KStars 1.2

KStars 1.2


KStars is a graphical representation of the night sky for KDE. more>>
KStars is a Desktop Planetarium for KDE. KStars application provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time.
The display includes 130,000 stars, 13,000 deep-sky objects,all 8 planets, the Sun and Moon, and thousands of comets and asteroids.
This is the version of KStars for KDE-3.5.2. If you already have the kdeedu-3.5.2 package installed, then you do not need this.
Enhancements:
- Improved NGC/IC catalog
- A GUI Tool for adding custom catalogs
- Improved Object Details window, including customizable thumbnail image
- Allow negative timesteps in Solar System tool
- Highlight objects on the sky which are in the Observing list
- Save/Load Observing Lists
- New Calculator module: Radial velocity conversion
- DCOP functions to store/retrieve user settings
- Can now execute "foreign" DCOP scripts
- INDI: New CCD Preview tool
- INDI: Add support for Apogee CCDs
- INDI: Add support for Meade Lunar Planetary Imager
- INDI: Add support for Sky Commander
- INDI: Add support for Finger Lakes Instruments Filter Wheels
<<less
Download (7.2MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
739 downloads
Search::ContextGraph 0.15

Search::ContextGraph 0.15


Search::ContextGraph is a Perl module for spreading activation search engine. more>>
Search::ContextGraph is a Perl module for spreading activation search engine.

SYNOPSIS

use Search::ContextGraph;

my $cg = Search::ContextGraph->new();

# first you add some documents, perhaps all at once...

my %docs = (
first => [ elephant, snake ],
second => [ camel, pony ],
third => { snake => 2, constrictor => 1 },
);

$cg->bulk_add( %docs );

# or in a loop...

foreach my $title ( keys %docs ) {
$cg->add( $title, $docs{$title} );
}

# or from a file...

my $cg = Search::ContextGraph->load_from_dir( "./myfiles" );

# you can store a graph object for later use

$cg->store( "stored.cng" );

# and retrieve it later...

my $cg = ContextGraph->retrieve( "stored.cng" );


# SEARCHING

# the easiest way

my @ranked_docs = $cg->simple_search( peanuts );


# get back both related terms and docs for more power

my ( $docs, $words ) = $cg->search(snake);


# you can use a document as your query

my ( $docs, $words ) = $cg->find_similar(First Document);


# Or you can query on a combination of things

my ( $docs, $words ) =
$cg->mixed_search( { docs => [ First Document ],
terms => [ snake, pony ]
);


# Print out result set of returned documents
foreach my $k ( sort { $docs->{$b} $docs->{$a} }
keys %{ $docs } ) {
print "Document $k had relevance ", $docs->{$k}, "n";
}

# Reload it
my $new = Search::ContextGraph->retrieve( "filename" );

Spreading activation is a neat technique for building search engines that return accurate results for a query even when there is no exact keyword match. The engine works by building a data structure called a context graph, which is a giant network of document and term nodes. All document nodes are connected to the terms that occur in that document; similarly, every term node is connected to all of the document nodes that term occurs in. We search the graph by starting at a query node and distributing a set amount of energy to its neighbor nodes. Then we recurse, diminishing the energy at each stage, until this spreading energy falls below a given threshold. Each node keeps track of accumulated energy, and this serves as our measure of relevance.

This means that documents that have many words in common will appear similar to the search engine. Likewise, words that occur together in many documents will be perceived as semantically related. Especially with larger, coherent document collections, the search engine can be quite effective at recognizing synonyms and finding useful relationships between documents. You can read a full description of the algorithm at http://www.nitle.org/papers/Contextual_Network_Graphs.pdf.

The search engine gives expanded recall (relevant results even when there is no keyword match) without incurring the kind of computational and patent issues posed by latent semantic indexing (LSI). The technique used here was originally described in a 1981 dissertation by Scott Preece.

<<less
Download (0.093MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1120 downloads
Simple Config 1.1.1

Simple Config 1.1.1


Simple Config library supports configuration files consisting of simple name-value pairs, similar to the old Windows INI files. more>>
Simple Config library supports configuration files consisting of simple name-value pairs, similar to the old Windows INI files. A config file can be loaded into memory, queried by item name, modified, and written back out to a file. Configuration items may also be "watched", which causes a user-supplied callback function to be called with the named item is modified
Client code can query the configuration system for named values, set named values, test the type of values (STR, INT, FIX, BOOL, DATE or TIME) and watch values for changes. The system can update the configuration file when the application has changed or added values, even preserving the original format and commens from the input configuration file.
Theres not much to it, at the moment, not even a manpage, so youre on your own as far as using the library. There is a ReadMe file and a makefile, so you can easily build and install the library.
The whole thing took about a week to design, code and test, so its no heroic effort or anything. With a bit more time and energy it could probably be something really spectacular. My main point was that, given the simple problem statement, it was (relatively) trivial to code up a conforming solution.
Enhancements:
- The hashtable code was updated.
- No changes were made to functionality, but it is now more heap-friendly with less heap fragmentation and faster bucket allocation.
- The ground work for automatic table resizing has been laid.
<<less
Download (0.023MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1039 downloads
Xplanet 1.2.0

Xplanet 1.2.0


Xplanet is an Xearth wannabe. more>>
Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator.
A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular.
Enhancements:
- Added the -grs_longitude option, to specify the longitude of Jupiters Great Red Spot, in System II coordinates. This assumes the Jupiter image has the center of the Great Red Spot at pixel 0 (at the left side of the image) in order to draw it at the right position.
- Added the Icosagnomonic projection, contributed by Ian Turner.
- Fixed a bug where output filenames had an extra digit in some cases.
- Added the bump_map and bump_scale options in the configuration file.
- Added the -glare option to set the size of the suns glare.
- An image map may be specified for the sun in the configuration file now. A shade value is now required for the sun (should be 100, otherwise the sun will have a night side!)
- Added the -arc_spacing option to set the default angular distance between great arc points. It used to be 0.1 degree, so arcs smaller than this wouldnt get drawn.
- Fixed a bug where markers were not aligned properly when using align = "above" or "below".
- Added warnings if options are specified in the [default] section of the configuration file that probably shouldnt be there.
<<less
Download (1.15MB)
Added: 2005-06-17 License: GPL (GNU General Public License) Price:
1589 downloads
CodeInvaders Challenge 3.1

CodeInvaders Challenge 3.1


CodeInvaders Challenge project is a Java-based, real-time programming game based on the Eclipse platform. more>>
CodeInvaders Challenge project is a Java-based, real-time programming game based on the Eclipse platform.

CodeInvaders Challenge is a Java™-based, real-time programming game based on the Eclipse platform. It uses the Eclipse platform and a simple API that allows users unfamiliar with Java to easily compete while they learn the language.

CodeInvaders Challenge gives users the opportunity to pit their Java programming skills against other players in a battle of space conquest. Each player writes a Java class that represents and controls a spaceship. Each ship (class) is placed in a simulated battle along with ships from other players.

The game puts up to six spaceships together in a match and places each of them in a random location with the same amount of energy. The spaceship class allows each player to control his ships thrusters and weapons. The ship can move around to collect energy, attack opponents, and bring energy back to its home planet. Points are awarded for different actions, and the player with the most points wins.

When used in a tournament, CodeInvaders Challenge allows direct, real-time competition between teams. Each player can submit his intermediate solutions and test against the submitted ships from other players. This competition allows each player to learn from the strategies of other players and modify his ship appropriately. After the final submission from each player, the final winner can be found by running a tournament consisting of several rounds and eliminations.

<<less
Download (MB)
Added: 2006-11-28 License: Other/Proprietary License Price:
1060 downloads
Planets 3D 1.3

Planets 3D 1.3


Planets 3D is a graphical tool for the simulation of the solar system. more>>
The purpose of Planets 3D is to show a simulation of our solar system. The focus lies on a nice graphic (3D OpenGL) and the possibility to modify the objects of the solar system to see what happens.
This program is written on Linux using C++. In theory it should be portable to windows, because Ive used only plattform independent libraries. Anyone who tries to port it please contact me even if unsuccessful, perhaps I can help overcome arising errors.
By now there is included a small program which converts different coordinate systems into each other. It is called Astroconvert.
Main features:
- simulate the development of the solar system based on calculations of the gravity power
- take screenshots
- load and save solar systems
- modify solarsystem
- switch between different cameras to view the solar system (e.g. look through a shuttle window)
<<less
Download (0.60MB)
Added: 2005-06-08 License: GPL (GNU General Public License) Price:
1605 downloads
xplanets 1.0.0

xplanets 1.0.0


xplanets shows a simulation of a spacecraft flying through the solar system. more>>
xplanets shows a simulation of a spacecraft flying through the solar system. With the controls next to the simulation screen you can control the simulation and steer the spacecrafts flight.
The following planets are visible:
- the Sun (yellow)
- mercury (gray38)
- venus (burlywood2)
- earth (blue2)
- mars (LightSalmon3)
Note that the sizes of the sun and planets are not to scale, though their distances are. Showing the planets to scale would mean that they wouldnt be visible. The solar system is rather big, after all.
The planet nearest to the spaceship is indicated with a red circle around it. Its relative speed and distance are shown in the data display.
The xplanets program uses the GTK+ toolkit. It has been built with version 2.2.1, so it should work with any version >2.0.0. It does not work with GTK+ 1.x anymore.
<<less
Download (0.029MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1235 downloads
scanlogd 2.2.6

scanlogd 2.2.6


scanlogd is a system daemon which attempts to log all portscans of a host to the syslog, in a secure fashion. more>>
scanlogd project is a system daemon which attempts to log all portscans of a host to the syslog, in a secure fashion.

This release of scanlogd can be built with support for one of several packet capture interfaces. In addition to the raw socket interface on Linux (which does not require any libraries), scanlogd is now aware of libnids and libpcap.

The use of libpcap alone is discouraged. If youre on a system other than Linux and/or want to monitor the traffic of an entire network at once, you should be using libnids in order to handle fragmented IP packets.

<<less
Download (0.010MB)
Added: 2006-03-13 License: BSD License Price:
1322 downloads
scanlogs 2.2.6

scanlogs 2.2.6


scanlogd is a TCP port scan detection tool, originally designed to illustrate various attacks. more>>
scanlogd is a TCP port scan detection tool, originally designed to illustrate various attacks an IDS developer has to deal with, for a Phrack Magazine article (see below). Thus, unlike some of the other port scan detection tools out there, scanlogd is designed to be totally safe to use.

This release of scanlogd can be built with support for one of several packet capture interfaces. In addition to the raw socket interface on Linux (which does not require any libraries), scanlogd is now aware of libnids and libpcap.

The use of libpcap alone is not a good idea. If youre on a system other than Linux and/or want to monitor the traffic of an entire network at once, you should be using libnids in order to handle fragmented IP packets.
<<less
Download (0.010MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1200 downloads
Bob the Butcher 0.7.1

Bob the Butcher 0.7.1


Bob the Butcher project is a distributed password cracker package. more>>
Bob the Butcher project is a distributed password cracker package.
This is ALPHA software, full of bugs, some of them being likely to be security holes. Besides, there is no client authentification, so anybody could impersonate a client and alter your search results.
Only use it on a trusted network!
Main features:
- Ciphers near source compatibility with John the Ripper. Bob the Butcher benefits from the fast algorithms that have been develloped for John:
Traditionnal DES Solar Designer
BSDI DES [BROKEN] Solar Designer
FreeBSD MD5 [BROKEN] Solar Designer
Windows NTLM (MD4)
MMX/SSE2 bartavelle
Windows Cache (mscash) bartavelle
Raw MD5 (hex-encoded) bartavelle
Raw SHA1 (hex-encoded) bartavelle
MySQL passwords Noah Williamsson
Netscape LDAP SHA Sun-Zero
Netscape LDAP SHA
MMX/SSE2 Bartavelle
Lotus Domino Jeff Fay
Oracle Passwords Bartavelle
- Password cracking speed scales linearly with the number of cracking clients.
- Central server that can handles several jobs, supporting different priorities (in the future.
- Smart keyspace distribution when several jobs are using the same algorithm (not for now).
Usage:
Build instructions
Only works on pentium or later!
./configure --enable-debug
make
cd bob_client
./bob_client -b
If it segfaults, try again with:
./configure --enable-debug --disable-sse2
bob_server
Just run ./bob_server -k SECRET_KEY
bob_admin
Use it to add jobs and check status. For now only he following commands work:
newjob : add a new job
status : gives general status
jobinf : give detailled status
Dont forget to use the -k switch for PSK.
bob_client Put this one on as many computers as possible, and just run:
./bob_client -d -k SECRET_KEY server_host_name
Enhancements:
- Bugfixes in cyphers, support for Solaris, and a prototype Python server.
<<less
Download (0.25MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1163 downloads
Max Fighter 1.0

Max Fighter 1.0


Max Fighter is a vertical-scrolling asteroids shootemup. more>>
Max Fighter is a vertical-scrolling asteroids shootemup game.

You have a bad feeling about this: For only one brief moment you let your attention slip, and suddenly, you find your spaceship heading right into a vast asteroid field. Though it does not seem very dense at the outskirts, your board computer readouts make you doubt you will ever see the other side of it - and did your radar just pick up traces of pirate activity!?

Keep control of your spaceship as you go ever deeper into the asteroid field and the gameplay reaches breakneck speed. Shoot asteroids and containers and collect power-ups, shield energy and special weapons. And last but not least - beware of the pirates!

<<less
Download (16.9MB)
Added: 2006-09-11 License: GPL (GNU General Public License) Price:
1141 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5