<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Open Moon Project &#187; on the moon</title>
	<atom:link href="http://openmoonproject.com/category/on-the-moon/feed/" rel="self" type="application/rss+xml" />
	<link>http://openmoonproject.com</link>
	<description>Open Moon Project - Open Ideas - Open Achievements</description>
	<lastBuildDate>Sun, 25 Dec 2011 21:37:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Moon pics</title>
		<link>http://openmoonproject.com/on-the-moon/moon-pics/</link>
		<comments>http://openmoonproject.com/on-the-moon/moon-pics/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 06:42:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Electronics in Space]]></category>
		<category><![CDATA[on the moon]]></category>
		<category><![CDATA[Space navigation]]></category>
		<category><![CDATA[Latest moon rocket engine]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/on-the-moon/moon-pics/</guid>
		<description><![CDATA[Hi see pics]]></description>
			<content:encoded><![CDATA[<p>Hi see pics</p>
<p><a href="http://openmoonproject.com/wp-content/uploads/2011/07/20110723-013907.jpg"><img src="http://openmoonproject.com/wp-content/uploads/2011/07/20110723-013907.jpg" alt="20110723-013907.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://openmoonproject.com/wp-content/uploads/2011/07/20110723-014011.jpg"><img src="http://openmoonproject.com/wp-content/uploads/2011/07/20110723-014011.jpg" alt="20110723-014011.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://openmoonproject.com/wp-content/uploads/2011/07/20110723-014120.jpg"><img src="http://openmoonproject.com/wp-content/uploads/2011/07/20110723-014120.jpg" alt="20110723-014120.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/on-the-moon/moon-pics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYSQL Tuning and Optimizing of my.ini or my.cnf</title>
		<link>http://openmoonproject.com/leaving-earth/mysql-tuning-and-optimizing-of-my-ini-or-my-cnf/</link>
		<comments>http://openmoonproject.com/leaving-earth/mysql-tuning-and-optimizing-of-my-ini-or-my-cnf/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 10:35:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[leaving earth]]></category>
		<category><![CDATA[MYSQL DATABASE]]></category>
		<category><![CDATA[on the moon]]></category>
		<category><![CDATA[Space navigation]]></category>
		<category><![CDATA[MYSQL Tuning and Optimizing of my.ini or my.cnf]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/?p=271</guid>
		<description><![CDATA[One of the factors with the biggest impact on database performance is not the MySQL settings, but your queries! Make sure you have optimized all your queries first, and have created the right indexes on your tables for MySQL to use. When tuning MySQL, the two most important variables to configure are key_buffer_size and table_cache. [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial;"><span style="font-family: Arial;">One of the factors with the  biggest impact on database performance is not the MySQL settings, but  your queries! Make sure you have optimized all your queries first, and  have created the right indexes on your tables for MySQL to use.</span></span></p>
<p>When tuning MySQL, the two most important variables to configure are <strong> key_buffer_size</strong> and <strong>table_cache</strong>. You should first feel confident that  you have these set appropriately before trying to optimize any other variables. Ideally, <strong>key_buffer_size</strong> will be large enough to contain all the indexes  (i.e. at least the total size of all .MYI files on the server) of your MyISAM tables.</p>
<p>1. <strong><span style="color: red;">query_cache_size</span></strong>:<br />
* MySQL provides one feature that can prove very handy – a  query cache. In a situation where the database has to repeatedly run the  same queries on the same data set, returning the same results each  time, MySQL can cache the result set, avoiding the overhead of running  through the data over and over and is extremely helpful on busy servers.<br />
2. <strong><span style="color: red;">key_buffer_size</span></strong>:<br />
* The value of key_buffer_size is the size of the buffer used  with indexes. The larger the buffer, the faster the SQL command will  finish and a result will be returned. The rule-of-thumb is to set the  key_buffer_size to at least a quarter, but no more than half, of the  total amount of memory on the server. Ideally, it will be <strong>large</strong> enough to contain all the indexes (the total size of all .MYI files on the server).<br />
* A simple way to check the actual performance of the buffer  is to examine four additional variables: key_read_requests, key_reads,  key_write_requests, and key_writes.<br />
* If you divide the value of key_read by the value of  key_reads_requests, the result should be less than 0.01. Also, if you  divide the value of key_write by the value of key_writes_requests, the  result should be less than 1.<br />
3. <strong><span style="color: red;">table_cache</span></strong>:<br />
* The default is 64. Each time MySQL accesses a table, it  places it in the cache. If the system accesses many tables, it is faster  to have these in the cache. MySQL, being multi-threaded, may be running  many queries on the table at one time, and each of these will open a  table. Examine the value of open_tables at peak times. If you find it  stays at the same value as your table_cache value, and then the number  of opened_tables starts rapidly increasing, you should increase the  table_cache if you have enough memory.<br />
4. <strong><span style="color: red;">sort_buffer</span></strong>:<br />
* The sort_buffer is very useful for speeding up myisamchk  operations (which is why it is set much higher for that purpose in the  default configuration files), but it can also be useful everyday when  performing <strong>large</strong> numbers of sorts.<br />
5. <strong><span style="color: red;">read_rnd_buffer_size</span></strong>:<br />
* The read_rnd_buffer_size is used after a sort, when reading  rows in sorted order. If you use many queries with ORDER BY, upping this  can improve performance. Remember that, unlike key_buffer_size and  table_cache, this buffer is allocated for each thread. This variable was  renamed from record_rnd_buffer in MySQL 4.0.3. It defaults to the same  size as the read_buffer_size. A rule-of-thumb is to allocate 1KB for  each 1MB of memory on the server, for example 1MB on a machine with 1GB  memory.<br />
6. <strong><span style="color: red;">thread_cache</span></strong>:<br />
* If you have a busy server that’s getting a lot of quick  connections, set your thread cache high enough that the Threads_created  value in SHOW STATUS stops increasing. This should take some of the load  off of the CPU.<br />
7. <strong><span style="color: red;">tmp_table_size</span></strong>:<br />
* “Created_tmp_disk_tables” are the number of implicit  temporary tables on disk created while executing statements and  “created_tmp_tables” are memory-based. Obviously it is bad if you have  to go to disk instead of memory all the time.</p>
<p>Notes for the future (i.e InnoDB):<br />
If you use InnoDB, it&#8217;s buffer pool is controlled by: <strong>innodb_buffer_pool_size</strong> (this cache also holds row level data). This is the equivalent of <strong> key_buffer_size </strong>for MyISAM key buffers.<br />
<strong>innodb_additional_mem_pool_size</strong><br />
This variable stores the internal data structure. Make sure it is big enough to  store data about all your InnoDB tables (you will see warnings in the error log  if the server is using OS memory instead).<br />
Since MySQL 4.1.1, the buffer block size is available with the <strong> key_cache_block_size</strong> server variable. Default 1024.</p>
<p>then test your setup on http://www.omh.cc/mycnf/ to check your max memory size</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/leaving-earth/mysql-tuning-and-optimizing-of-my-ini-or-my-cnf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>conditions and temperature on the moon</title>
		<link>http://openmoonproject.com/on-the-moon/conditions-and-temperature-on-the-moon/</link>
		<comments>http://openmoonproject.com/on-the-moon/conditions-and-temperature-on-the-moon/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 14:08:47 +0000</pubDate>
		<dc:creator>tchall</dc:creator>
				<category><![CDATA[on the moon]]></category>

		<guid isPermaLink="false">http://openmoonproject.com/uncategorized/conditions-and-temperature-on-the-moon/</guid>
		<description><![CDATA[Maria (dark areas) and Terrae (light areas) You will notice when looking at the moon&#8217;s surface dark and light areas. The dark areas are called maria. There are several prominent maria. Mare Tranquilitatis (Sea of Tranquility): where the first astronauts landed Mare Imbrium (Sea of Showers): the largest mare (700 miles or 1100 kilometers in [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Maria (dark areas) and Terrae (light areas)</strong></span><strong> </strong></p>
<div id="attachment_27" class="wp-caption alignright" style="width: 290px"><strong><strong><img class="size-full wp-image-27 " title="full moon pic NH" src="http://openmoonproject.com/wp-content/uploads/2009/09/full-moon-pic-NH.jpg" alt="Full Moon from Northern Hemisphere" width="280" height="283" /></strong></strong><p class="wp-caption-text">Full Moon from Northern Hemisphere</p></div>
<p><strong> </strong></p>
<p>You will notice when looking at the moon&#8217;s surface dark and light areas.<br />
The dark areas are called <strong>maria</strong>. There are several prominent maria.</p>
<ul style="margin-top: 0in;" type="disc">
<li><em>Mare Tranquilitatis</em> (Sea of Tranquility): where the first astronauts landed</li>
<li><em>Mare Imbrium</em> (Sea of Showers): the largest mare (700 miles or 1100 kilometers in diameter)</li>
<li><em>Mare Serenitatis</em> (Sea of Serenity)</li>
<li><em>Mare Nubium</em> (Sea of Clouds)</li>
<li><em>Mare Nectaris</em> (Sea of Nectar)</li>
<li><em>Oceanus Procellarum</em> (Ocean of Storms)</li>
</ul>
<p>The remainder of the lunar surface consists of the bright hilly areas called <strong>terrae</strong>.<br />
These highlands are rough, mountainous, cratered regions.</p>
<p>The Apollo astronauts observed that the highlands are generally about 4 to 5 km (2.5 to 3 miles) above the average lunar surface elevation, while the maria are low-lying plains about 2 to 3 km (1.2 to 1.8 miles) below average elevation.</p>
<p>The Moon makes a complete orbit around the Earth every 27.3 days (the orbital period), and the periodic variations in the geometry of the Earth–Moon–Sun system are responsible for the phases of the moon, which repeat every 29.5 days (the synodic period).</p>
<p><span style="text-decoration: underline;"><strong>Sides of the Moon</strong></span></p>
<div id="attachment_28" class="wp-caption alignright" style="width: 295px"><span style="text-decoration: underline;"><strong><strong><img class="size-full wp-image-28 " title="Lunar_libration_with_phase2" src="http://openmoonproject.com/wp-content/uploads/2009/09/Lunar_libration_with_phase2.gif" alt="Locked Lunar Phase with earth" width="285" height="267" /></strong></strong></span><p class="wp-caption-text">Locked Lunar Phase with earth</p></div>
<p><strong> </strong></p>
<p>The Moon is in synchronous rotation, which means it rotates about its axis in about the same time it takes to orbit the Earth. This results in it keeping nearly the same face turned towards the Earth at all times. The Moon used to rotate at a faster rate, but early in its history, its rotation slowed and became locked in this orientation as a result of frictional effects associated with tidal deformations caused by the Earth.<sup id="cite_ref-14"><a href="http://en.wikipedia.org/wiki/Moon#cite_note-14"><span> </span></a></sup></p>
<p>The side of the Moon that faces Earth is called the near side, and the opposite side the far side. The far side is often inaccurately called the &#8220;dark side,&#8221; but in fact, it is illuminated exactly as often as the near side: once per lunar day, during the new moon phase we observe on Earth when the near side is dark. The far side of the Moon was first photographed by the Soviet probe Luna 3 in 1959. One distinguishing feature of the far side is its almost complete lack of <em>maria</em>.</p>
<p><span><br />
</span></p>
<p><span style="text-decoration: underline;"><strong>Gravity of the Moon and Mass Concentration<br />
</strong></span></p>
<p><strong>M</strong><strong>ass concentration</strong> or <strong>mascon</strong> is a region of a planet or moon&#8217;s crust that contains a large positive gravitational anomaly.<br />
In general, the word &#8220;mascon&#8221; can be used as a noun to describe an excess distribution of mass on or beneath the surface of a planet (with respect to some suitable average), such as Hawaii. However, this term is most often used as an adjective to describe a geologic structure that has a positive gravitational anomaly, such as the &#8220;mascon basins&#8221; on the Moon.</p>
<p>Type examples of mascon basins on the Moon are the Imbrium, Serenitatis, Crisium and Orientale impact basins, all of which possess prominent topographic lows and positive gravitational anomalies. Examples of mascon basins on Mars include the Argyre, Isidis, and Utopia basins. Theoretical considerations imply that a topographic low in isostatic equilibrium would exhibit a slight negative gravitational anomaly. Thus, the positive gravitational anomalies associated with these impact basins indicate that some form of positive density anomaly must exist within the crust or upper mantle that is currently supported by the lithosphere. One possibility is that these anomalies are due to dense mare basaltic lavas, which might reach up to 6 kilometers in thickness for the Moon. However, while these lavas certainly contribute to the observed gravitational anomaly, uplift of the crust-mantle interface is also required to account for its magnitude. Indeed, some mascon basins on the Moon do not appear to be associated with any signs of volcanic activity, suggesting that the mantle uplift might even be super-isostatic (that is, uplifted above its isostatic position). It should be noted that the huge expanse of mare basaltic volcanism associated with Oceanus Procellarum does not possess a positive gravitational anomaly.</p>
<p>The lunar mascons alter the local gravity in certain regions sufficiently that low and uncorrected satellite orbits around the Moon are unstable on a timescale of months or years. This acts to distort successive orbits, causing the satellite to ultimately impact the surface. The lunar mascons were discovered by Paul M Muller and William Sjogren of the NASA Jet Propulsion Laboratory (JPL) in 1968<sup id="cite_ref-0"><span>[</span>1<span>]</span></sup> from analysis of the highly precise navigation data from the unmanned pre-Apollo Lunar Orbiter spacecraft. At that time, one of NASA&#8217;s highest priority &#8220;tiger team&#8221; projects was to explain why the Lunar Orbiter spacecraft being used to test the accuracy of Project Apollo navigation were experiencing errors in predicted position of ten times the mission specification (2 kilometers instead of 200 meters). This meant that the predicted landing areas were 100 times as large as those being carefully defined for reasons of safety. Lunar orbital effects resulting from strong gravitational perturbations were ultimately revealed as the cause. William Wollenhaupt and Emil Schiesser of the NASA Manned Spacecraft Center in Houston then worked out the &#8220;fix&#8221; that was first applied to Apollo 12 and permitted its landing within 300 meters of the target, the previously-landed Surveyor 3 spacecraft.</p>
<p><span style="text-decoration: underline;"><strong><br />
</strong></span></p>
<p><span style="text-decoration: underline;"><strong>Specifications</strong></span><br />
Diameter    3476 km, (0.27 x Earth&#8217;s)<br />
Average Distance from Earth    384400 km<br />
Temperature    Day:123°C Night: -233°C<br />
Atmosphere    minimal &#8211; none<br />
Magnetism weak (probably no significant iron core)<br />
Time to orbit Earth    27.322 days<br />
Time to spin once    27.322 days<br />
Gravity    1/6 (0.16) of Earth&#8217;s</p>
]]></content:encoded>
			<wfw:commentRss>http://openmoonproject.com/on-the-moon/conditions-and-temperature-on-the-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

