<?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>Ashima Group Blog</title>
	<atom:link href="http://blog.ashimagroup.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ashimagroup.net</link>
	<description></description>
	<lastBuildDate>Tue, 08 May 2012 22:38:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Introducing gloc for Open Web Shader Linking</title>
		<link>http://blog.ashimagroup.net/2012/03/15/introducing-gloc-for-open-web-shader-linking/</link>
		<comments>http://blog.ashimagroup.net/2012/03/15/introducing-gloc-for-open-web-shader-linking/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 10:00:08 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Arts]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=361</guid>
		<description><![CDATA[UPDATE: Check out video of David Sheets&#8217; presentation at WebGL Camp Orlando from Friday March 16. UPDATE: David Sheets is scheduled to speak at the next San Francisco WebGL Developer&#8217;s Meetup in May. We have just released our first version &#8230; <a href="http://blog.ashimagroup.net/2012/03/15/introducing-gloc-for-open-web-shader-linking/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>UPDATE: <a href="http://www.youtube.com/watch?v=wQfvYBDJaMY#t=19m13s">Check out video of David Sheets&#8217; presentation</a> at <a href="http://www.simulationinformation.com/sites/default/files/news/WebGLOrlandoPDF.pdf">WebGL Camp Orlando</a> from Friday March 16.  </p>
<p>UPDATE: David Sheets is scheduled to speak at the next San Francisco <a href="http://www.meetup.com/WebGL-Developers-Meetup/">WebGL Developer&#8217;s Meetup</a> in May.</p>
<p>We have just released our first version of <a href="http://ashimaarts.com/gloc/">gloc</a>, a toolkit for WebGL and OpenGL ES2 GLSL shaders. The purpose of gloc is to make it much easier to build &#8211; and much easier to share &#8211; shaders. As a result, we hope gloc will help to further the creative potential of 3D graphics on the web and mobile platforms. (<strong>g</strong>loc <strong>l</strong>inks <strong>o</strong>ur <strong>c</strong>reativity!)</p>
<p>With gloc, shaders and shader fragments, for numerical and graphics functions, become portable first-class web resources.</p>
<p><strong>What gloc enables:</strong></p>
<ul>
<li>Libraries of shader functions</li>
<li>Capability-based shader component fall-backs</li>
<li>Collaborative shading effect mash-ups</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Dynamic_linker">LD_PRELOAD</a></strong>-like functionality</li>
<li>Compression by factorization of common shader functions</li>
</ul>
<p><strong>What gloc makes much easier:</strong></p>
<ul>
<li>Semantically-linked shaders in visualization systems</li>
<li>Cascading shaders for selective overriding</li>
<li>User Interface effects and compositing</li>
<li><em>and much more!</em></li>
</ul>
<p><strong>Where gloc lives:</strong></p>
<p>The source code for the gloc suite version 1.0.0 has been released under the BSD 3-Clause license on <a href="https://github.com/ashima/gloc/">GitHub</a>. A <a href="http://ashimaarts.com/gloc/glocode/">Web interface</a> is immediately available.</p>
<p><strong>How gloc works:</strong></p>
<p><img title="gloc pipeline" src="http://ashimaarts.com/gloc/gloc_pipeline.png" alt="" width="601" height="161" /><br />
<em>gloc pipeline: gloc transforms ES SL into glo object files which are subsequently linked by glol with other glo resources to produce complete WebGL shaders.</em></p>
<p><span id="more-361"></span></p>
<p>gloc is a multi-stage compiler that accurately parses and reifies the lexical structure of the language tokens, the lexical preprocessor, and the shading language proper. Every token&#8217;s position is tracked to the file, line and column, and comments are tagged to their nearest token. gloc&#8217;s preprocessor is first-class, open-scoped, and partial, which allows staged evaluation of preprocessor directives as environmental parameters become known.</p>
<p>After the parsing and evaluation of the preprocessor expressions, gloc analyzes the potential shading language token streams for validity (grammatical only in this release, type checking will be added in a future release). gloc&#8217;s shading language parser is also open-scoped, allowing for undeclared variables, functions, and types. Scope analysis is then performed on the token streams; and finally, required and exported macros and symbols are inferred.</p>
<p>The result of this scope analysis and a minimally modified reserialization of the source is then packaged into a simple JSON format, <a href="http://ashimaarts.com/gloc/#glo">glo</a>. The glo format we have designed makes accurate linking as easy as possible with a concise linking algorithm, <a href="http://ashimaarts.com/gloc/#glol">glol</a>. glo includes support for link maps indicating the location of each linked source fragment to aid debugging. Also included is optional hyperlinked authorship metadata declaring the copyright holder, author, license, library, version, and build. We recommend transporting glo shader libraries in the <a href="http://ashimaarts.com/gloc/#glom">glom</a> manifest format which provides an ordered, named, hierarchical JSON structure around each glo object. The glom format and glol algorithm are flexible enough to provide storage and transport for arbitrary application-specific JSON objects in a well-defined order.</p>
<p>Finally, the generated glo files may be linked back into valid shader programs by gloc or a simple JavaScript linker, <a href="http://ashimaarts.com/gloc/glol.js">glol.js</a>, included with <a href="https://github.com/ashima/gloc/">the distribution</a>. The linking algorithm takes a list of symbols to be satisfied (['main'] by default) and a search path of glo resources to use in shader construction.</p>
<p>As always, we welcome comments, contributions, and discussions on OCaml, WebGL and pretty much anything cool! <img src='http://blog.ashimagroup.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Subscribe to the <a href="http://blog.ashimagroup.net/category/ashimaarts/feed/">RSS feed</a> of this blog or join the <a href="https://forge.ocamlcore.org/mail/?group_id=283">gloc-users or gloc-devel mailing lists</a> at <a href="https://forge.ocamlcore.org/">OCaml Forge</a></p>
<p>Happy hacking!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2012/03/15/introducing-gloc-for-open-web-shader-linking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New 3D Climate Model for Mars</title>
		<link>http://blog.ashimagroup.net/2012/02/29/new-3d-climate-model-for-mars/</link>
		<comments>http://blog.ashimagroup.net/2012/02/29/new-3d-climate-model-for-mars/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 00:48:48 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Research]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=337</guid>
		<description><![CDATA[The first paper describing our newest climate model for Mars has just gone live at the journal Icarus as a paper-in-press.  You can access the paper here.  The model simulates the global Martian atmosphere &#8211; but unlike all prior full &#8230; <a href="http://blog.ashimagroup.net/2012/02/29/new-3d-climate-model-for-mars/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The first paper describing our newest climate model for Mars has just gone live at the journal <a title="Icarus access" href="http://www.sciencedirect.com/science/journal/00191035" target="_blank">Icarus</a> as a paper-in-press.  You can access the paper <a title="Ashima/MIT Mars GCM paper link" href="http://www.sciencedirect.com/science/article/pii/S0019103512000528" target="_blank">here</a>.  The model simulates the global Martian atmosphere &#8211; but unlike all prior full general circulation models for Mars (Mars GCM), it does so with a novel numerical approach and a novel (cube-sphere) computational grid.  The upshot of the improved numerics is much better treatment of things like dust and water vapour that are blown around in the atmosphere.  As the crucial elements of the Martian climate system, getting the transport of these systems right is central to proper simulation of the climate.  In the paper, we &#8220;calibrate&#8221; the model with Mars Odyssey Orbiter Gamma Ray / Neutron Spectrometer and Mars Exploration Rover Alpha Proton X-ray Spectrometer measurements of argon.  Argon is a really useful &#8220;tracer&#8221; as it has no chemical or physical sources or sinks &#8211; it is merely enriched or diluted by &#8220;freeze distillation&#8221; of the CO2 that makes up the majority of the Martian atmosphere.  The good news is that the new model does much better than all prior Mars GCMs.  The bad news is that the model still under-predicts argon in the southern polar winter.  There&#8217;s still obviously work to be done before we properly understand transport in the Martian atmosphere.</p>
<p>As with the WRF model that we also run at Ashima Research, the core MITgcm is primarily used for study of the Earth&#8217;s climate addressing crucial questions of atmospheric and oceanic circulation, regional and global climate, and climate change.</p>
<p>The figure, below, shows Martian topography and albedo (reflectivity) on the native cube-sphere grid.  The full globe can be constructed by &#8220;folding&#8221; the edges of the domain together.  The major advantage over standard grid-point models is the absence of two &#8220;convergence&#8221; points at the poles.</p>
<p><a href="http://blog.ashimagroup.net/wp-content/uploads/2012/02/AshimaMITMarsGCM.png"><img class="aligncenter size-large wp-image-338" title="AshimaMITMarsGCM" src="http://blog.ashimagroup.net/wp-content/uploads/2012/02/AshimaMITMarsGCM-575x224.png" alt="" width="575" height="224" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2012/02/29/new-3d-climate-model-for-mars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D Printing the &#8220;Puck&#8221; Shape Model</title>
		<link>http://blog.ashimagroup.net/2012/01/25/3d-printing-the-puck-shape-model/</link>
		<comments>http://blog.ashimagroup.net/2012/01/25/3d-printing-the-puck-shape-model/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 08:38:06 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Devices]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=320</guid>
		<description><![CDATA[Back in October, Ashima bought a 3D printer from MakerBot. In recent years, 3D printers have dramatically fallen in price and now offer a really cool, cheap means of prototyping small hardware. Although not capable of printing a whole &#8220;puck&#8221; &#8230; <a href="http://blog.ashimagroup.net/2012/01/25/3d-printing-the-puck-shape-model/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Back in October, Ashima bought a 3D printer from <a href="http://www.makerbot.com/">MakerBot</a>.  In recent years, 3D printers have dramatically fallen in price and now offer a really cool, cheap means of prototyping small hardware.  Although not capable of printing a whole <a href="http://blog.ashimagroup.net/2010/12/20/small-flier-for-local-reconnaissance/">&#8220;puck&#8221; flier</a> in one go, it is able to build the modular components that comprise a full size &#8220;puck.&#8221;  And here&#8217;s the first completed prototype model.  A lot of work is still needed to demonstrate that we can get the necessary thrust-to-weight at this scale, but the shape model has already proven useful in getting tactile feedback on the size of vehicle that would be useful in the field.  The printed concepts are also useful for crafting prototypes of system components before going out to more expensive fully-functional prototype manufacturing.  Click to see more of the story for a couple of extra photos including a size comparison with the current quad flier.</p>
<p><img class="aligncenter size-large wp-image-321" title="Puck flier - 3D printed shape model" src="http://blog.ashimagroup.net/wp-content/uploads/2012/02/M1160005-575x323.jpg" alt="" width="575" height="323" /></p>
<p><span id="more-320"></span></p>
<p><img class="aligncenter size-large wp-image-322" title="Quad and Puck" src="http://blog.ashimagroup.net/wp-content/uploads/2012/02/M1160009-575x323.jpg" alt="" width="575" height="323" /></p>
<p><img class="aligncenter size-large wp-image-323" title="M1160006" src="http://blog.ashimagroup.net/wp-content/uploads/2012/02/M1160006-575x323.jpg" alt="" width="575" height="323" /></p>
<p><img class="aligncenter size-large wp-image-324" title="M1160008" src="http://blog.ashimagroup.net/wp-content/uploads/2012/02/M1160007-575x323.jpg" alt="" width="575" height="323" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2012/01/25/3d-printing-the-puck-shape-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Assimilation for Mars</title>
		<link>http://blog.ashimagroup.net/2011/12/06/data-assimilation-for-mars/</link>
		<comments>http://blog.ashimagroup.net/2011/12/06/data-assimilation-for-mars/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 23:30:04 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Research]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=273</guid>
		<description><![CDATA[Our paper on data assimilation (DA) for Mars has just been published and this week we&#8217;re also speaking about it at the American Geophysical Union meeting in San Francisco. DA is a method for &#8216;fusing&#8217; an atmospheric / climate model &#8230; <a href="http://blog.ashimagroup.net/2011/12/06/data-assimilation-for-mars/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Our paper on data assimilation (DA) for Mars <a href="http://ashimaresearch.com/wp-content/uploads/papers/LeeEtAl11.pdf">has just been published</a> and this week we&#8217;re also speaking about it at the American Geophysical Union meeting in San Francisco.  DA is a method for &#8216;fusing&#8217; an atmospheric / climate model with data.  If the model works well, DA allows the global extrapolation of observations that have incomplete or irregular coverage.  If the model works poorly, DA provides a very efficient means of figuring out what&#8217;s wrong with the model and a framework for testing improvements.  DA is widely used for Earth science for everything from recent climate reconstruction to weather forecasting.  It&#8217;s only very rarely been used for other planets, though, because of the difficulty of developing and maintaining the DA capability (the software) and the computational demands.  The DART DA system for Mars changes all of this by augmenting an open-source NCAR-developed DA system for planetary use.  As a teaser, here&#8217;s an incomprehensible but colourful figure from the paper <img src='http://blog.ashimagroup.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://ashimaresearch.com/wp-content/uploads/papers/LeeEtAl11.pdf "><a href="http://ashimaresearch.com/wp-content/uploads/papers/LeeEtAl11.pdf"><img src="http://blog.ashimagroup.net/wp-content/uploads/2011/12/rad_atm-575x543.png" alt="" title="DA" width="575" height="543" class="aligncenter size-large wp-image-290" /></a></a></p>
<p><span id="more-273"></span></p>
<p>Data Assimilation (DA) is an enabling piece of your daily weather forecast.  In this case, observations are used to drive a skillful (meaning it gets predictions of the current climate right) model of Earth&#8217;s atmosphere towards simulation of a specific day.  What does this mean?  A skillful model of Earth&#8217;s climate will get things like the seasonal temperature cycles at a location right, and will even get things like the &#8216;storminess&#8217; of a given location right, but if you look at output for &#8220;August&#8221; from the model, what you get is a typical August, not August 2011.  And you&#8217;re vanishingly unlikely to get the atmospheric state exactly as it was on 21 August 2011.  For climate or atmospheric science, this doesn&#8217;t matter.  But the way you get the weather forecast for 22 August 2011 is to take a global atmospheric state representing 21 August 2011 and integrate it forward by a day.  In that case, you really need the <em>specific</em> global state in the model to represent 21 August 2011.  The way this is done is by the &#8216;ingestion&#8217; of data into the model with DA &#8211; basically the DA system pushes the model towards observations.  The biggest errors for the &#8216;typical&#8217; vs. &#8216;specific&#8217; August day tend to be associated with the &#8216;phase&#8217; of weather systems (is the eastward-moving low pressure storm system centered east of the UK over the Atlantic at this time or is it already over Sweden?)  DA allows the model to &#8220;lock up&#8221; on the real timing and distribution of weather events for a real day.</p>
<p>Why do we care about this for Mars?  We&#8217;re not really interested in weather forecasting for Mars.  But we are interested in being able to find the global atmospheric state that corresponds to sparse and irregular spacecraft observations of Mars on specific days.  Sparse and irregular data are difficult to handle and can cause errors in analysis if you&#8217;re not very careful.  If this care has already gone in to globally extrapolating the spacecraft data to a nice, regular model grid, the data can be much more widely and easily used.  This is the idea behind the creation of &#8220;reanalysis&#8221; data for Mars (reanalysis is another hold over from Earth weather forecasting terminology).</p>
<p>There is a lot more to be said about DA for Mars &#8211; we&#8217;ll have more blog posts on it in the future.  For now, the DA system can be accessed via Ashima Research&#8217;s <a title="Ashima Mars Climate Center" href="http://www.marsclimatecenter.com" target="_blank">www.marsclimatecenter.com</a> website.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/12/06/data-assimilation-for-mars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quadcopter Flights</title>
		<link>http://blog.ashimagroup.net/2011/11/29/quadcopter-resumption/</link>
		<comments>http://blog.ashimagroup.net/2011/11/29/quadcopter-resumption/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 07:48:44 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Devices]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=261</guid>
		<description><![CDATA[We&#8217;ve been flying our quadcopter testbed this month as part of our &#8220;puck&#8221; flier development (see our earlier post for the product we&#8217;re aiming to produce).  The quadcopter we&#8217;re flying doesn&#8217;t look much like the final goal &#8220;puck&#8221; device, but &#8230; <a href="http://blog.ashimagroup.net/2011/11/29/quadcopter-resumption/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been flying our quadcopter testbed this month as part of our &#8220;puck&#8221; flier development (<a href="http://blog.ashimagroup.net/2010/12/20/small-flier-for-local-reconnaissance/">see our earlier post</a> for the product we&#8217;re aiming to produce).  The quadcopter we&#8217;re flying doesn&#8217;t look much like the final goal &#8220;puck&#8221; device, but it provides a great testbed for the avionics, automated control systems, and for assessing the imaging behaviors.  Today we shot some video of the quadcopter flying for pretty much a full battery cycle (about 12 minutes).  The flier uses a range of sensors for attitude and position determination and has modest &#8220;flight computer&#8221; for flight control.</p>
<p>EDIT: We&#8217;re continuing to add more videos of and from the flier as we make them</p>
<p><i>Newer, Still Rather Cheap 5.8 GHz 720 CMOS Camera</i></p>
<p>Fighting winds in the park in Corona, Jan 25 (no onboard footage) &#8211; <a href="http://www.youtube.com/watch?v=IYyzyAx3d4s">click here</a><br />
Flight in the park, 17 Jan &#8211; <a href="http://www.youtube.com/watch?v=PLPzEH7A_V4">click here</a><br />
Nighttime flight with camera a 45degree view angle &#8211; <a href="http://www.youtube.com/watch?v=HXwou9PaXJ4">click here</a><br />
Evening flight over the building &#8211; <a href="http://www.youtube.com/watch?v=Fxk1FEVABgA">click here</a><br />
Nighttime flight with camera looking nadir &#8211; <a href="http://www.youtube.com/watch?v=3-XgORdznEs">click here</a></p>
<p><i>Old, Super-Cheap 2.4 GHz Camera Test Camera</i></p>
<p>Long flight video &#8211; <a href="http://www.youtube.com/watch?v=fEk_cGf0n3U">click here</a><br />
Picture-in-picture from live camera during flight &#8211; <a href="http://www.youtube.com/watch?v=5hCvQvuUIVs">click here</a><br />
High-level flight over the building &#8211; <a href="http://www.youtube.com/watch?v=5P4MC5aXaXY">click here</a><br />
Nighttime flight &#8211; <a href="http://www.youtube.com/watch?v=QNZ17aLYX_A">click here</a><br />
Night roof flight 1 &#8211; <a href="http://www.youtube.com/watch?v=gOZmFg2diMo">click here</a><br />
Night roof flight 2 &#8211; <a href="http://www.youtube.com/watch?v=exoiRwgHsDo">click here</a><br />
Sunset onboard flight &#8211; <a href="http://www.youtube.com/watch?v=kv_8YwDEdQU">click here</a><br />
Park Flight 1 &#8211; <a href="http://www.youtube.com/watch?v=osyv2wWN4KY">click here</a><br />
Park Flight 2 &#8211; <a href="http://www.youtube.com/watch?v=LeO_69dR2vo">click here</a><br />
Park Flight 3 &#8211; <a href="http://www.youtube.com/watch?v=FNPOVrWM5C0">click here</a><br />
Parking Lot &#8211; <a href="http://www.youtube.com/watch?v=gsaU5UCGsUU">click here</a></p>
<p><a href="http://www.youtube.com/watch?v=fEk_cGf0n3U"><br />
<img class="aligncenter size-large wp-image-262" title="Quadcopter 12 minute flight" src="http://blog.ashimagroup.net/wp-content/uploads/2011/11/Quad-575x313.png" alt="" width="575" height="313" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/11/29/quadcopter-resumption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Going to Mars with MSL</title>
		<link>http://blog.ashimagroup.net/2011/11/26/going-to-mars-with-msl/</link>
		<comments>http://blog.ashimagroup.net/2011/11/26/going-to-mars-with-msl/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 15:57:31 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Research]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=251</guid>
		<description><![CDATA[The Mars Science Laboratory was injected into interplanetary cruise just a few moments ago (early morning PST, Nov 26).  Next stop will be Mars in August 2012.  This is the most complex landed vehicle ever sent to another planetary object. &#8230; <a href="http://blog.ashimagroup.net/2011/11/26/going-to-mars-with-msl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Mars Science Laboratory was injected into interplanetary cruise just a few moments ago (early morning PST, Nov 26).  Next stop will be Mars in August 2012.  This is the most complex landed vehicle ever sent to another planetary object. It possesses a range of sophisticated instrumentation, mostly focused on understanding the geology, geochemistry, and mineralogy of rocks in the Gale Crater landing site.  It has a few auxiliary instruments: a surface radiation detector, an active neutron subsurface sounder (which looks for subsurface ice or hydrated minerals), and a Rover Environmental Monitoring Station (REMS).  Ashima Research has been involved with the REMS instrument as a Co-I investigator since 2004. Looking forward to doing some meteorology on Mars!</p>
<p><img class="aligncenter size-large wp-image-253" title="Mars Science Laboratory Launch" src="http://blog.ashimagroup.net/wp-content/uploads/2011/11/MSL_launch_1_720-575x383.jpg" alt="" width="575" height="383" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/11/26/going-to-mars-with-msl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>US Human Spaceflight &#8211; What We Could be Doing Right Now</title>
		<link>http://blog.ashimagroup.net/2011/10/23/us-human-spaceflight-what-we-could-be-doing-right-now/</link>
		<comments>http://blog.ashimagroup.net/2011/10/23/us-human-spaceflight-what-we-could-be-doing-right-now/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 00:46:08 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Off-Topic]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=224</guid>
		<description><![CDATA[The idea of turning Earth-to-LEO (&#8220;low earth orbit&#8221;) into a commodity product for human access as well as for hardware opens a number of significant possibilities. As important is the idea of modularity of hardware launch: things done in large &#8230; <a href="http://blog.ashimagroup.net/2011/10/23/us-human-spaceflight-what-we-could-be-doing-right-now/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The idea of turning Earth-to-LEO (&#8220;low earth orbit&#8221;) into a commodity product for human access as well as for hardware opens a number of significant possibilities. As important is the idea of modularity of hardware launch: things done in large numbers become cheaper through mass production; things done in a structured market with multiple vendors become cheaper through competition and proper incentives. This was the topic of the last post on manned spaceflight. But the question is: what does this enable? If we have no big rocket (like the SLS), are we doomed to keep circling the planet? I would argue an emphatic &#8220;no&#8221; &#8211; this model opens up the opportunity to do revolutionary things at costs vastly lower than Apollo.  And by the infusion of the commodity concept from inception, it inherently allows the NASA exploration to feed into more sustainable commercial activity. There was simply no way that Apollo could ever do this, and this is why Apollo was much more of an &#8220;Egyptian Pyramid&#8221; than an &#8220;Eisenhower Interstate System.&#8221;</p>
<p>Recently, <a href="http://www.nytimes.com/2011/10/23/science/space/23nasa.html?_r=1">interest has been stirred again in orbital fuel depots</a>. This is a brilliant alternative to the NASA&#8217;s new and doomed big rocket project (the <a href="http://www.nasa.gov/exploration/systems/sls/sls1.html">Space Launch System</a>). Doomed because its Apollo style approach means it will be impossibly expensive to build and will consequently also kill any projects in the near term that could ever use the rocket.  Fuel depots make vastly more sense because you can loft fuel on existing rockets. Placing depots in space also means that companies know there&#8217;s a market for certain types of launch. Fuel launch should be the cheapest of all. The fuel itself costs almost nothing, and thus the vast effort that goes in to making human rated rockets safe and comfortable for passengers can be completely avoided (only range safety needs be considered). Rockets can also be &#8220;right sized&#8221; for the market.  Secondary effects of having fuel depots could be significant in terms of businesses that might to refuel commercial and scientific satellites from fuel purchased from these depots.</p>
<p>(NOTE ADDED IN PROOF: <a href="http://spacenews.com/commentaries/111219-nasa-needs-wake-reality.html">Here&#8217;s what the former head of NASA&#8217;s Johnson Spaceflight Center has to say on the topic</a> &#8211; somewhat similar!)</p>
<p><img class="aligncenter size-full wp-image-225" title="Fuel Depot Designs" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/2196444468_b7a03ff363.jpg" alt="" width="500" height="320" /><span id="more-224"></span>Why fixate on fuel? Because fuel mass ends up being a major factor of total vehicle mass. And there&#8217;s such a disparity in the &#8220;quality&#8221; of the mass between the fuel and the spacecraft hardware (one is very bulky and vanishingly cheap to make, while the other is vastly more expensive to build but can make up less than half the required mission mass).  There&#8217;s also the profound issue that if you can refuel you can reuse. We have a space station, after all.  We all ready have a harbour in space. It now makes essentially zero sense to start all missions on the surface.</p>
<p>We know finally have the opportunity to start building true spacecraft. If the vehicle can be reused and does not have to fly through / enter the atmosphere, vastly more interesting vehicles can be built.  The current &#8220;long range&#8221; vehicle being considered by NASA is the <a href="http://www.nasa.gov/exploration/systems/mpcv/index.html">Multi Purpose Crew Vehicle</a> &#8211; another sad and unimaginative throwback to Apollo. Capsules are necessary if you launch from Earth on a huge booster, fly your mission, and come straight back to Earth. They&#8217;re not very useful for long range missions &#8211; their crew mass and shielding is inadequate and you&#8217;re now bring your whole Earth reentry system with you as an incredibly expensive tourist on any mission you fly. If you&#8217;re not constrained by this, you can build bigger and more complex vehicles, and you can reuse them again and again.</p>
<p>Alternative ideas at NASA &#8211; ones not hopelessly stuck in the 1960&#8242;s &#8211; have involved building true reusable <em>spacecraft</em> that take advantage of fuel depots &#8211; and indeed can expand as new propulsion systems come along.  What&#8217;s also revolutionary about these kinds of systems is that we could be working on them <em>now</em>, we don&#8217;t have to wait for a mythical big booster, and we could be learning and evolving. Two different concepts whose pictures I&#8217;ve added are a Multi-Mission Space Exploration Vehicle and NAUTILUS-X (which has an acronym so hopelessly contrived I will not repeat it here).</p>
<p><img class="aligncenter size-full wp-image-226" title="MMSEV" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/SEV-space-concept-3-400x482.png" alt="" width="400" height="482" /><img class="aligncenter size-full wp-image-227" title="MMSEV" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/A1110A1.jpg" alt="" width="350" height="220" /></p>
<p><img class="aligncenter size-full wp-image-228" title="NAUTILUS-X" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/Picture-4_10.png" alt="" width="525" height="371" />The MMSEV is based on submersible ideas. The NAUTILUS-X is based on modular spacecraft design and the incorporation of artificial gravity. These are immature designs, but this radically futuristic stuff is what we could be starting today. Add a resuable lunar lander, and you have a lunar mission system. No Saturn V required. Vehicle is assembled at the space station with minimal fuel, all pieces launched on existing commodity launch vehicles (Atlas, Delta, Falcon, Ariane, Proton, etc). Crew flies to the station on a commercial flight operated by Boeing or SpaceX or SNC, etc. The MMSEV or NAUTLIUS-X or whatever the final design is called is moved to the depot, fueled, and off we go.</p>
<p>The great thing about building these systems in LEO is we already have a platform to test the components of a true spacecraft. Test modules can be brought up to the space station. Attached is an example artificial gravity system being tested on the end of ISS&#8217;s Node 2.</p>
<p><img class="aligncenter size-full wp-image-229" title="Testing on ISS" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/Picture-5_14.png" alt="" width="525" height="295" /></p>
<p>The crucial thing about all of this is that by bringing commodity purchase into the core of the program maximizes the opportunity for business to come up with systems optimized for cost and safety, not performance and safety. This is the only hope for viable and affordable spaceflight and economic expansion into space.  It also allows us to do revolutionary spaceflight TODAY, rather than squandering 5-10 years on a doomed attempt to rebuild Apollo (SLS and MPCV). We cancelled Apollo for valid reasons &#8211; it was a road to nowhere and ridiculously expensive. It was designed as a command economy solution to beat the Soviets to the moon. It was never designed to be a sustainable and economical movement in to space. However, we now have the opportunity to do it right and start actually <em>investing</em> in spaceflight (like the Eisenhower interstate) rather than simply spending money on impressive but ultimately dead-end monuments like Apollo (the Giza pyramids are impressive, but they don&#8217;t enable anything).</p>
<p>Kill SLS and MPCV and use those $bns/year to start doing REAL spaceflight and go to the Moon and beyond now!</p>
<p>ADDED: some more recent ideas on <a href="http://www.nasa.gov/pdf/604659main_6%20-%20Panel%203_Raftery_Final.pdf">using components derived from the International Space Station (ISS) for a main spacecraft</a>.  Also ideas on <a href="http://www.nasa.gov/pdf/604643main_2-Panel%202_Donahue_Final.pdf">a reusable lunar lander</a>.  Neither the SLS nor MPCV (Orion) are needed for any of this.  It&#8217;s clear that NASA and contractors are thinking through what could be done.  If only congress would stop strangling them with &#8220;pork rockets to nowhere&#8221; and &#8220;Apollo on steroids&#8221;&#8230;</p>
<p><img src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/ISS_expl-575x353.png" alt="" title="ISS_expl" width="575" height="353" class="aligncenter size-large wp-image-302" /><br />
<img src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/ISS_expl2-575x371.png" alt="" title="ISS_expl2" width="575" height="371" class="aligncenter size-large wp-image-303" /><br />
<img src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/ISS_expl3-575x372.png" alt="" title="ISS_expl3" width="575" height="372" class="aligncenter size-large wp-image-304" /><br />
(or maybe &#8220;while SLS and MPCV (Orion) are being killed / collapsing under their own weight&#8221; because <em>we don&#8217;t need them</em>)</p>
<p><img src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/Lunar2-514x575.png" alt="" title="Lunar2" width="514" height="575" class="aligncenter size-large wp-image-306" /><br />
<img src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/Lunar1-575x380.png" alt="" title="Lunar1" width="575" height="380" class="aligncenter size-large wp-image-305" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/10/23/us-human-spaceflight-what-we-could-be-doing-right-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Impartial Berkeley Group: Yes, Earth is Warming</title>
		<link>http://blog.ashimagroup.net/2011/10/22/impartial-berkeley-group-yes-earth-is-warming/</link>
		<comments>http://blog.ashimagroup.net/2011/10/22/impartial-berkeley-group-yes-earth-is-warming/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 08:17:46 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Off-Topic]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=210</guid>
		<description><![CDATA[The thing that makes science unique in all human endeavour is that it is independently verifiable. In this regard, the Berkeley Earth Project (composed largely of physicists outside of the climate community) recently announced their independent assessment of land surface &#8230; <a href="http://blog.ashimagroup.net/2011/10/22/impartial-berkeley-group-yes-earth-is-warming/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The thing that makes science unique in all human endeavour is that it is independently verifiable. In this regard, the <a href="http://berkeleyearth.org/">Berkeley Earth Project</a> (composed largely of physicists outside of the climate community) recently <a href="http://www.bbc.co.uk/news/science-environment-15373071  ">announced</a> their independent assessment of land surface temperature trends. This study was motivated after the impartiality of groups like the University of East Anglia Climate Research Unit and the NASA Goddard Institute for Space Studies was questioned. The Berkeley Earth Project assessment of trends is shown in the figure, below. In fact, the Berkeley numbers are remarkably similar to the NASA GISS estimates, and suggest greater warming than CRU were claiming. In retrospect (and indeed at the time), the idea that such a large number of climate scientists in full view of an even wider audience of geophysicists and planetary scientists could have colluded in a multi-decade-long sham reflects a profound ignorance of how science itself functions amongst a distressing large fraction of the populous. That said, independent checks are an essential part of science, and it&#8217;s fantastic that this was done.</p>
<p><img class="aligncenter size-large wp-image-215" title="Temperature Trends" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/56197115_climate_change_624gr-575x396.gif" alt="" width="575" height="396" /></p>
<p><span id="more-210"></span></p>
<p>On a side note, sometimes the problem of climate change is inverted in public discussion from how I typically conceive it (and opposite to the direction of the underlying uncertainty). The question shouldn&#8217;t be &#8220;Why is the Earth warming?&#8221; (since it&#8217;s only relatively recently that we&#8217;ve gained confidence that it is). Rather, it has always been much more compelling and reasonable to ask: &#8220;Given that we <em>know</em> we&#8217;re dumping CO2 into the atmosphere to concentrations not seen in the last million years &#8211; and we know that CO2 is a greenhouse gas &#8211; what is the likely impact on climate going to be?&#8221; I&#8217;ve attached two figures that show the recent trends in CO2 and the record over the last 500,000 years. There is no credible argument that the CO2 rise is due to anything but fossil fuel burning and human land-use changes. The expected impact of these kinds of CO2 increases are also consistent with (but there is a broad band of uncertainty here) the types of temperature changes observed. At this point, plausibility is very strongly on the side of our causing the observed temperature increases with CO2 emissions (with a little CH4 and water vapour feedback for good measure).</p>
<p>From a political point of view, it&#8217;s probably more appropriate now to be debating what kind of response is optimal &#8211; is it cheaper to try and reduce CO2 and CH4 emissions, or is it better to &#8220;book keep&#8221; for cost impacts associated with a warming climate and just let it evolve? Likely a mix of those is most credible. In any case, that seems to be the message that&#8217;s becoming clearer as each year goes by &#8211; the questions of if we&#8217;re warming and why are resolved (a definitive &#8220;yes&#8221; and &#8220;human greenhouse gas emission&#8221;). By how much (and more importantly, with what impact) and what we should do about it or in response to it remain open.</p>
<p><img class="aligncenter size-large wp-image-216" title="CO2 Data" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/co2_data_mlo-575x444.png" alt="" width="575" height="444" /><img class="aligncenter size-full wp-image-217" title="Long Term CO2" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/2249263454_db8b8a390a.jpg" alt="" width="500" height="281" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/10/22/impartial-berkeley-group-yes-earth-is-warming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At the Surface of Mars: Panoramas in WebGL</title>
		<link>http://blog.ashimagroup.net/2011/10/19/at-the-surface-of-mars-panoramas-in-webgl/</link>
		<comments>http://blog.ashimagroup.net/2011/10/19/at-the-surface-of-mars-panoramas-in-webgl/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 01:34:59 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Arts]]></category>
		<category><![CDATA[Ashima Devices]]></category>
		<category><![CDATA[Ashima Research]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=171</guid>
		<description><![CDATA[We&#8217;ve collected together a bunch of panoramas from the surface of Mars, taken by NASA spacecraft over the last 15 years, and wrapped them in our WebGL panorama viewer. The viewer takes panorama images in equirectangular coordinates (that&#8217;s just even spacing &#8230; <a href="http://blog.ashimagroup.net/2011/10/19/at-the-surface-of-mars-panoramas-in-webgl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve collected together a bunch of panoramas from the surface of Mars, taken by NASA spacecraft over the last 15 years, and wrapped them in <a title="Mars Panorama Tool" href="http://ashimagroup.net/demo/pano/mars/" target="_blank">our WebGL panorama viewer</a>. The viewer takes panorama images in equirectangular coordinates (that&#8217;s just even spacing in equal increments of latitude and longitude) and manipulates the projection &#8211; so this is an example of 2D pixel manipulation. The panoramas were all generated by a combination of the Jet Propulsion Laboratory, University of Arizona, Cornell University, and/or Arizona State University (depending on which mission the specific images were from). From top to bottom, the panoramas are: 1. Spirit at Eagle Crater; 2. Spirit in the Columbia Hills; 3. Spirit&#8217;s final panorama from &#8216;Troy&#8217;; 4. Opportunity at Victoria Crater; 5. Opportunity on the rim of Erebus Crater; 6. Mars Pathfinder landing site; 7. Phoenix Lander landing site. To move around the panoramas, use the image scroll function. You can use the magnifying buttons to zoom in and out.</p>
<p><a href="http://ashimagroup.net/demo/pano/mars/"><img class="aligncenter size-large wp-image-201" title="Opportunity landing site" src="http://blog.ashimagroup.net/wp-content/uploads/2011/10/03-JS-01-LionKingPan-B079R1_br2-575x404.jpg" alt="" width="575" height="404" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/10/19/at-the-surface-of-mars-panoramas-in-webgl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modeling the Solar System&#8217;s Most Extreme Greenhouse</title>
		<link>http://blog.ashimagroup.net/2011/09/30/modeling-the-solar-systems-most-extreme-greenhouse/</link>
		<comments>http://blog.ashimagroup.net/2011/09/30/modeling-the-solar-systems-most-extreme-greenhouse/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 08:32:44 +0000</pubDate>
		<dc:creator>mir</dc:creator>
				<category><![CDATA[Ashima Research]]></category>

		<guid isPermaLink="false">http://blog.ashimagroup.net/?p=173</guid>
		<description><![CDATA[Back in June we published a paper on our successful efforts to model the way solar and thermal radiation maintain Venus&#8217; extreme climate (you can find the paper here). We also just got word that we&#8217;ll be presenting this work &#8230; <a href="http://blog.ashimagroup.net/2011/09/30/modeling-the-solar-systems-most-extreme-greenhouse/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Back in June we published a paper on our successful efforts to model the way solar and thermal radiation maintain Venus&#8217; extreme climate (you can find the paper <a title="Lee and Richardson, JAS, 2011" href="http://ashimaresearch.com/wp-content/uploads/papers/LeeAndRichardson11.pdf" target="_blank">here</a>). We also just got word that we&#8217;ll be presenting this work at the AGU conference in December, so we thought it time to give some insight into what we&#8217;re doing.  The goal of the project was two-fold: to create a self-consistent model that could stand up against spacecraft observations (i.e. to test how well &#8220;we&#8221; &#8211; the science community and our predictive models &#8211; really understand the greenhouse effect and solar heating of the atmosphere) and to develop a baseline for faster radiative transfer models that can be used in comprehensive climate models.  Why model Venus?  It&#8217;s an extreme case, it really stretches our understanding of atmospheric and climate physics and dynamics and it provides a very extreme test of our ability to model climate.  And you all know why we might care about how well we can model climate, right?</p>
<p><img class="aligncenter size-large wp-image-174" title="Venus from the ESA VMC Imager" src="http://blog.ashimagroup.net/wp-content/uploads/2011/09/venus_vmc-575x475.jpg" alt="" width="575" height="475" /></p>
<p><em>Image from the ESA Venus Express <a href="http://www.mps.mpg.de/projects/venus-express/vmc/">Venus Monitoring Camera</a>.</em></p>
<p><span id="more-173"></span><br />
Venus is the Earth&#8217;s nearest neighbour, and has by far the thickest atmosphere of the rocky planets in our solar system. Venus has a CO2 atmosphere with a surface pressure almost 92 times higher than Earth, and 15,000 times higher than Mars, another CO2 dominated atmosphere. Instead of water clouds near the surface Venus is covered in a haze of Sulphuric acid droplets, mixed with water and various sulphur compounds. The extreme surface pressure and thick cloud decks raises the surface temperature to 500 degrees Celsius (900 degrees Fahrenheit) and makes it impossible to see the Sun at the surface!</p>
<p>As part of our NASA funded projects to simulate the atmosphere of Venus, we have been working on a model that reproduces these extreme temperatures using the best information we have on carbon dioxide, water, and the Sulphuric acid clouds. Our model isn&#8217;t the first to do this, but we&#8217;ve tried very hard to make the model self-consistent, validated against observations, and flexible. We don&#8217;t correct the temperature if it&#8217;s wrong, we go back and fix our ideas about the atmosphere. This made our life a little harder, but in the end makes the model far more useful for a variety of applications.</p>
<p>In our recent paper introducing this model (<a title="Lee and Richardson, JAS, 2011" href="http://ashimaresearch.com/wp-content/uploads/papers/LeeAndRichardson11.pdf" target="_blank">Lee and Richardson, 2011</a>) we showed how we used the model in three very different applications, all using the same model and same information on gases and clouds.</p>
<p>In one example, we showed that we could use the model at high (spectral) resolution to calculate the radiation coming from the atmosphere that would be observed by a satellite such as the Venus Express VIRTIS instrument. We didn&#8217;t try to match a specific observation, because that requires a careful examination of the differences between what our model suggested and what the satellite actually observed (this process is called &#8216;signal inversion&#8217; or &#8216;temperature retrieval&#8217;), but we showed that we could see the same features and that we are sensitive to small changes just as the real atmosphere is.</p>
<p>In our second example, we went back in time to measurements by the NASA Pioneer Venus satellite (and more modern data from Venus Express). When these satellites looked at Venus they found a very bright planet that reflected as much as 75% of the sunlight back to space. This makes Venus much brighter than the Earth, which reflects about 30% of the sunlight back to space. These values are captured in something called a Bond Albedo, which measurements of Venus stretching back over 4 decades suggest is between 70% and 80%. Out model gives us a value of 74%! We get an even more detailed picture than the satellites of course, because we can &#8216;see&#8217; below the clouds with our model. We looked at the measurements from five Soviet era Venera landers (8-12) and the NASA Pioneer Venus lander (if you&#8217;ve read the paper, you will have noticed the errors in the labels on the axes of the figure that shows this. The lower X axis should be cosine(zenith angle), and the upper X axis should be Latitude, that&#8217;s a twofer!)</p>
<p>In the first two examples, we fixed the temperature and composition (gases and clouds) in the atmosphere and modeled the radiation throughout and above the atmosphere. In the final example, we let the model decide on the temperature profile, allowing the model to heat or cool the atmosphere until it reaches an equilibrium (the radiative equilibrium). Then we added the constraint that the atmosphere should be stabilized by vertical mixing or convection (radiative-convective equilibrium). In the former case our model suggests that the atmosphere wants to reach a surface temperature closer to 850K(~580C,1080F) than 750K(480C,900F). The difference in temperature between the radiative equilibrium and the radiative-convective equilibrium tells us how much the convection affects the lower atmosphere. With the effect of convection included, we reach a temperature profile that is very close to the few measurements that exist for Venus from the surface to 100km. These results show the model predicting the heating by the Sun and by a green-house effect caused by the Carbon Dioxide and clouds, cooling from the atmosphere at night, and smoothing of the atmosphere by convection. All things considered, this is the most comprehensive test for the model and we have one of the few models that can pass this test!</p>
<p>We&#8217;re now hard at work on the next stage of our project. We have a radiation model and we have a dynamical model (a Venus GCM), so we need to combine these to make a much better simulation of the Venus atmosphere. This work presents new challenges, from simple things like making the radiation model fast enough to work inside the GCM, to more complex issues like how we include clouds and convection in the GCM. We already have the two models combined, with a speed-up between 200 and 200,000 (really!) depending on some interesting and some not-so-interesting choices, and we&#8217;re working on the finer details of the combined model.</p>
<p>We&#8217;ll have more information on our progress at the American Geophysical Union Fall Meeting 2011 in San Francisco, with a poster presentation on Monday afternoon, and an update on the blog soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashimagroup.net/2011/09/30/modeling-the-solar-systems-most-extreme-greenhouse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

