Preparing for release 14.05.
This commit is contained in:
parent
024be44106
commit
967b6b3eeb
@ -1,3 +1,6 @@
|
||||
2013-05-21 Kevin Ruland
|
||||
* Released version 14.05 See Release Notes for changes.
|
||||
|
||||
2013-11-07 Kevin Ruland
|
||||
* Released version 13.11
|
||||
|
||||
|
||||
@ -1,3 +1,15 @@
|
||||
OpenRocket 14.05 (2014-05-21):
|
||||
------------------------------
|
||||
|
||||
New Features:
|
||||
* Compute optimimum delay time when simulating
|
||||
* Display cg/mass overrides using icons in the component tree
|
||||
|
||||
Bug Fixes:
|
||||
* Bug fixes in the motor selection dialog
|
||||
* Updated thrustcurves
|
||||
* Updated 3d libraries to 2.1.5
|
||||
|
||||
OpenRocket 14.03 (2014-03-20):
|
||||
------------------------------
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
# The OpenRocket build version
|
||||
|
||||
build.version=14.03dev
|
||||
build.version=14.05
|
||||
|
||||
|
||||
# The source of the package. When building a package for a specific
|
||||
|
||||
Binary file not shown.
@ -80,11 +80,20 @@ header("Content-type: text/plain");
|
||||
$version = $_GET["version"];
|
||||
$updates = "";
|
||||
|
||||
$unstable = "14.03";
|
||||
$unstable = "14.05";
|
||||
$stable = "1.0.0";
|
||||
|
||||
|
||||
if (preg_match("/^13.11.2$/", $version)) {
|
||||
if (preg_match("/^14.03$/", $version)) {
|
||||
$updates = "Version: " . $unstable . "\n" .
|
||||
"10: Simulations will now compute the optimum delay for the sustainer\n" .
|
||||
"10: CG and Mass overrides are now indicated in the component tree\n" .
|
||||
"6: Updated thrustcurves - added Klima and SCR motors and various others\n" .
|
||||
"4: Removed the preset component Estes PNC-80FB since it was never produced\n" .
|
||||
"4: Updated 3D libraries\n" .
|
||||
"4: Bug fixes in motor selection dialog\n".
|
||||
"";
|
||||
} else if (preg_match("/^13.11.2$/", $version)) {
|
||||
$updates = "Version: " . $unstable . "\n" .
|
||||
"10: Realistic in flight 3D photo construction\n" .
|
||||
"6: Updated thrustcurves\n".
|
||||
|
||||
@ -1,116 +1,116 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Support and contact information</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.17" />
|
||||
</head>
|
||||
<body class="page_contact">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Support and contact information for OpenRocket</h1>
|
||||
<div class="content">
|
||||
<h2>Mailing lists</h2>
|
||||
<p>OpenRocket currently has two mailing lists for
|
||||
intrested users:</p>
|
||||
<dl>
|
||||
<dt>
|
||||
<a href="https://lists.sourceforge.net/lists/listinfo/openrocket-announce"><tt>OpenRocket-announce</tt></a>
|
||||
|
||||
<span class="note">(<a href="https://sourceforge.net/mailarchive/forum.php?forum_name=openrocket-announce">archives</a>)</span>
|
||||
</dt>
|
||||
<dd>Announcements of new OpenRocket versions and
|
||||
developments. This list is moderated.</dd>
|
||||
<dt>
|
||||
<a href="https://lists.sourceforge.net/lists/listinfo/openrocket-devel"><tt>OpenRocket-devel</tt></a>
|
||||
|
||||
<span class="note">(<a href="https://sourceforge.net/mailarchive/forum.php?forum_name=openrocket-devel">archives</a>)</span>
|
||||
</dt>
|
||||
<dd>Discussion related to OpenRocket development, documentation
|
||||
and upcoming features.</dd>
|
||||
</dl>
|
||||
<p>You are welcome to join the development mailing list if you are
|
||||
interested in contributing something to OpenRocket or simply want
|
||||
hear about and discuss future development. Note that support
|
||||
requests should be sent to the
|
||||
<a href="http://www.rocketryforum.com/forumdisplay.php?f=36">support
|
||||
forums</a> instead!</p>
|
||||
<p><strong>Unsubscribing</strong> from the lists can be performed
|
||||
in the above links as well. <em>Please do not send unsubscription
|
||||
requests to the list.</em></p>
|
||||
<h2>Support forums</h2>
|
||||
<p>The official support forum for OpenRocket is the
|
||||
<a href="http://www.rocketryforum.com/forumdisplay.php?f=36">Rocketry
|
||||
Electronics and Software forum</a> at
|
||||
<a href="http://www.rocketryforum.com/">The Rocketry Forum</a>.</p>
|
||||
<p>Please ask any questions on using OpenRocket on that forum,
|
||||
where others can answer as well and gain knowledge from the
|
||||
answers.</p>
|
||||
<h2 id="contact">Contact information</h2>
|
||||
<p>The main developer of OpenRocket is Sampo Niskanen. His contact
|
||||
information can be found below.</p>
|
||||
<p><strong><em>Support requests</em></strong> should be sent to
|
||||
the <a href="http://www.rocketryforum.com/forumdisplay.php?f=36">support
|
||||
forums</a>.<br/>
|
||||
<!-- <strong><em>Bug reports and feature requests</em></strong> should
|
||||
be <a href="report.html">reported separately</a>.</p> -->
|
||||
<p><strong>Email:</strong>
|
||||
<em>sam<span>po</span>.<span>niskanen</span><span>@i</span>ki.fi</em></p>
|
||||
<p><strong>WWW:</strong>
|
||||
<a href="http://www.iki.fi/sampo.niskanen/"
|
||||
title="Home page of Sampo Niskanen"><em>http://www.iki.fi/sampo.niskanen/</em></a></p>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Support and contact information</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.16" />
|
||||
</head>
|
||||
<body class="page_contact">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Support and contact information for OpenRocket</h1>
|
||||
<div class="content">
|
||||
<h2>Mailing lists</h2>
|
||||
<p>OpenRocket currently has two mailing lists for
|
||||
intrested users:</p>
|
||||
<dl>
|
||||
<dt>
|
||||
<a href="https://lists.sourceforge.net/lists/listinfo/openrocket-announce"><tt>OpenRocket-announce</tt></a>
|
||||
|
||||
<span class="note">(<a href="https://sourceforge.net/mailarchive/forum.php?forum_name=openrocket-announce">archives</a>)</span>
|
||||
</dt>
|
||||
<dd>Announcements of new OpenRocket versions and
|
||||
developments. This list is moderated.</dd>
|
||||
<dt>
|
||||
<a href="https://lists.sourceforge.net/lists/listinfo/openrocket-devel"><tt>OpenRocket-devel</tt></a>
|
||||
|
||||
<span class="note">(<a href="https://sourceforge.net/mailarchive/forum.php?forum_name=openrocket-devel">archives</a>)</span>
|
||||
</dt>
|
||||
<dd>Discussion related to OpenRocket development, documentation
|
||||
and upcoming features.</dd>
|
||||
</dl>
|
||||
<p>You are welcome to join the development mailing list if you are
|
||||
interested in contributing something to OpenRocket or simply want
|
||||
hear about and discuss future development. Note that support
|
||||
requests should be sent to the
|
||||
<a href="http://www.rocketryforum.com/forumdisplay.php?f=36">support
|
||||
forums</a> instead!</p>
|
||||
<p><strong>Unsubscribing</strong> from the lists can be performed
|
||||
in the above links as well. <em>Please do not send unsubscription
|
||||
requests to the list.</em></p>
|
||||
<h2>Support forums</h2>
|
||||
<p>The official support forum for OpenRocket is the
|
||||
<a href="http://www.rocketryforum.com/forumdisplay.php?f=36">Rocketry
|
||||
Electronics and Software forum</a> at
|
||||
<a href="http://www.rocketryforum.com/">The Rocketry Forum</a>.</p>
|
||||
<p>Please ask any questions on using OpenRocket on that forum,
|
||||
where others can answer as well and gain knowledge from the
|
||||
answers.</p>
|
||||
<h2 id="contact">Contact information</h2>
|
||||
<p>The main developer of OpenRocket is Sampo Niskanen. His contact
|
||||
information can be found below.</p>
|
||||
<p><strong><em>Support requests</em></strong> should be sent to
|
||||
the <a href="http://www.rocketryforum.com/forumdisplay.php?f=36">support
|
||||
forums</a>.<br/>
|
||||
<!-- <strong><em>Bug reports and feature requests</em></strong> should
|
||||
be <a href="report.html">reported separately</a>.</p> -->
|
||||
<p><strong>Email:</strong>
|
||||
<em>sam<span>po</span>.<span>niskanen</span><span>@i</span>ki.fi</em></p>
|
||||
<p><strong>WWW:</strong>
|
||||
<a href="http://www.iki.fi/sampo.niskanen/"
|
||||
title="Home page of Sampo Niskanen"><em>http://www.iki.fi/sampo.niskanen/</em></a></p>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,122 +1,122 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Documentation</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.17" />
|
||||
</head>
|
||||
<body class="page_documentation">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Documentation for OpenRocket</h1>
|
||||
<div class="content">
|
||||
<h2>User documentation</h2>
|
||||
<p>Unfortunately no user's guide currently exists for OpenRocket.
|
||||
Some documentation is available in the
|
||||
<a href="http://wiki.openrocket.info/">OpenRocket
|
||||
wiki pages</a>, including a stub
|
||||
<a href="http://wiki.openrocket.info/User%27s_Guide">User's
|
||||
guide</a> and a section of
|
||||
<a href="http://wiki.openrocket.info/FAQ">frequently
|
||||
asked questions</a>.</p>
|
||||
<p>If you would like to help, please extend the documentation!</p>
|
||||
<h2>Technical documentation</h2>
|
||||
<p>OpenRocket was originally written as the Master's thesis of
|
||||
Sampo Niskanen at Helsinki University of Technology. This thesis
|
||||
is being extended and updated as the OpenRocket technical
|
||||
documentation. Below is the latest technical documentation and
|
||||
the original Master's thesis.</p>
|
||||
<div class="separated">
|
||||
<p>
|
||||
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="CC BY-SA" src="cc-by-sa-80x15.png" /></a></span>
|
||||
<a href="techdoc.pdf">OpenRocket technical documentation</a> (2013-05-10)
|
||||
<span class="note">(PDF 1.4MB)</span>
|
||||
</p>
|
||||
<p>
|
||||
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"><img alt="CC BY-NC-ND" src="cc-by-nc-nd-80x15.png" /></a></span>
|
||||
<a href="thesis.pdf">Development of an Open Source model rocket simulation software</a> (Master's thesis)
|
||||
<span class="note">(PDF 1.3MB)</span>
|
||||
</p>
|
||||
</div>
|
||||
<p>The technical documentation is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike License</a>
|
||||
while the Master's thesis is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nd-nc/1.0/fi/deed.en">Attribution-NonCommercial-NoDerivs
|
||||
License</a>.
|
||||
</p>
|
||||
<p class="quote"><strong>Table of contents:</strong></p>
|
||||
<ol class="toc">
|
||||
<li>1. Introduction</li>
|
||||
<li>2. Basics of model rocket flight</li>
|
||||
<li>3. Aerodynamic properties of model rockets</li>
|
||||
<li>4. Flight simulation</li>
|
||||
<li>5. The OpenRocket simulation software</li>
|
||||
<li>6. Comparison with experimental data</li>
|
||||
<li>7. Conclusion</li>
|
||||
</ol>
|
||||
<ol class="toc">
|
||||
<li>A. Nose cone and transition geometries</li>
|
||||
<li>B. Transonic wave drag of nose cones</li>
|
||||
<li>C. Streamer drag coefficient estimation</li>
|
||||
</ol>
|
||||
<h2>Resources</h2>
|
||||
<p>A list of useful technical rocketry resources is available in
|
||||
the <a href="http://wiki.openrocket.info/Resources">"Resources"
|
||||
wiki page</a>, including links to Barrowman's original report and
|
||||
thesis, extensions for the Barrowman method, experimental rocket
|
||||
data etc.</p>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Documentation</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.16" />
|
||||
</head>
|
||||
<body class="page_documentation">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Documentation for OpenRocket</h1>
|
||||
<div class="content">
|
||||
<h2>User documentation</h2>
|
||||
<p>Unfortunately no user's guide currently exists for OpenRocket.
|
||||
Some documentation is available in the
|
||||
<a href="http://wiki.openrocket.info/">OpenRocket
|
||||
wiki pages</a>, including a stub
|
||||
<a href="http://wiki.openrocket.info/User%27s_Guide">User's
|
||||
guide</a> and a section of
|
||||
<a href="http://wiki.openrocket.info/FAQ">frequently
|
||||
asked questions</a>.</p>
|
||||
<p>If you would like to help, please extend the documentation!</p>
|
||||
<h2>Technical documentation</h2>
|
||||
<p>OpenRocket was originally written as the Master's thesis of
|
||||
Sampo Niskanen at Helsinki University of Technology. This thesis
|
||||
is being extended and updated as the OpenRocket technical
|
||||
documentation. Below is the latest technical documentation and
|
||||
the original Master's thesis.</p>
|
||||
<div class="separated">
|
||||
<p>
|
||||
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="CC BY-SA" src="cc-by-sa-80x15.png" /></a></span>
|
||||
<a href="techdoc.pdf">OpenRocket technical documentation</a> (2013-05-10)
|
||||
<span class="note">(PDF 1.4MB)</span>
|
||||
</p>
|
||||
<p>
|
||||
<span class="licenseimage"><a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/"><img alt="CC BY-NC-ND" src="cc-by-nc-nd-80x15.png" /></a></span>
|
||||
<a href="thesis.pdf">Development of an Open Source model rocket simulation software</a> (Master's thesis)
|
||||
<span class="note">(PDF 1.3MB)</span>
|
||||
</p>
|
||||
</div>
|
||||
<p>The technical documentation is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike License</a>
|
||||
while the Master's thesis is licensed under a
|
||||
<a rel="license" href="http://creativecommons.org/licenses/by-nd-nc/1.0/fi/deed.en">Attribution-NonCommercial-NoDerivs
|
||||
License</a>.
|
||||
</p>
|
||||
<p class="quote"><strong>Table of contents:</strong></p>
|
||||
<ol class="toc">
|
||||
<li>1. Introduction</li>
|
||||
<li>2. Basics of model rocket flight</li>
|
||||
<li>3. Aerodynamic properties of model rockets</li>
|
||||
<li>4. Flight simulation</li>
|
||||
<li>5. The OpenRocket simulation software</li>
|
||||
<li>6. Comparison with experimental data</li>
|
||||
<li>7. Conclusion</li>
|
||||
</ol>
|
||||
<ol class="toc">
|
||||
<li>A. Nose cone and transition geometries</li>
|
||||
<li>B. Transonic wave drag of nose cones</li>
|
||||
<li>C. Streamer drag coefficient estimation</li>
|
||||
</ol>
|
||||
<h2>Resources</h2>
|
||||
<p>A list of useful technical rocketry resources is available in
|
||||
the <a href="http://wiki.openrocket.info/Resources">"Resources"
|
||||
wiki page</a>, including links to Barrowman's original report and
|
||||
thesis, extensions for the Barrowman method, experimental rocket
|
||||
data etc.</p>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,155 +1,162 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Download</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.17" />
|
||||
</head>
|
||||
<body class="page_download">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Download OpenRocket</h1>
|
||||
<div class="content">
|
||||
<div class="news">
|
||||
<h2>Recent news:</h2>
|
||||
<p><span class="date">21.03.2014:</span> Version 14.03 is
|
||||
<a href="download.html">released</a>! This release contains the
|
||||
new photo realistic renderer (in the Tools menu) which allows one to visualize
|
||||
the rocket in the air. There are various bug fixes in the configuration
|
||||
and motor selection windows as well.
|
||||
</p>
|
||||
<p><span class="date">01.01.2014:</span> Version 13.11.2 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes,
|
||||
usability improvements, and layout fixes.
|
||||
</p>
|
||||
<p><span class="date">15.11.2013:</span> Version 13.11.1 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes
|
||||
including fixing Tube Coupler configuration, various exceptions in
|
||||
the flight configuration tab, updated 3d libraris (which didn't really make
|
||||
it into previous versions).</p>
|
||||
<p><span class="date">8.11.2013:</span> Version 13.11 is
|
||||
<a href="download.html">released</a>! This release simplifies
|
||||
flight configurations by replacing the dialog with the configuration
|
||||
tab. Motor filtering in the motor chooser dialog has been enhanced.
|
||||
Chineese translations have been added and Russian translations updated.
|
||||
Updated the 3D libraries, and squashed some bugs introduced by Java 1.7.0_45-b18.</p>
|
||||
</div>
|
||||
<div class="contentholder">
|
||||
<h2>Ready packages</h2>
|
||||
<p>These are packages ready for use and are the recommended
|
||||
download for normal users. They are pre-packaged with motor
|
||||
thrust curves from
|
||||
<a href="http://www.thrustcurve.org/">thrustcurve.org</a>.</p>
|
||||
<p>OpenRocket requires <strong>Java version 6</strong> or
|
||||
later. The Sun Java Runtime is recommended.</p>
|
||||
<h3>Desktop version</h3>
|
||||
<p>This is the latest version of the desktop version of
|
||||
OpenRocket. It contains the latest and greatest features, and
|
||||
runs on any system supporting Java.</p>
|
||||
<div class="left">
|
||||
<img src="java_logo.png" alt="" />
|
||||
</div>
|
||||
<div class="right support">
|
||||
<a href="http://sourceforge.net/donate/index.php?group_id=260357"><img src="project-support.jpg" width="88" height="32" alt="Support This Project" /></a>
|
||||
</div>
|
||||
<div class="downloadbox">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/OpenRocket-14.03.jar/download">
|
||||
<strong>Download now!</strong>
|
||||
<span>OpenRocket-14.03.jar</span>
|
||||
</a>
|
||||
<span class="alternative">
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/OpenRocket-14.03-src.zip/download">Source code</a>
|
||||
</span>
|
||||
</div>
|
||||
<p>OpenRocket can be started in most graphical environments (including
|
||||
Windows) by double-clicking the package icon. No installation is
|
||||
required.</p>
|
||||
<p>From the command line OpenRocket can be started by
|
||||
<span class="command">java -jar OpenRocket-14.03.jar</span></p>
|
||||
<h3>Android version</h3>
|
||||
<p>The Android version allows opening OpenRocket files, viewing
|
||||
simulations and motors. Later versions will allow running
|
||||
simulations as well.</p>
|
||||
<p>The Android version is thanks to the fantastic work by Kevin
|
||||
Ruland.</p>
|
||||
<div class="left">
|
||||
<img src="android_logo.png" alt="" />
|
||||
</div>
|
||||
<div class="instructions">
|
||||
<p>Installation:</p>
|
||||
<ol>
|
||||
<li>Go to <em>Settings</em> → <em>Applications</em> and
|
||||
check <em>Unknown sources</em>.</li>
|
||||
<li>Download <a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/OpenRocket-Android-12.09.apk/download">OpenRocket-Android-12.09.apk</a>
|
||||
on your device and accept installation.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<h2>Source code and older versions</h2>
|
||||
<p><strong>Source packages</strong> and older versions of
|
||||
OpenRocket are available in the
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/">SourceForge repository</a>.</p>
|
||||
<p>Alternatively, the most recent development version can be
|
||||
obtained from
|
||||
<a href="https://github.com/openrocket/openrocket/">GitHub</a>.
|
||||
The code can be retrieved using the command</p>
|
||||
<pre class="quote">$ git clone git://github.com/openrocket/openrocket.git</pre>
|
||||
<p>The above URL may be used to connect to the repository with
|
||||
other Git clients as well.</p>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Download</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.16" />
|
||||
</head>
|
||||
<body class="page_download">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Download OpenRocket</h1>
|
||||
<div class="content">
|
||||
<div class="news">
|
||||
<h2>Recent news:</h2>
|
||||
<p><span class="date">21.05.2014:</span> Version 14.05 is
|
||||
<a href="download.html">released</a>! This release contains some minor features,
|
||||
bug fixes and updated thrust curves. New motor vendors Klima and Southern
|
||||
Cross Rocketry are included. The simulation will now compute optimum delay based
|
||||
on actual coast time. Components with CG and mass overrides are decorated with
|
||||
an icon in the component tree.
|
||||
</p>
|
||||
<p><span class="date">21.03.2014:</span> Version 14.03 is
|
||||
<a href="download.html">released</a>! This release contains the
|
||||
new photo realistic renderer (in the Tools menu) which allows one to visualize
|
||||
the rocket in the air. There are various bug fixes in the configuration
|
||||
and motor selection windows as well.
|
||||
</p>
|
||||
<p><span class="date">01.01.2014:</span> Version 13.11.2 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes,
|
||||
usability improvements, and layout fixes.
|
||||
</p>
|
||||
<p><span class="date">15.11.2013:</span> Version 13.11.1 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes
|
||||
including fixing Tube Coupler configuration, various exceptions in
|
||||
the flight configuration tab, updated 3d libraris (which didn't really make
|
||||
it into previous versions).</p>
|
||||
<p><span class="date">8.11.2013:</span> Version 13.11 is
|
||||
<a href="download.html">released</a>! This release simplifies
|
||||
flight configurations by replacing the dialog with the configuration
|
||||
tab. Motor filtering in the motor chooser dialog has been enhanced.
|
||||
Chineese translations have been added and Russian translations updated.
|
||||
Updated the 3D libraries, and squashed some bugs introduced by Java 1.7.0_45-b18.</p>
|
||||
</div>
|
||||
<div class="contentholder">
|
||||
<h2>Ready packages</h2>
|
||||
<p>These are packages ready for use and are the recommended
|
||||
download for normal users. They are pre-packaged with motor
|
||||
thrust curves from
|
||||
<a href="http://www.thrustcurve.org/">thrustcurve.org</a>.</p>
|
||||
<p>OpenRocket requires <strong>Java version 6</strong> or
|
||||
later. The Sun Java Runtime is recommended.</p>
|
||||
<h3>Desktop version</h3>
|
||||
<p>This is the latest version of the desktop version of
|
||||
OpenRocket. It contains the latest and greatest features, and
|
||||
runs on any system supporting Java.</p>
|
||||
<div class="left">
|
||||
<img src="java_logo.png" alt="" />
|
||||
</div>
|
||||
<div class="right support">
|
||||
<a href="http://sourceforge.net/donate/index.php?group_id=260357"><img src="project-support.jpg" width="88" height="32" alt="Support This Project" /></a>
|
||||
</div>
|
||||
<div class="downloadbox">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/OpenRocket-14.03.jar/download">
|
||||
<strong>Download now!</strong>
|
||||
<span>OpenRocket-14.03.jar</span>
|
||||
</a>
|
||||
<span class="alternative">
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/OpenRocket-14.03-src.zip/download">Source code</a>
|
||||
</span>
|
||||
</div>
|
||||
<p>OpenRocket can be started in most graphical environments (including
|
||||
Windows) by double-clicking the package icon. No installation is
|
||||
required.</p>
|
||||
<p>From the command line OpenRocket can be started by
|
||||
<span class="command">java -jar OpenRocket-14.03.jar</span></p>
|
||||
<h3>Android version</h3>
|
||||
<p>The Android version allows opening OpenRocket files, viewing
|
||||
simulations and motors. Later versions will allow running
|
||||
simulations as well.</p>
|
||||
<p>The Android version is thanks to the fantastic work by Kevin
|
||||
Ruland.</p>
|
||||
<div class="left">
|
||||
<img src="android_logo.png" alt="" />
|
||||
</div>
|
||||
<div class="instructions">
|
||||
<p>Installation:</p>
|
||||
<ol>
|
||||
<li>Go to <em>Settings</em> → <em>Applications</em> and
|
||||
check <em>Unknown sources</em>.</li>
|
||||
<li>Download <a href="https://sourceforge.net/projects/openrocket/files/openrocket/12.09/OpenRocket-Android-12.09.apk/download">OpenRocket-Android-12.09.apk</a>
|
||||
on your device and accept installation.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<h2>Source code and older versions</h2>
|
||||
<p><strong>Source packages</strong> and older versions of
|
||||
OpenRocket are available in the
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/">SourceForge repository</a>.</p>
|
||||
<p>Alternatively, the most recent development version can be
|
||||
obtained from
|
||||
<a href="https://github.com/openrocket/openrocket/">GitHub</a>.
|
||||
The code can be retrieved using the command</p>
|
||||
<pre class="quote">$ git clone git://github.com/openrocket/openrocket.git</pre>
|
||||
<p>The above URL may be used to connect to the repository with
|
||||
other Git clients as well.</p>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,181 +1,181 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Features and screenshots</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.17" />
|
||||
</head>
|
||||
<body class="page_features">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Features of OpenRocket</h1>
|
||||
<div class="content">
|
||||
<h2>Current features</h2>
|
||||
<div class="screenshots">
|
||||
<div class="smallshotconst"><a href="shots/main.png">
|
||||
<img src="shots-small/main.jpg" alt="Main window" /><br/>
|
||||
The main rocket design window is used to design the rocket
|
||||
and it also provides information about a flight simulation
|
||||
in real-time.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dart.png">
|
||||
<img src="shots-small/dart.jpg" alt="Realistic 3D Rendering" /><br/>
|
||||
Paint and decals can be added and rendered in 3D.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-edit.png">
|
||||
<img src="shots-small/dialog-edit.jpg" alt="Component edit
|
||||
dialog" /><br/>
|
||||
The component shape and properties are defined in their own
|
||||
dialog.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-analysis.png">
|
||||
<img src="shots-small/dialog-analysis.jpg" alt="Analysis
|
||||
dialog" /><br/>
|
||||
You can analyze the effect of individual components on the
|
||||
stability, drag and roll characteristics of the rocket.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-plot-options.png">
|
||||
<img src="shots-small/dialog-plot-options.jpg"
|
||||
alt="Simulation plot options" /><br/>
|
||||
The simulation results can be plotted in a multitude
|
||||
of ways. You can either use the predefined plot
|
||||
configurations or define your own.<br/>
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-plot.png">
|
||||
<img src="shots-small/dialog-plot.jpg" alt="Simulation plot" /><br/>
|
||||
The simulations are plotted using the
|
||||
<em>JFreeChart</em> plotting library.
|
||||
</a></div>
|
||||
</div>
|
||||
<h3>General</h3>
|
||||
<ul>
|
||||
<li><strong>Fully cross-platform</strong>, written in Java</li>
|
||||
<li><strong>Fully documented</strong> <a href="documentation.html">simulation
|
||||
methods</a></li>
|
||||
<li><strong>Open Source</strong>, source code available under the
|
||||
<a href="license.html">GNU GPL</a></li>
|
||||
</ul>
|
||||
<h3>User interface</h3>
|
||||
<ul>
|
||||
<li><strong>Easy-to-use user interface</strong> for
|
||||
rocket design</li>
|
||||
<li><strong>Real-time view of CG and CP</strong> position</li>
|
||||
<li><strong>Real-time flight altitude, velocity and
|
||||
acceleration</strong> information from a continuous simulation
|
||||
performed in the background</li>
|
||||
<li>Zoomable schematic view of rocket from the side or rear,
|
||||
with rotation around the center axis</li>
|
||||
</ul>
|
||||
<h3>Design</h3>
|
||||
<ul>
|
||||
<li>A multitude of available components to
|
||||
choose from</li>
|
||||
<li><strong>Trapezoidal</strong>, <strong>elliptical</strong>
|
||||
and <strong>free-form fins</strong> supported</li>
|
||||
<li>Support for <strong>canted fins</strong> (roll
|
||||
stabilization)</li>
|
||||
<li><strong>Staging</strong> and <strong>clustering</strong> support</li>
|
||||
<li>Automatic calculation of component mass and CG based on
|
||||
shape and density</li>
|
||||
<li>Ability to <strong>override mass and CG</strong> of
|
||||
components or stages separately</li>
|
||||
</ul>
|
||||
<h3>Simulation and analysis</h3>
|
||||
<ul>
|
||||
<li>Full <strong>six degree of freedom</strong> simulation</li>
|
||||
<li>Rocket stability computed using <strong>extended Barrowman
|
||||
method</strong></li>
|
||||
<li><strong>Automatic design optimization</strong> — you
|
||||
can optimize any number of rocket parameters for flight
|
||||
altitude, maximum velocity or a number of other values</li>
|
||||
<li>Realistic wind modeling</li>
|
||||
<li>Analysis of the <strong>effect of separate
|
||||
components</strong> on the stability, drag and roll
|
||||
characteristics of the rocket</li>
|
||||
<li><strong>Fully configurable plotting</strong>, with
|
||||
various preset configurations</li>
|
||||
<li>Simulation data can be <strong>exported to
|
||||
<acronym title="Comma Separated Values">CSV</acronym>
|
||||
files</strong> for further analysis</li>
|
||||
<li><strong>Simulation listeners</strong> allowing custom-made
|
||||
code to interact with the rocket during flight simulation</li>
|
||||
</ul>
|
||||
<h2 id="future">Planned future features</h2>
|
||||
<p>OpenRocket is under constant work in the free time of the
|
||||
developers. You can have a sneak preview on what has been
|
||||
planned by checking the
|
||||
<a href="https://raw.github.com/openrocket/openrocket/master/core/TODO">TODO-file</a>
|
||||
on github.</p>
|
||||
<p>Below are a few major features that are under consideration:</p>
|
||||
<ul>
|
||||
<li>Aerodynamic computation using
|
||||
<acronym title="Computational Fluid Dynamics">CFD</acronym>
|
||||
<a href="getinvolved.html" class="help">(help needed!)</a></li>
|
||||
<li>Better support for supersonic simulation
|
||||
<a href="getinvolved.html" class="help">(help needed!)</a></li>
|
||||
<li>Customized support for hybrid rocket motors and water
|
||||
rockets</li>
|
||||
<li>Importing and plotting actual flight data from altimeters</li>
|
||||
<li>Rocket flight animation</li>
|
||||
<li>A "wizard" for creating new rocket designs</li>
|
||||
<li class="spacer">More ideas are listed in the
|
||||
<a href="https://raw.github.com/openrocket/openrocket/master/core/TODO">TODO-file</a>!</li>
|
||||
</ul>
|
||||
<p>If you want to help make OpenRocket the best rocket simulator,
|
||||
don't hesitate to <a href="getinvolved.html">Get involved!</a></p>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Features and screenshots</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.16" />
|
||||
</head>
|
||||
<body class="page_features">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Features of OpenRocket</h1>
|
||||
<div class="content">
|
||||
<h2>Current features</h2>
|
||||
<div class="screenshots">
|
||||
<div class="smallshotconst"><a href="shots/main.png">
|
||||
<img src="shots-small/main.jpg" alt="Main window" /><br/>
|
||||
The main rocket design window is used to design the rocket
|
||||
and it also provides information about a flight simulation
|
||||
in real-time.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dart.png">
|
||||
<img src="shots-small/dart.jpg" alt="Realistic 3D Rendering" /><br/>
|
||||
Paint and decals can be added and rendered in 3D.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-edit.png">
|
||||
<img src="shots-small/dialog-edit.jpg" alt="Component edit
|
||||
dialog" /><br/>
|
||||
The component shape and properties are defined in their own
|
||||
dialog.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-analysis.png">
|
||||
<img src="shots-small/dialog-analysis.jpg" alt="Analysis
|
||||
dialog" /><br/>
|
||||
You can analyze the effect of individual components on the
|
||||
stability, drag and roll characteristics of the rocket.
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-plot-options.png">
|
||||
<img src="shots-small/dialog-plot-options.jpg"
|
||||
alt="Simulation plot options" /><br/>
|
||||
The simulation results can be plotted in a multitude
|
||||
of ways. You can either use the predefined plot
|
||||
configurations or define your own.<br/>
|
||||
</a></div>
|
||||
<div class="smallshotconst"><a href="shots/dialog-plot.png">
|
||||
<img src="shots-small/dialog-plot.jpg" alt="Simulation plot" /><br/>
|
||||
The simulations are plotted using the
|
||||
<em>JFreeChart</em> plotting library.
|
||||
</a></div>
|
||||
</div>
|
||||
<h3>General</h3>
|
||||
<ul>
|
||||
<li><strong>Fully cross-platform</strong>, written in Java</li>
|
||||
<li><strong>Fully documented</strong> <a href="documentation.html">simulation
|
||||
methods</a></li>
|
||||
<li><strong>Open Source</strong>, source code available under the
|
||||
<a href="license.html">GNU GPL</a></li>
|
||||
</ul>
|
||||
<h3>User interface</h3>
|
||||
<ul>
|
||||
<li><strong>Easy-to-use user interface</strong> for
|
||||
rocket design</li>
|
||||
<li><strong>Real-time view of CG and CP</strong> position</li>
|
||||
<li><strong>Real-time flight altitude, velocity and
|
||||
acceleration</strong> information from a continuous simulation
|
||||
performed in the background</li>
|
||||
<li>Zoomable schematic view of rocket from the side or rear,
|
||||
with rotation around the center axis</li>
|
||||
</ul>
|
||||
<h3>Design</h3>
|
||||
<ul>
|
||||
<li>A multitude of available components to
|
||||
choose from</li>
|
||||
<li><strong>Trapezoidal</strong>, <strong>elliptical</strong>
|
||||
and <strong>free-form fins</strong> supported</li>
|
||||
<li>Support for <strong>canted fins</strong> (roll
|
||||
stabilization)</li>
|
||||
<li><strong>Staging</strong> and <strong>clustering</strong> support</li>
|
||||
<li>Automatic calculation of component mass and CG based on
|
||||
shape and density</li>
|
||||
<li>Ability to <strong>override mass and CG</strong> of
|
||||
components or stages separately</li>
|
||||
</ul>
|
||||
<h3>Simulation and analysis</h3>
|
||||
<ul>
|
||||
<li>Full <strong>six degree of freedom</strong> simulation</li>
|
||||
<li>Rocket stability computed using <strong>extended Barrowman
|
||||
method</strong></li>
|
||||
<li><strong>Automatic design optimization</strong> — you
|
||||
can optimize any number of rocket parameters for flight
|
||||
altitude, maximum velocity or a number of other values</li>
|
||||
<li>Realistic wind modeling</li>
|
||||
<li>Analysis of the <strong>effect of separate
|
||||
components</strong> on the stability, drag and roll
|
||||
characteristics of the rocket</li>
|
||||
<li><strong>Fully configurable plotting</strong>, with
|
||||
various preset configurations</li>
|
||||
<li>Simulation data can be <strong>exported to
|
||||
<acronym title="Comma Separated Values">CSV</acronym>
|
||||
files</strong> for further analysis</li>
|
||||
<li><strong>Simulation listeners</strong> allowing custom-made
|
||||
code to interact with the rocket during flight simulation</li>
|
||||
</ul>
|
||||
<h2 id="future">Planned future features</h2>
|
||||
<p>OpenRocket is under constant work in the free time of the
|
||||
developers. You can have a sneak preview on what has been
|
||||
planned by checking the
|
||||
<a href="https://raw.github.com/openrocket/openrocket/master/core/TODO">TODO-file</a>
|
||||
on github.</p>
|
||||
<p>Below are a few major features that are under consideration:</p>
|
||||
<ul>
|
||||
<li>Aerodynamic computation using
|
||||
<acronym title="Computational Fluid Dynamics">CFD</acronym>
|
||||
<a href="getinvolved.html" class="help">(help needed!)</a></li>
|
||||
<li>Better support for supersonic simulation
|
||||
<a href="getinvolved.html" class="help">(help needed!)</a></li>
|
||||
<li>Customized support for hybrid rocket motors and water
|
||||
rockets</li>
|
||||
<li>Importing and plotting actual flight data from altimeters</li>
|
||||
<li>Rocket flight animation</li>
|
||||
<li>A "wizard" for creating new rocket designs</li>
|
||||
<li class="spacer">More ideas are listed in the
|
||||
<a href="https://raw.github.com/openrocket/openrocket/master/core/TODO">TODO-file</a>!</li>
|
||||
</ul>
|
||||
<p>If you want to help make OpenRocket the best rocket simulator,
|
||||
don't hesitate to <a href="getinvolved.html">Get involved!</a></p>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,134 +1,134 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Get involved!</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.17" />
|
||||
</head>
|
||||
<body class="page_getinvolved">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Get involved in OpenRocket development</h1>
|
||||
<div class="content">
|
||||
<h2>How can I help OpenRocket?</h2>
|
||||
<p>OpenRocket is an Open Source project, meaning that the source
|
||||
code is freely available and anybody can help make the software
|
||||
better. The program is mainly developed by Sampo Niskanen in
|
||||
his free time. Help is very much appreciated. You don't even
|
||||
need coding skills, as there are other things to do as well.</p>
|
||||
<p>Below are a few suggestions of areas that would need help. If
|
||||
you'd like to participate, please
|
||||
<a href="https://lists.sourceforge.net/lists/listinfo/openrocket-devel">join
|
||||
the development mailing list</a> and introduce your ideas there.</p>
|
||||
<ul class="spacing">
|
||||
<li><a href="#development">Java development</a></li>
|
||||
<li><a href="#aerodynamics">Aerodynamic computation methods</a></li>
|
||||
<li><a href="#documentation">Documentation</a></li>
|
||||
<li><a href="#other">Other</a></li>
|
||||
</ul>
|
||||
<h3 id="development">Java development</h3>
|
||||
<p>Below are a few ideas about what kind of input developers can
|
||||
provide or features that could be implemented. For more
|
||||
information see the feature roadmap in the distribution
|
||||
<a href="http://openrocket.svn.sourceforge.net/viewvc/openrocket/trunk/TODO">TODO-file</a>.</p>
|
||||
<ul>
|
||||
<li>3D visualization of the rocket during design and flight
|
||||
<span class="note"><em>(Help needed!)</em></span>
|
||||
</li>
|
||||
<li>Printing of designs, simulation results, fin planforms
|
||||
etc</li>
|
||||
<li>Memory profiling and leakage reduction</li>
|
||||
<li>Writing RockSim design files</li>
|
||||
<li>UI enhancements, for example zooming plots etc.</li>
|
||||
</ul>
|
||||
<h3 id="aerodynamics">Aerodynamic computation methods</h3>
|
||||
<p>There is still work to be done in the aerodynamic computation
|
||||
methods of OpenRocket. At least the following items need
|
||||
help. I will gladly provide help in creating and even
|
||||
implementing the computational methods.</p>
|
||||
<ul>
|
||||
<li>Simulating rockets at supersonic velocities (drag
|
||||
coefficient and CG position).</li>
|
||||
<li>Support for external pods and tube fins</li>
|
||||
<li><acronym title="Computational Fluid Dynamics">CFD</acronym>
|
||||
methods for simulation</li>
|
||||
</ul>
|
||||
<h3 id="documentation">Documentation tasks</h3>
|
||||
<p>Contributions to the
|
||||
<a href="http://wiki.openrocket.info/User%27s_Guide">OpenRocket
|
||||
User's guide</a> are dearly needed. Below are examples of
|
||||
topics.</p>
|
||||
<ul>
|
||||
<li>Getting started guide</li>
|
||||
<li>How to make staged and clustered designs</li>
|
||||
<li>Using mass/CG overrides for simulation accuracy</li>
|
||||
<li>Using simulations</li>
|
||||
<li>Effect of the simulation parameters</li>
|
||||
<li>Simulation method limitations</li>
|
||||
<li>Using simulation listeners (including examples)</li>
|
||||
</ul>
|
||||
<h3 id="other">Other</h3>
|
||||
<ul>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translating OpenRocket</a> to your language</li>
|
||||
<li>Creating good and interesting example designs that
|
||||
demonstrate some OpenRocket features.</li>
|
||||
<li>Hosting a place to share rocket designs with other
|
||||
enthusiasts.</li>
|
||||
<li>Giving input and suggestions on how to make OpenRocket
|
||||
better.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket — Get involved!</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.16" />
|
||||
</head>
|
||||
<body class="page_getinvolved">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Get involved in OpenRocket development</h1>
|
||||
<div class="content">
|
||||
<h2>How can I help OpenRocket?</h2>
|
||||
<p>OpenRocket is an Open Source project, meaning that the source
|
||||
code is freely available and anybody can help make the software
|
||||
better. The program is mainly developed by Sampo Niskanen in
|
||||
his free time. Help is very much appreciated. You don't even
|
||||
need coding skills, as there are other things to do as well.</p>
|
||||
<p>Below are a few suggestions of areas that would need help. If
|
||||
you'd like to participate, please
|
||||
<a href="https://lists.sourceforge.net/lists/listinfo/openrocket-devel">join
|
||||
the development mailing list</a> and introduce your ideas there.</p>
|
||||
<ul class="spacing">
|
||||
<li><a href="#development">Java development</a></li>
|
||||
<li><a href="#aerodynamics">Aerodynamic computation methods</a></li>
|
||||
<li><a href="#documentation">Documentation</a></li>
|
||||
<li><a href="#other">Other</a></li>
|
||||
</ul>
|
||||
<h3 id="development">Java development</h3>
|
||||
<p>Below are a few ideas about what kind of input developers can
|
||||
provide or features that could be implemented. For more
|
||||
information see the feature roadmap in the distribution
|
||||
<a href="http://openrocket.svn.sourceforge.net/viewvc/openrocket/trunk/TODO">TODO-file</a>.</p>
|
||||
<ul>
|
||||
<li>3D visualization of the rocket during design and flight
|
||||
<span class="note"><em>(Help needed!)</em></span>
|
||||
</li>
|
||||
<li>Printing of designs, simulation results, fin planforms
|
||||
etc</li>
|
||||
<li>Memory profiling and leakage reduction</li>
|
||||
<li>Writing RockSim design files</li>
|
||||
<li>UI enhancements, for example zooming plots etc.</li>
|
||||
</ul>
|
||||
<h3 id="aerodynamics">Aerodynamic computation methods</h3>
|
||||
<p>There is still work to be done in the aerodynamic computation
|
||||
methods of OpenRocket. At least the following items need
|
||||
help. I will gladly provide help in creating and even
|
||||
implementing the computational methods.</p>
|
||||
<ul>
|
||||
<li>Simulating rockets at supersonic velocities (drag
|
||||
coefficient and CG position).</li>
|
||||
<li>Support for external pods and tube fins</li>
|
||||
<li><acronym title="Computational Fluid Dynamics">CFD</acronym>
|
||||
methods for simulation</li>
|
||||
</ul>
|
||||
<h3 id="documentation">Documentation tasks</h3>
|
||||
<p>Contributions to the
|
||||
<a href="http://wiki.openrocket.info/User%27s_Guide">OpenRocket
|
||||
User's guide</a> are dearly needed. Below are examples of
|
||||
topics.</p>
|
||||
<ul>
|
||||
<li>Getting started guide</li>
|
||||
<li>How to make staged and clustered designs</li>
|
||||
<li>Using mass/CG overrides for simulation accuracy</li>
|
||||
<li>Using simulations</li>
|
||||
<li>Effect of the simulation parameters</li>
|
||||
<li>Simulation method limitations</li>
|
||||
<li>Using simulation listeners (including examples)</li>
|
||||
</ul>
|
||||
<h3 id="other">Other</h3>
|
||||
<ul>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translating OpenRocket</a> to your language</li>
|
||||
<li>Creating good and interesting example designs that
|
||||
demonstrate some OpenRocket features.</li>
|
||||
<li>Hosting a place to share rocket designs with other
|
||||
enthusiasts.</li>
|
||||
<li>Giving input and suggestions on how to make OpenRocket
|
||||
better.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,326 +1,333 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.17" />
|
||||
</head>
|
||||
<body class="page_index">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>OpenRocket — an Open Source model rocket simulator</h1>
|
||||
<div class="content">
|
||||
<h2>Introduction</h2>
|
||||
<div class="rightpane">
|
||||
<div class="downloadbox">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/OpenRocket-14.03.jar/download">
|
||||
<strong>Download now!</strong>
|
||||
<span>OpenRocket-14.03.jar</span>
|
||||
</a>
|
||||
<span class="alternative">
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="download.html">Other versions</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="screenshot">
|
||||
<a href="shots/main.png"><img src="shots-small/main.jpg" alt="Main window" /></a>
|
||||
<a href="features.html">
|
||||
More screenshots...
|
||||
</a>
|
||||
</div>
|
||||
<div class="support">
|
||||
<a href="http://sourceforge.net/donate/index.php?group_id=260357"><img src="project-support.jpg" width="88" height="32" alt="Support This Project" /> </a>
|
||||
</div>
|
||||
<div class="support">
|
||||
<a href="http://www.yourkit.com/java/profiler/index.jsp"><img src="yourkit.png" width="88" height="32" alt="YourKit Supports This Project" /> </a>
|
||||
</div>
|
||||
</div>
|
||||
<p><strong>OpenRocket</strong> is a free, fully featured model
|
||||
rocket simulator that allows you to design and simulate your
|
||||
rockets before actually building and flying them.</p>
|
||||
<p>The main features include:</p>
|
||||
<ul>
|
||||
<li>Six-degree-of-freedom flight simulation</li>
|
||||
<li>Automatic design optimization</li>
|
||||
<li>Realtime simulated altitude, velocity and acceleration display</li>
|
||||
<li>Staging and clustering support</li>
|
||||
<li>Cross-platform (Java-based)</li>
|
||||
</ul>
|
||||
<p>Read more about its <a
|
||||
href="features.html">features and see screenshots</a>.
|
||||
</p>
|
||||
<p>OpenRocket is an Open Source project licensed under the
|
||||
<a href="license.html">GNU GPL</a>. This means that the
|
||||
software is free to use for whatever purposes, and the source
|
||||
code is also available for studying and extending.
|
||||
</p>
|
||||
<p>OpenRocket needs help to become even better. Implementing
|
||||
features, writing documentation and creating example designs are
|
||||
just a few ways of helping. If you are interested in helping
|
||||
make OpenRocket the best rocket simulator out there, please
|
||||
<a href="getinvolved.html"><em>Get involved!</em></a>
|
||||
</p>
|
||||
<p>YourKit is supporting OpenRocket open source project with its
|
||||
full-featured Java Profiler.
|
||||
YourKit, LLC is the creator of innovative and intelligent tools for profiling
|
||||
Java and .NET applications. Take a look at YourKit's leading software products:
|
||||
<a href="http://www.yourkit.com/java/profiler/index.jsp">YourKit Java
|
||||
Profiler</a> and
|
||||
<a href="http://www.yourkit.com/.net/profiler/index.jsp">YourKit .NET
|
||||
Profiler</a>.
|
||||
</p>
|
||||
<div class="clear"></div>
|
||||
<div class="news">
|
||||
<h2>News</h2>
|
||||
<p><span class="date">21.03.2014:</span> Version 14.03 is
|
||||
<a href="download.html">released</a>! This release contains the
|
||||
new photo realistic renderer (in the Tools menu) which allows one to visualize
|
||||
the rocket in the air. There are various bug fixes in the configuration
|
||||
and motor selection windows as well.
|
||||
</p>
|
||||
<p><span class="date">01.01.2014:</span> Version 13.11.2 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes,
|
||||
usability improvements, and layout fixes.
|
||||
</p>
|
||||
<p><span class="date">15.11.2013:</span> Version 13.11.1 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes
|
||||
including fixing Tube Coupler configuration, various exceptions in
|
||||
the flight configuration tab, updated 3d libraris (which didn't really make
|
||||
it into previous versions).</p>
|
||||
<p><span class="date">8.11.2013:</span> Version 13.11 is
|
||||
<a href="download.html">released</a>! This release simplifies
|
||||
flight configurations by replacing the dialog with the configuration
|
||||
tab. Motor filtering in the motor chooser dialog has been enhanced.
|
||||
Chineese translations have been added and Russian translations updated.
|
||||
Updated the 3D libraries, and squashed some bugs introduced by Java 1.7.0_45-b18.</p>
|
||||
<p><span class="date">6.10.2013:</span> Version 13.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
and includes updated 3D libraries and new thrust curves for
|
||||
Aerotech C3 and D2.</p>
|
||||
<p><span class="date">8.9.2013:</span> Version 13.09 is
|
||||
<a href="download.html">released</a>! This release contains
|
||||
numerous bug fixes, updated 3D JOGL libraries, and separated
|
||||
simulation edit and plot dialogs.</p>
|
||||
<p><span class="date">4.5.2013:</span> Version 13.05 is
|
||||
<a href="download.html">released</a>! This release contains a huge
|
||||
number of improvements, the main ones including realistic 3D
|
||||
rendering with decals, flight configurations, lower stage descent
|
||||
simulation, boosted dart support and new translations for
|
||||
Portuguese and Japanese. These are thanks to many
|
||||
contributors.</p>
|
||||
<p>Version 13.05 also changes the file format to be ZIP-based.
|
||||
Versions earlier than 12.03 will not be able to read files saved
|
||||
by this version.</p>
|
||||
<p><span class="date">28.9.2012:</span> Version 12.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
fixing numerous bugs introduced in 12.09. The only new feature is
|
||||
the option to automatically open the latest design file on startup
|
||||
(in <em>Edit</em> → <em>Preferences</em> → <em>Options</em>).
|
||||
<p><span class="date">23.9.2012:</span> Version 12.09 for Android is
|
||||
<a href="download.html">released</a>! The major improvement is the
|
||||
possibility to edit simulation parameters, thanks to work by Kevin
|
||||
Ruland.</p>
|
||||
<p><span class="date">16.9.2012:</span> Version 12.09 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version contains a huge number of new features by many contributors:</p>
|
||||
<ul>
|
||||
<li>3D rocket design view</li>
|
||||
<li>Component Presets</li>
|
||||
<li>Custom expressions in simulations</li>
|
||||
<li>Printing for centering ring and clustered centering ring components</li>
|
||||
<li>Support simple arthmatic in dimension entry</li>
|
||||
<li>Support deploying recovery device at stage separation</li>
|
||||
<li>Support for fractional inches (1/64) for unit length</li>
|
||||
<li>Added preference for windspeed units separately</li>
|
||||
<li>Added "most recently used files" in File Menu</li>
|
||||
<li>Improved printed accurracy in fin marking guide</li>
|
||||
<li>Calibration rulers added to printed templates</li>
|
||||
<li>Translations in Czech and Polish, numerous updates</li>
|
||||
</ul>
|
||||
<p><span class="date">10.3.2012:</span> Version 12.03 for desktop
|
||||
and Android is <a href="download.html">released</a>!</p>
|
||||
<p>In this release the version numbering scheme has been changed.
|
||||
From now on the version number is <em>YY.MM</em> indicating the
|
||||
year and month of the release. Bug fix releases are indicated by
|
||||
an added "<em>.1</em>".</p>
|
||||
<p>This also marks the first release for Android devices. In this
|
||||
first release you can open files and examine existing simulations,
|
||||
stability data and motor files. The Android port is thanks to
|
||||
work by Kevin Ruland.</p>
|
||||
<p>Enhancements in the desktop version include saving designs in RKT
|
||||
format thanks to Doug Pedrick, freeform fin set import form images
|
||||
by Jason Blood, configurable stage separation
|
||||
events, guided help tours and displaying the computed motor
|
||||
designation class. The application has also been translated to
|
||||
Italian by Mauro Biasutti and Russian by the Sky Dart Team.</p>
|
||||
<p><span class="date">24.11.2011:</span> Version 1.1.9 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>For this version Richard Graham has implemented geodetic
|
||||
computation methods, which take into account the curvature of the
|
||||
Earth and the coriolis effect. The computation method is selected
|
||||
by the <em>Geodetic calculations</em> option in the simulation
|
||||
options. It's not <em>(yet)</em> a full spherical computation model, but
|
||||
should be accurate enough for almost all sub-orbital needs.</p>
|
||||
<p>Doug Pedrick has also enhanced the printing system with the
|
||||
ability to print fin positioning guides, transition templates and
|
||||
nose cone profiles. Other smaller enhancements and bug fixes are
|
||||
also included.</p>
|
||||
<p><span class="date">25.8.2011:</span> Version 1.1.8 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release contains bug fixes to the optimization methods.
|
||||
It also contains a workaround to a JRE bug that prevents running
|
||||
OpenRocket on some builds of Java 7.</p>
|
||||
<p>The web pages have also been somewhat updated and Boris du Reau has
|
||||
created <a href="http://openrocket.trans.free.fr/">a separate site</a>
|
||||
for coordinating the localization efforts for OpenRocket.</p>
|
||||
<p><span class="date">12.8.2011:</span> Version 1.1.7 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes automatic rocket design optimization
|
||||
support (<em>Analyze</em> → <em>Rocket optimization</em>).
|
||||
You can optimize any amount of rocket parameters for apogee
|
||||
altitude, maximum velocity or a number of different values.</p>
|
||||
<p>While the automatic optimization is a powerful tool, it is very
|
||||
easy to optimize against particulars of the simulation methods,
|
||||
instead of true physical phenomena. Always keep common sense at
|
||||
hand and take the results with a grain of salt.</p>
|
||||
<p><span class="date">22.7.2011:</span> Version 1.1.6 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes initial localization support and
|
||||
translations to French, German and Spanish. This is thanks to the
|
||||
great work of Boris du Reau, and the teams from Tripoli France,
|
||||
Tripoli Spain and ERIG e.V. If you prefer to use some other
|
||||
language than the system default, you can select the language on
|
||||
the "Options" tab of the preferences dialog.</p>
|
||||
<p>The release also includes design scaling support and numerous bug
|
||||
fixes.</p>
|
||||
<p><span class="date">10.6.2011:</span> Version 1.1.5 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes updates to the printing system which fixes
|
||||
printing on Windows.</p>
|
||||
<p><span class="date">5.3.2011:</span> Version 1.1.4 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes initial printing support, thanks to Doug
|
||||
Pedrick. Printing still has a few issues on some platforms.
|
||||
Various bugs have also been fixed.</p>
|
||||
<p><span class="date">6.10.2010:</span> Version 1.1.3 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes support for moving and copying components
|
||||
in the component tree using drag-and-drop. Use normal DnD for
|
||||
moving, and control-drag for copy. This release also fixes a
|
||||
severe bug in the undo system.</p>
|
||||
<p><span class="date">7.9.2010:</span> A bug-fix version 1.1.2 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release fixes a severe bug in 1.1.1 that prevented adding stages
|
||||
to rocket designs. Users are recommended to upgrade.</p>
|
||||
<p><span class="date">3.9.2010:</span> Version 1.1.1 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>For this release a major part of the simulator code has been
|
||||
rewritten for better flexibility in future development. It also
|
||||
includes a vastly improved thrust curve selection dialog, the
|
||||
possibility to loading user-defined thrust curves and better
|
||||
startup times than previous releases.</p>
|
||||
<p>Simulation listeners written for older versions of OpenRocket
|
||||
are not compatible with this release.</p>
|
||||
<p><span class="date">21.3.2010:</span> Version 1.1.0 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes the first support for loading RockSim
|
||||
rocket design files (.RKT), thanks to contributions by Doug
|
||||
Pedrick. It's also the kick-off of the 1.1 development branch of
|
||||
OpenRocket.</p>
|
||||
<p><span class="date">10.3.2010:</span> Version 1.0.0 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes several hundred new thrustcurves from
|
||||
<a href="http://www.thrustcurve.org/">thrustcurve.org</a> and some
|
||||
bug fixes. It is also a stable milestone, after which development
|
||||
on larger features will be started in a 1.1 branch. Look out
|
||||
for it! :-)</p>
|
||||
<p><span class="date">17.2.2010:</span> Version 0.9.6 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release updates the aerodynamic calculation methods to be
|
||||
more in line with the Barrowman method and enhances the simulation
|
||||
time step selection, in addition to fixing numerous bugs.</p>
|
||||
<p><span class="date">28.11.2009:</span> Version 0.9.5 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release <strong>fixes a serious bug in 0.9.4</strong> that
|
||||
prevented adding a tube coupler and centering ring to the same
|
||||
body tube, in addition to a few smaller additions. Users of
|
||||
0.9.4 should upgrade immediately!</p>
|
||||
<p><span class="date">24.11.2009:</span> Version 0.9.4 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version adds support for through-the-wall fin tabs,
|
||||
attaching components to coupler tubes, material editing, automatic
|
||||
update checking, in addition to fixing numerous bugs.</p>
|
||||
<p><span class="date">1.9.2009:</span> Version 0.9.3 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version includes lots of bug fixes and new features including
|
||||
data exporting, showing flight events in plots, example rocket designs,
|
||||
splitting clustered inner tubes and automated bug reporting.</p>
|
||||
<p><span class="date">13.7.2009:</span> Version 0.9.2 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version includes <strong>bug fixes for imperial unit
|
||||
conversions</strong> and UI improvements for motor selection.
|
||||
<em>All users of imperial units should upgrade!</em></p>
|
||||
<p><span class="date">9.6.2009:</span> The
|
||||
<a href="documentation.html">Master's thesis</a> for which OpenRocket
|
||||
was written for is now available!</p>
|
||||
<p>At the same time version 0.9.1 was
|
||||
<a href="download.html">released</a>. This release fixes various
|
||||
file handling bugs and adds small UI enhancements.</p>
|
||||
<p><span class="date">24.5.2009:</span> First version 0.9.0
|
||||
<a href="download.html">released</a>!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>OpenRocket</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="keywords" content="OpenRocket, model rocket, simulator, simulation, rocketry" />
|
||||
<link rel="stylesheet" type="text/css" href="layout.css" />
|
||||
<meta name="Generator" content="htp 1.16" />
|
||||
</head>
|
||||
<body class="page_index">
|
||||
<!--[if lte IE 6]>
|
||||
<div id="iewarn">
|
||||
You are using a browser that is <strong>8 years old!</strong>
|
||||
|
||||
In Internet-years that is <em>prehistoric!</em><br/>
|
||||
For the sanity of all webmasterkind,
|
||||
<em>please <a href="http://www.mozilla.com/">upgrade</a></em>. It's easy!
|
||||
</div>
|
||||
<![endif]-->
|
||||
<div class="menucontainer">
|
||||
<div class="menu">
|
||||
<div class="icon"><a href="index.html"></a></div>
|
||||
<ul>
|
||||
<li><a href="index.html">OpenRocket</a></li>
|
||||
<li><a href="features.html">Features and screenshots</a></li>
|
||||
<li><a href="download.html">Download</a></li>
|
||||
<li><a href="documentation.html">Documentation</a></li>
|
||||
<li><a href="http://wiki.openrocket.info/">Wiki pages</a></li>
|
||||
<li><a href="http://openrocket.trans.free.fr/">Translations</a></li>
|
||||
<li><a href="getinvolved.html">Get involved!</a></li>
|
||||
<li><a href="contact.html">
|
||||
Mailing lists<br/>
|
||||
Support forums<br/>
|
||||
Contact info</a></li>
|
||||
<!--
|
||||
<li><a href="report.html">
|
||||
Report a bug<br/>
|
||||
Request a feature</a></li>
|
||||
-->
|
||||
<li><a href="license.html">License</a></li>
|
||||
</ul>
|
||||
<div class="logo">
|
||||
<a href="http://sourceforge.net/projects/openrocket"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=260357&type=12" width="120" height="30" alt="Get OpenRocket at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1>OpenRocket — an Open Source model rocket simulator</h1>
|
||||
<div class="content">
|
||||
<h2>Introduction</h2>
|
||||
<div class="rightpane">
|
||||
<div class="downloadbox">
|
||||
<a class="main" href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/OpenRocket-14.03.jar/download">
|
||||
<strong>Download now!</strong>
|
||||
<span>OpenRocket-14.03.jar</span>
|
||||
</a>
|
||||
<span class="alternative">
|
||||
<a href="https://sourceforge.net/projects/openrocket/files/openrocket/14.03/ReleaseNotes/view">Release notes</a> |
|
||||
<a href="download.html">Other versions</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="screenshot">
|
||||
<a href="shots/main.png"><img src="shots-small/main.jpg" alt="Main window" /></a>
|
||||
<a href="features.html">
|
||||
More screenshots...
|
||||
</a>
|
||||
</div>
|
||||
<div class="support">
|
||||
<a href="http://sourceforge.net/donate/index.php?group_id=260357"><img src="project-support.jpg" width="88" height="32" alt="Support This Project" /> </a>
|
||||
</div>
|
||||
<div class="support">
|
||||
<a href="http://www.yourkit.com/java/profiler/index.jsp"><img src="yourkit.png" width="88" height="32" alt="YourKit Supports This Project" /> </a>
|
||||
</div>
|
||||
</div>
|
||||
<p><strong>OpenRocket</strong> is a free, fully featured model
|
||||
rocket simulator that allows you to design and simulate your
|
||||
rockets before actually building and flying them.</p>
|
||||
<p>The main features include:</p>
|
||||
<ul>
|
||||
<li>Six-degree-of-freedom flight simulation</li>
|
||||
<li>Automatic design optimization</li>
|
||||
<li>Realtime simulated altitude, velocity and acceleration display</li>
|
||||
<li>Staging and clustering support</li>
|
||||
<li>Cross-platform (Java-based)</li>
|
||||
</ul>
|
||||
<p>Read more about its <a
|
||||
href="features.html">features and see screenshots</a>.
|
||||
</p>
|
||||
<p>OpenRocket is an Open Source project licensed under the
|
||||
<a href="license.html">GNU GPL</a>. This means that the
|
||||
software is free to use for whatever purposes, and the source
|
||||
code is also available for studying and extending.
|
||||
</p>
|
||||
<p>OpenRocket needs help to become even better. Implementing
|
||||
features, writing documentation and creating example designs are
|
||||
just a few ways of helping. If you are interested in helping
|
||||
make OpenRocket the best rocket simulator out there, please
|
||||
<a href="getinvolved.html"><em>Get involved!</em></a>
|
||||
</p>
|
||||
<p>YourKit is supporting OpenRocket open source project with its
|
||||
full-featured Java Profiler.
|
||||
YourKit, LLC is the creator of innovative and intelligent tools for profiling
|
||||
Java and .NET applications. Take a look at YourKit's leading software products:
|
||||
<a href="http://www.yourkit.com/java/profiler/index.jsp">YourKit Java
|
||||
Profiler</a> and
|
||||
<a href="http://www.yourkit.com/.net/profiler/index.jsp">YourKit .NET
|
||||
Profiler</a>.
|
||||
</p>
|
||||
<div class="clear"></div>
|
||||
<div class="news">
|
||||
<h2>News</h2>
|
||||
<p><span class="date">21.05.2014:</span> Version 14.05 is
|
||||
<a href="download.html">released</a>! This release contains some minor features,
|
||||
bug fixes and updated thrust curves. New motor vendors Klima and Southern
|
||||
Cross Rocketry are included. The simulation will now compute optimum delay based
|
||||
on actual coast time. Components with CG and mass overrides are decorated with
|
||||
an icon in the component tree.
|
||||
</p>
|
||||
<p><span class="date">21.03.2014:</span> Version 14.03 is
|
||||
<a href="download.html">released</a>! This release contains the
|
||||
new photo realistic renderer (in the Tools menu) which allows one to visualize
|
||||
the rocket in the air. There are various bug fixes in the configuration
|
||||
and motor selection windows as well.
|
||||
</p>
|
||||
<p><span class="date">01.01.2014:</span> Version 13.11.2 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes,
|
||||
usability improvements, and layout fixes.
|
||||
</p>
|
||||
<p><span class="date">15.11.2013:</span> Version 13.11.1 is
|
||||
<a href="download.html">released</a>! This release contains bug fixes
|
||||
including fixing Tube Coupler configuration, various exceptions in
|
||||
the flight configuration tab, updated 3d libraris (which didn't really make
|
||||
it into previous versions).</p>
|
||||
<p><span class="date">8.11.2013:</span> Version 13.11 is
|
||||
<a href="download.html">released</a>! This release simplifies
|
||||
flight configurations by replacing the dialog with the configuration
|
||||
tab. Motor filtering in the motor chooser dialog has been enhanced.
|
||||
Chineese translations have been added and Russian translations updated.
|
||||
Updated the 3D libraries, and squashed some bugs introduced by Java 1.7.0_45-b18.</p>
|
||||
<p><span class="date">6.10.2013:</span> Version 13.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
and includes updated 3D libraries and new thrust curves for
|
||||
Aerotech C3 and D2.</p>
|
||||
<p><span class="date">8.9.2013:</span> Version 13.09 is
|
||||
<a href="download.html">released</a>! This release contains
|
||||
numerous bug fixes, updated 3D JOGL libraries, and separated
|
||||
simulation edit and plot dialogs.</p>
|
||||
<p><span class="date">4.5.2013:</span> Version 13.05 is
|
||||
<a href="download.html">released</a>! This release contains a huge
|
||||
number of improvements, the main ones including realistic 3D
|
||||
rendering with decals, flight configurations, lower stage descent
|
||||
simulation, boosted dart support and new translations for
|
||||
Portuguese and Japanese. These are thanks to many
|
||||
contributors.</p>
|
||||
<p>Version 13.05 also changes the file format to be ZIP-based.
|
||||
Versions earlier than 12.03 will not be able to read files saved
|
||||
by this version.</p>
|
||||
<p><span class="date">28.9.2012:</span> Version 12.09.1 is
|
||||
<a href="download.html">released</a>! This is a bug-fix release,
|
||||
fixing numerous bugs introduced in 12.09. The only new feature is
|
||||
the option to automatically open the latest design file on startup
|
||||
(in <em>Edit</em> → <em>Preferences</em> → <em>Options</em>).
|
||||
<p><span class="date">23.9.2012:</span> Version 12.09 for Android is
|
||||
<a href="download.html">released</a>! The major improvement is the
|
||||
possibility to edit simulation parameters, thanks to work by Kevin
|
||||
Ruland.</p>
|
||||
<p><span class="date">16.9.2012:</span> Version 12.09 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version contains a huge number of new features by many contributors:</p>
|
||||
<ul>
|
||||
<li>3D rocket design view</li>
|
||||
<li>Component Presets</li>
|
||||
<li>Custom expressions in simulations</li>
|
||||
<li>Printing for centering ring and clustered centering ring components</li>
|
||||
<li>Support simple arthmatic in dimension entry</li>
|
||||
<li>Support deploying recovery device at stage separation</li>
|
||||
<li>Support for fractional inches (1/64) for unit length</li>
|
||||
<li>Added preference for windspeed units separately</li>
|
||||
<li>Added "most recently used files" in File Menu</li>
|
||||
<li>Improved printed accurracy in fin marking guide</li>
|
||||
<li>Calibration rulers added to printed templates</li>
|
||||
<li>Translations in Czech and Polish, numerous updates</li>
|
||||
</ul>
|
||||
<p><span class="date">10.3.2012:</span> Version 12.03 for desktop
|
||||
and Android is <a href="download.html">released</a>!</p>
|
||||
<p>In this release the version numbering scheme has been changed.
|
||||
From now on the version number is <em>YY.MM</em> indicating the
|
||||
year and month of the release. Bug fix releases are indicated by
|
||||
an added "<em>.1</em>".</p>
|
||||
<p>This also marks the first release for Android devices. In this
|
||||
first release you can open files and examine existing simulations,
|
||||
stability data and motor files. The Android port is thanks to
|
||||
work by Kevin Ruland.</p>
|
||||
<p>Enhancements in the desktop version include saving designs in RKT
|
||||
format thanks to Doug Pedrick, freeform fin set import form images
|
||||
by Jason Blood, configurable stage separation
|
||||
events, guided help tours and displaying the computed motor
|
||||
designation class. The application has also been translated to
|
||||
Italian by Mauro Biasutti and Russian by the Sky Dart Team.</p>
|
||||
<p><span class="date">24.11.2011:</span> Version 1.1.9 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>For this version Richard Graham has implemented geodetic
|
||||
computation methods, which take into account the curvature of the
|
||||
Earth and the coriolis effect. The computation method is selected
|
||||
by the <em>Geodetic calculations</em> option in the simulation
|
||||
options. It's not <em>(yet)</em> a full spherical computation model, but
|
||||
should be accurate enough for almost all sub-orbital needs.</p>
|
||||
<p>Doug Pedrick has also enhanced the printing system with the
|
||||
ability to print fin positioning guides, transition templates and
|
||||
nose cone profiles. Other smaller enhancements and bug fixes are
|
||||
also included.</p>
|
||||
<p><span class="date">25.8.2011:</span> Version 1.1.8 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release contains bug fixes to the optimization methods.
|
||||
It also contains a workaround to a JRE bug that prevents running
|
||||
OpenRocket on some builds of Java 7.</p>
|
||||
<p>The web pages have also been somewhat updated and Boris du Reau has
|
||||
created <a href="http://openrocket.trans.free.fr/">a separate site</a>
|
||||
for coordinating the localization efforts for OpenRocket.</p>
|
||||
<p><span class="date">12.8.2011:</span> Version 1.1.7 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes automatic rocket design optimization
|
||||
support (<em>Analyze</em> → <em>Rocket optimization</em>).
|
||||
You can optimize any amount of rocket parameters for apogee
|
||||
altitude, maximum velocity or a number of different values.</p>
|
||||
<p>While the automatic optimization is a powerful tool, it is very
|
||||
easy to optimize against particulars of the simulation methods,
|
||||
instead of true physical phenomena. Always keep common sense at
|
||||
hand and take the results with a grain of salt.</p>
|
||||
<p><span class="date">22.7.2011:</span> Version 1.1.6 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes initial localization support and
|
||||
translations to French, German and Spanish. This is thanks to the
|
||||
great work of Boris du Reau, and the teams from Tripoli France,
|
||||
Tripoli Spain and ERIG e.V. If you prefer to use some other
|
||||
language than the system default, you can select the language on
|
||||
the "Options" tab of the preferences dialog.</p>
|
||||
<p>The release also includes design scaling support and numerous bug
|
||||
fixes.</p>
|
||||
<p><span class="date">10.6.2011:</span> Version 1.1.5 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes updates to the printing system which fixes
|
||||
printing on Windows.</p>
|
||||
<p><span class="date">5.3.2011:</span> Version 1.1.4 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes initial printing support, thanks to Doug
|
||||
Pedrick. Printing still has a few issues on some platforms.
|
||||
Various bugs have also been fixed.</p>
|
||||
<p><span class="date">6.10.2010:</span> Version 1.1.3 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes support for moving and copying components
|
||||
in the component tree using drag-and-drop. Use normal DnD for
|
||||
moving, and control-drag for copy. This release also fixes a
|
||||
severe bug in the undo system.</p>
|
||||
<p><span class="date">7.9.2010:</span> A bug-fix version 1.1.2 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release fixes a severe bug in 1.1.1 that prevented adding stages
|
||||
to rocket designs. Users are recommended to upgrade.</p>
|
||||
<p><span class="date">3.9.2010:</span> Version 1.1.1 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>For this release a major part of the simulator code has been
|
||||
rewritten for better flexibility in future development. It also
|
||||
includes a vastly improved thrust curve selection dialog, the
|
||||
possibility to loading user-defined thrust curves and better
|
||||
startup times than previous releases.</p>
|
||||
<p>Simulation listeners written for older versions of OpenRocket
|
||||
are not compatible with this release.</p>
|
||||
<p><span class="date">21.3.2010:</span> Version 1.1.0 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes the first support for loading RockSim
|
||||
rocket design files (.RKT), thanks to contributions by Doug
|
||||
Pedrick. It's also the kick-off of the 1.1 development branch of
|
||||
OpenRocket.</p>
|
||||
<p><span class="date">10.3.2010:</span> Version 1.0.0 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release includes several hundred new thrustcurves from
|
||||
<a href="http://www.thrustcurve.org/">thrustcurve.org</a> and some
|
||||
bug fixes. It is also a stable milestone, after which development
|
||||
on larger features will be started in a 1.1 branch. Look out
|
||||
for it! :-)</p>
|
||||
<p><span class="date">17.2.2010:</span> Version 0.9.6 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release updates the aerodynamic calculation methods to be
|
||||
more in line with the Barrowman method and enhances the simulation
|
||||
time step selection, in addition to fixing numerous bugs.</p>
|
||||
<p><span class="date">28.11.2009:</span> Version 0.9.5 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This release <strong>fixes a serious bug in 0.9.4</strong> that
|
||||
prevented adding a tube coupler and centering ring to the same
|
||||
body tube, in addition to a few smaller additions. Users of
|
||||
0.9.4 should upgrade immediately!</p>
|
||||
<p><span class="date">24.11.2009:</span> Version 0.9.4 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version adds support for through-the-wall fin tabs,
|
||||
attaching components to coupler tubes, material editing, automatic
|
||||
update checking, in addition to fixing numerous bugs.</p>
|
||||
<p><span class="date">1.9.2009:</span> Version 0.9.3 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version includes lots of bug fixes and new features including
|
||||
data exporting, showing flight events in plots, example rocket designs,
|
||||
splitting clustered inner tubes and automated bug reporting.</p>
|
||||
<p><span class="date">13.7.2009:</span> Version 0.9.2 is
|
||||
<a href="download.html">released</a>!</p>
|
||||
<p>This version includes <strong>bug fixes for imperial unit
|
||||
conversions</strong> and UI improvements for motor selection.
|
||||
<em>All users of imperial units should upgrade!</em></p>
|
||||
<p><span class="date">9.6.2009:</span> The
|
||||
<a href="documentation.html">Master's thesis</a> for which OpenRocket
|
||||
was written for is now available!</p>
|
||||
<p>At the same time version 0.9.1 was
|
||||
<a href="download.html">released</a>. This release fixes various
|
||||
file handling bugs and adds small UI enhancements.</p>
|
||||
<p><span class="date">24.5.2009:</span> First version 0.9.0
|
||||
<a href="download.html">released</a>!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="valid">
|
||||
<p><a href="http://validator.w3.org/check/referer"><img src="valid-xhtml10.png" alt="Valid XHTML 1.0!" /></a>
|
||||
</p>
|
||||
</div>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/openrocket/" : "http://apps.sourceforge.net/piwik/openrocket/");
|
||||
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script><script type="text/javascript">
|
||||
piwik_action_name = '';
|
||||
piwik_idsite = 1;
|
||||
piwik_url = pkBaseURL + "piwik.php";
|
||||
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
|
||||
</script>
|
||||
<noscript><p><img src="http://apps.sourceforge.net/piwik/openrocket/piwik.php?idsite=1" alt="" /></p></noscript>
|
||||
<!-- End Piwik Tag -->
|
||||
</body>
|
||||
</html>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -9,6 +9,14 @@
|
||||
|
||||
<!--- Remember to move the position of "onlyrecent" below! --->
|
||||
|
||||
<p><span class="date">21.05.2014:</span> Version 14.05 is
|
||||
<a href="download.html">released</a>! This release contains some minor features,
|
||||
bug fixes and updated thrust curves. New motor vendors Klima and Southern
|
||||
Cross Rocketry are included. The simulation will now compute optimum delay based
|
||||
on actual coast time. Components with CG and mass overrides are decorated with
|
||||
an icon in the component tree.
|
||||
</p>
|
||||
|
||||
<p><span class="date">21.03.2014:</span> Version 14.03 is
|
||||
<a href="download.html">released</a>! This release contains the
|
||||
new photo realistic renderer (in the Tools menu) which allows one to visualize
|
||||
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user