<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Digerati &#38; Technology Reports</title>
	<atom:link href="http://mhreviews.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mhreviews.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 07:42:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mhreviews.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Digerati &#38; Technology Reports</title>
		<link>http://mhreviews.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mhreviews.wordpress.com/osd.xml" title="Digerati &#38; Technology Reports" />
	<atom:link rel='hub' href='http://mhreviews.wordpress.com/?pushpress=hub'/>
		<item>
		<title>The Object-Oriented Thought Process Book Review (January 15, 2012)</title>
		<link>http://mhreviews.wordpress.com/2012/01/15/the-object-oriented-thought-process-book-review-january-15-2012/</link>
		<comments>http://mhreviews.wordpress.com/2012/01/15/the-object-oriented-thought-process-book-review-january-15-2012/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 20:20:07 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Book Reviews]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[introduction to OO concepts]]></category>
		<category><![CDATA[OO development concepts]]></category>
		<category><![CDATA[OO introducory book]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2387</guid>
		<description><![CDATA[By Mike Hubbartt, © Copyright 2012, All Rights Reserved. Title: The Object-Oriented Thought Process Author: Matt Weisfeld Edition: 1st (2000) ISBN: 0-672-31853-9 Publisher: SAMS Publishing Price: $29.99 Length: 226 pages (9 chapters, 2 appendices) This book, according to the author, is &#8216;an introduction to fundamental O-O concepts&#8217;. It is not a book aimed at people already [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2387&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Mike Hubbartt, © Copyright 2012, All Rights Reserved.</p>
<p>Title: The Object-Oriented Thought Process<br />
Author: Matt Weisfeld<br />
Edition: 1st (2000)<br />
ISBN: 0-672-31853-9<br />
Publisher: SAMS Publishing<br />
Price: $29.99<br />
Length: 226 pages (9 chapters, 2 appendices)</p>
<p>This book, according to the author, is &#8216;an introduction to fundamental O-O concepts&#8217;. It is not a book aimed at people already familiar with OO concepts, so bear in mind it is not intended for people that already understand OO development. I read the first edition of this book in 2000 and enjoyed it, but it sat on my bookshelf until last summer. I had a class in grad school at UST and the professor recommended this book before taking the class so I decided it was time to reread it. I read 3 chapters per day, so it only took 3 days to finish it, even though I took notes from each chapter. Like the 1st ed K&amp;R, this book is not huge &#8211; 226 pages including the title page, table of contents, index, and acknowledgments &#8211; but it explains how procedural programmers can make the move to OO development. Let&#8217;s look at the book chapter-by-chapter.</p>
<h4>Chapter 1 &#8211; Introduction to Object-Oriented Concepts</h4>
<p>This chapter explains classes and objects and how they differ. Encapsulation, one fundamental advantage of OO programming, is covered nicely in this chapter, as is the introduction to the difference between a class interface and implementation, polymorphism, constructors, and overriding.</p>
<p>I liked the code samples included to demonstrate some of the concepts like overriding. I also liked the UML class diagram showing how class elements are displayed via UML &#8211; very easy to follow. I would have liked more code samples covers more concepts introduces in the chapter.</p>
<h4>Chapter 2 &#8211; How to Think in Terms of Objects</h4>
<p>This chapter teaches how to think in an OO manner. This chapter goes into the introduction of public interface and private implementation portions of a class. Very nice, clear, simple explanation. Not over or under covered &#8211; just enough to introduce the material that will be covered in more depth later in the book.</p>
<h4>Chapter 3 &#8211; Advanced Object-Oriented Concepts</h4>
<p>This chapter covers object creation and initialization, plus error handling. Very good explanation of constructors &#8211; what they must and must not have &#8211; and how there can (and often should) be more in some classes. Exception handling, which is a topic that could fill a book, is introduced here. There was a bit of source code showing how to use exception in Java code. I liked how the author covered static attributes, which can be used to allow multiple objects to share attributes.</p>
<h4>Chapter 4 &#8211; The Anatomy of a Class</h4>
<p>This chapter explains the differences between the implementation and interface of classes. This is the meat-and-potatoes section of the book. Where a class is broken down using Java to show the implementation and interface sections, as well as constructors. Very clear and my favorite chapter of the book.</p>
<h4>Chapter 5 &#8211; Class Design Guidelines</h4>
<p>This chapter explains that classes must interact and it covers the iterative nature of class design. This goes into design considerations, covering a safe constructor to initialize a class, serializing (deconstruct a object), persistence (maintaining the state of an object), and stubs (minimal implementations of an interface). More good Java code examples, although C++ concepts are also covered.</p>
<h4>Chapter 6 &#8211; Designing with Objects: The Software Development Process</h4>
<p>This chapter explains how to identify class responsibilities and class collaboration. This goes into the way to design an application, covering statements of work, requirements documents, and CRC cards. This was my least favorite chapter of the book &#8211; I liked the issues to take into consideration during the OO design process, but I&#8217;d rather have more OO concepts than requirements gathering information.</p>
<h4>Chapter 7 &#8211; Mastering Inheritance and Composition</h4>
<p>This chapter covers the differences between composition and inheritance. Very good coverage going into important means of code reuse: inheritance and composition. The author has nice UML diagrams to cover the concepts, and the text explanations are clear and accurate. I also liked how the book explains abstract classes and methods &#8211; very clear.</p>
<h4>Chapter 8 &#8211; Frameworks and Reuse: Designing with Interfaces &amp; Abstract Classes</h4>
<p>This chapter covers frameworks and abstract classes vs Java Interfaces. Another good chapter, which covers APIs. I liked the code sample for an abstract class, and the author includes nice UML diagram that demonstrates a interface, inheritance and composition. A short chapter but good material and worth the time spent to read it.</p>
<h4>Chapter 9 &#8211; Building Objects</h4>
<p>This is where you learn how to use objects to build other objects. This goes into both types of composition: aggregations and associations. The author also goes into cardinality (a familiar concept to DB developers). I liked the material here but would gladly give up all of chapter 6 for more information in this chapter. Good, but I&#8217;d like more.</p>
<h4>Conclusion</h4>
<p>A very good book that is well illustrated, deep enough to explain the material without overwhelming someone new to OO development, and a good starting point for more advanced/in-depth books on OO development.I like how the author goes into UML enough, but not too deep to obfuscate the topic of OO development &#8211; the appendix is a good starter for people new to UML, but I wouldn&#8217;t recommend it as the source for programmers needing to gain more mastery of that topic.</p>
<h4>Recommendation</h4>
<p>I enjoyed reading it and will pass it along when I find someone that could benefit from it. The most current version of this book is the 3rd edition, which was published in September of 2008. I would recommend this book to undergrad computer science majors that learned to develop with any non-OO language, or for procedural programmers moving on to OO development. I would not recommend this book for an intro to UML</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2387/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2387/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2387&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2012/01/15/the-object-oriented-thought-process-book-review-january-15-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>
	</item>
		<item>
		<title>January 14. 2012 &#8211; SkyFi Wireless Telescope Control</title>
		<link>http://mhreviews.wordpress.com/2012/01/14/january-14-2012-skyfi-wireless-telescope-control/</link>
		<comments>http://mhreviews.wordpress.com/2012/01/14/january-14-2012-skyfi-wireless-telescope-control/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 19:09:40 +0000</pubDate>
		<dc:creator>tedbade</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Hardware Reviews]]></category>
		<category><![CDATA[Space Exploration]]></category>
		<category><![CDATA[astronomy hardware]]></category>
		<category><![CDATA[SkyFi 2012 review]]></category>
		<category><![CDATA[SkyFi review]]></category>
		<category><![CDATA[Southern Stars]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2374</guid>
		<description><![CDATA[By Ted Bade, © Copyright 2012, All Rights Reserved. Product: SkyFi Wifi to Serial Adapter Vendor: Southern Stars (http://www.southernstars.com/index.html) Price: $149.95 Introduction SkyFi is another fine product from Southern Stars, who sell SkySafari software for mobile devices and Mac computers, as well as other telescope-related hardware products. SkyFi uses WiFi to connect the RS232 control data [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2374&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Ted Bade, © Copyright 2012, All Rights Reserved.</p>
<p>Product: SkyFi Wifi to Serial Adapter<br />
Vendor: Southern Stars (http://www.southernstars.com/index.html)<br />
Price: $149.95</p>
<h4>Introduction</h4>
<p>SkyFi is another fine product from Southern Stars, who sell SkySafari software for mobile devices and Mac computers, as well as other telescope-related hardware products. SkyFi uses WiFi to connect the RS232 control data flow from a telescope controller to an device (iPod/Phone/Pad apps as well as computer applications).</p>
<h4>Setup</h4>
<div id="attachment_2376" class="wp-caption alignright" style="width: 298px"><a href="http://mhreviews.files.wordpress.com/2012/01/skyfi.png"><img class=" wp-image-2376 " title="SkyFi" src="http://mhreviews.files.wordpress.com/2012/01/skyfi.png?w=288&#038;h=335" alt="" width="288" height="335" /></a><p class="wp-caption-text">Figure 1 - SkyFi</p></div>
<p>Connecting the SkyFi to your telescope controller isn’t difficult. The package includes a couple of adaptors which will work with the mosre common telescope setups. The connection on the SkyFi itself is an RJ11 telephone jack. You can make a cable that connects the SkyFi directly to your telescope controller, use the included adaptors, or purchase a cable specifically for your computer from Southern Stars. Once connected to the telescope controller, you turn it on and it creates a wireless network.Your remote device needs to be connected to this network and also needs to be running software that can send and receive telescope control and data using the TCP IP. The connection scheme is the same as the one in the previous article. The Southern Stars web site has a nice explanation and pin out of the cables you need, in case you want to make one.</p>
<p>The SkyFi device itself is a bit larger then a cell phone. It is powered by 4 double-A batteries and can accept a power brick as well (6 to 12 VDC). There is no on/off switch, but there is a switch that selects either external or internal voltage source. Switching to external voltage source disconnects the internal batteries. (Which acts like a switch). A piece of velcro can be used to attach the SkyFi to the telescope mount, out of the way of motion. It is very light and once running, you won’t need to adjust it at all.</p>
<p>Once on, the SkyFi makes a wifi hotspot available. Firmware on the device controls the IP address and security. There is a standard IP address which is printed on the SkyFi, but you can change this and security settings if needed. I didn’t bother changing the default settings, as they worked well. I could find no fault with the defaults!</p>
<h4>Using the Product</h4>
<p>Before you begin using the SkyFi, you need to be sure that the telescope control software you use can communicate to the telescope using TCP IP. I Didn’t know some programs do not support TCP IP. On my MacBook, I have Voyager 4.5 and a copy of Sky Safari Beta that will work. The Starry Night Pro Plus that I like using doesn’t do TCP connections to telescopes. The people at Starry Night were unaware of a solution that would work on the Macintosh. For Windows users there are a couple of shareware applications that create a virtual com port that can be tied to the TCP connection, so I imagine this would work with a Window based machine and Starry Night or any other non-TCP controller application.</p>
<div id="attachment_2378" class="wp-caption alignleft" style="width: 250px"><a href="http://mhreviews.files.wordpress.com/2012/01/skyfiwithscopeprev.jpg"><img class=" wp-image-2378 " title="SkyFiWithScopePrev" src="http://mhreviews.files.wordpress.com/2012/01/skyfiwithscopeprev.jpg?w=240&#038;h=180" alt="" width="240" height="180" /></a><p class="wp-caption-text">Figure 2 - SkyFi with a Telescope</p></div>
<p>If you are controlling with your i-device, you will need the Southern Stars Sky Safari package. (I am unaware of any other astronomy app that controls a telescope). We looked at these Apps a bit in the last article. In the App’s settings, you choose to use TCP IP to connect to the telescope controller. The default address is the same as the default on the SkyFi. (No surprise there!) Select to control the telescope and you are in control using your iPod/iPad/iPhone.</p>
<p>Working with the Voyager software, I had no issues controlling my telescope computer at all. Commands were instant as was feed back. The only issue I had was with me forgetting to choose the SkiFi network rather then my own home wireless network. You also need to make sure the controller software has the same TCP address that the SkyFi has. In Voyager 4.5, there is a box to enter this address. The default address is printed on the SkyFi device, which is another good reason for keeping to the defaults. However, if you need to change it, you can always re-label the back of the unit.</p>
<p>When I first read about the SkyFi, I thought that it was a wireless device and that it would log onto the local wireless network and make the telescope available on that network. It doesn’t do that. Rather then logging onto an existing network, it creates one of it’s own. So I couldn’t use this device to control my telescope with my desktop computer, since it doesn’t have a WiFi card. Nor would one be able to use it to allow access to the telescope from a remote site. You need to be in range of the SkyFi’s wireless netwrok to connect.</p>
<div id="attachment_2375" class="wp-caption alignright" style="width: 177px"><a href="http://mhreviews.files.wordpress.com/2012/01/skyfi-hw-vsp3-small.png"><img class=" wp-image-2375 " title="SkyFi-HW-VSP3-Small" src="http://mhreviews.files.wordpress.com/2012/01/skyfi-hw-vsp3-small.png?w=167&#038;h=221" alt="" width="167" height="221" /></a><p class="wp-caption-text">Figure 3 - VSP3 Screen</p></div>
<p>Since the computer you are controlling the telescope with is connected to the SkyFi network, it won’t be connected to your regular one. While observing I usually listen to Internet radio and I will often pop onto some internet site to inspect images and information about the object I am seeking. So I don’t get to listen to the Internet Radio, but I can still do my research by logging back onto my home network, do the research, then re-connect to the SkyFi. Luckily, this isn’t a big issue. Once the telescope is aimed at an object, the onboard controller takes care of compensating for the movement of the earth. Once connected back to the SkyFi, the data stream identifies the slightly changed location and all is well. It is just an added step in the process.</p>
<h4>Conclusion</h4>
<p>The biggest issue I had with the SkyFi is that it doesn’t come as a package. You buy the SkyFi and then need to find some compatible software. If the software you already purchased isn’t compatible, then you need to consider this as part of the purchase cost. It would be a whole lot nicer if the SkyFi came packaged with either SkySafari or Voyager. However, if you are into astronomy, you probably already have some package that will work with the SkyFi.</p>
<p>Much to my chagrin, I had expected that using the SkyFi would remedy the tangle of cables that I “need” to deal with when observing. However, I found that I still need to bring an extension cord to power the AutoStar (or use the battery adaptor). Since I had the power cord there, I went ahead and plugged in my MacBook Pro, so I still had the extension cord cable and the power supply cord to the MacBook. Thus, the tripping issue wasn’t really resolved. I suppose I could run the Scope on battery and bring the extension cable to the MacBook Pro, but that would cost me a lot in the battery budget.</p>
<p>As far as distance, the SkyFi does pretty well. I walked around the yard with my MacBook and had to get pretty far away to loose the connection. I think I was able to move slightly father then the expected 100 feet from the device. I was also able to put the MacBook on my dining room table and still control the telescope in the yard. I can see this as a real advantage in the winter as it would give me a chance to warm up between observations.</p>
<p>SkyFi is available through the <a href="http://www.southernstars.com/">Southern Star’s</a> web site as well as many other astronomy stores. <a href="http://www.southernstars.com/">Southern Star</a> also sells Sky Safari for MacOS X in three flavors, the Plus and Pro versions includes telescope controls ($20 and $50 respectively). The version for the iPod/Phone/Pad can be purchased through iTunes store again, you will need either the Plus or Pro version to control the telescope. In the next installment of this series, I will look specifically at the Sky Safari applications for the Macintosh.</p>
<h4>Recommendation</h4>
<p>Overall, the SkyFi works very well. If you are looking for a wireless connection to your telescope, this is the device you want. I don’t think there are many other options. I had no issues controlling my telescope using the device. If you have an iDevice and want to control your telescope, this is again a terrific solution.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2374/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2374/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2374/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2374&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2012/01/14/january-14-2012-skyfi-wireless-telescope-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f79b3899385e8e2f9b8733ef8bc51ad7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tedbade</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2012/01/skyfi.png" medium="image">
			<media:title type="html">SkyFi</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2012/01/skyfiwithscopeprev.jpg" medium="image">
			<media:title type="html">SkyFiWithScopePrev</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2012/01/skyfi-hw-vsp3-small.png" medium="image">
			<media:title type="html">SkyFi-HW-VSP3-Small</media:title>
		</media:content>
	</item>
		<item>
		<title>Configure Eclipse IDE for Spring Development (January 7, 2012)</title>
		<link>http://mhreviews.wordpress.com/2012/01/07/setup-eclipse-for-spring-development-january-7-2012/</link>
		<comments>http://mhreviews.wordpress.com/2012/01/07/setup-eclipse-for-spring-development-january-7-2012/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 20:59:13 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[configure Spring and Eclipse]]></category>
		<category><![CDATA[Eclipse IDE]]></category>
		<category><![CDATA[Spring framework]]></category>
		<category><![CDATA[Tomcat 6]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2355</guid>
		<description><![CDATA[By Mike Hubbartt, © Copyright 2012, All Rights Reserved. Spring is a nice Java framework that simplifies J2E tasks, and is in wide use in many real-world business development environments. If you don&#8217;t know it and want to do dynamic web development with Java, this is a good time to learn it. You need a couple [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2355&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Mike Hubbartt, © Copyright 2012, All Rights Reserved.</p>
<p>Spring is a nice Java framework that simplifies J2E tasks, and is in wide use in many real-world business development environments. If you don&#8217;t know it and want to do dynamic web development with Java, this is a good time to learn it.</p>
<p>You need a couple of things to do Spring development. A good IDE, Tomcat for local development, and a good database for dynamic content. I enjoy using Eclipse IDEs, so this Spring setup procedure covers Eclipse Indigo.</p>
<h4>Spring Configuration</h4>
<ol>
<li>Download and install Eclipse Indigo from <a href="http://www.eclipse.org">http://www.eclipse.org</a>.</li>
<li>Download and install Tomcat 6 from <a href="http://tomcat.apache.org/">http://tomcat.apache.org/</a>.</li>
<li>Download and install a relational DBMS like MySQL or SQL Anywhere for Developers.</li>
<li>Download the Spring framework <strong><span style="text-decoration:underline;">with dependencies</span></strong> (for this example, I downloaded Spring 2.5 RC2) from <a href="http://www.springsource.org/download">http://www.springsource.org/download</a> and then unzip the file into a folder. I keep all of my Spring files a folder surprisingly called Spring &#8211; it holds the Spring framework files and any Spring-specific articles I find to be useful as references.</li>
<li>Download the Spring plug-ins by
<ol>
<li>Using Help &#8211; Install New Software.</li>
<li>At the Install popup, select the Add button.</li>
<li>At the Add Repository popup, use Spring for the name and <span style="text-decoration:underline;">http://dist.springframework.org/release/IDE</span> as the location.</li>
<li>Select Core/Spring IDE and Resources/Spring IDE, then press the Next button.</li>
<li>Select the Next button.</li>
<li>Select the &#8216;I accept&#8230;&#8217; licensing option and then press the Finish button.</li>
<li>Restart Eclipse when prompted after the plugin is installed.</li>
</ol>
</li>
<li>In Eclipse, select File &#8211; New &#8211; Other, then select Dynamic Web Project, then press the Next button.</li>
<li>Enter a Project Name, then press the Finish button.</li>
<li>Create a war directory in the project &#8211; this is where non-Java source (.JSPs, XML, etc) are stored. In Eclipse, use File &#8211; New &#8211; Folder, and enter &#8216;war&#8217; as the folder name, then press the Finish button.</li>
<li>In the new war folder, create a WEB-INF folder using File &#8211; New &#8211; Folder just as you did in step 8.</li>
<li>In the new WEB-INF folder, create a lib folder using File &#8211; New &#8211; Folder just as your in step 8.</li>
<li>Time to configure the build path:
<ol>
<li>Highlight the project name in the IDE, right mouse click, then select build path/configure build path.</li>
<li>At the Properties dialog box, select the Java Build Path option at the left of the dialog, then select the Source tab.</li>
<li>Select the &#8216;Add Folder&#8217; button, then select the &#8216;war&#8217; folder &#8211; do not select the folders below war, then select the OK button.</li>
</ol>
</li>
<li>Now add 2 JARs to the project.
<ol>
<li>Using Windows Explorer, locate the Spring.jar file, then drag and drop it onto the war/WEB-INF/lib folder in the IDE..</li>
<li>Using Windows Explorer, locate the commons-logging.jar file, then drag and drop it onto the war/WEB-INF/lib folder in the IDE.</li>
<li>With the project name highlighted, select File &#8211; Refresh from the IDE meu options.</li>
</ol>
</li>
<li>You are done &#8211; the project is ready to be used as a blank Spring project.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2355/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2355/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2355/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2355&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2012/01/07/setup-eclipse-for-spring-development-january-7-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>
	</item>
		<item>
		<title>Reflections on Completing a Third Semester of Grad School (December 28, 2011)</title>
		<link>http://mhreviews.wordpress.com/2011/12/28/reflections-on-completing-a-third-semester-of-grad-school-december-28-2011/</link>
		<comments>http://mhreviews.wordpress.com/2011/12/28/reflections-on-completing-a-third-semester-of-grad-school-december-28-2011/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 23:17:59 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[MagicDraw]]></category>
		<category><![CDATA[Masters Degree in Software Engineering]]></category>
		<category><![CDATA[University of St. Thomas]]></category>
		<category><![CDATA[UST GPS grad program]]></category>
		<category><![CDATA[UST Graduate Programs]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2332</guid>
		<description><![CDATA[By Mike Hubbartt, © Copyright 2011, All Rights Reserved. I just started my second year of graduate school at the University of St. Thomas (UST) in St. Paul, MN, and I am working on a MS in Software Engineering degree. In my first year of classes, I enrolled in 2 classes per semester which is a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2332&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Mike Hubbartt, © Copyright 2011, All Rights Reserved.</p>
<p>I just started my second year of graduate school at the <a title="UST" href="http://www.stthomas.edu">University of St. Thomas</a> (UST) in St. Paul, MN, and I am working on a MS in Software Engineering degree. In my first year of classes, I enrolled in 2 classes per semester which is a heavy load when working full time. I felt I progressed so much after one year, that I would continue with the same workload, even though it left me with little time for things beyond work and school.</p>
<p>I enrolled in two classes for the Fall: Object Oriented Analysis and Design (OOA/D) and Data Warehousing (DW). Before classes started I re-read The Object Oriented Thought Process and Code Complete to prep for the OOA/D class. I also ordered both required textbooks from Amazon.com at a substantially reduced price compared to the new text prices in the bookstore. For the DW class, I didn&#8217;t know what other books would help, so I ordered all three text books listed in the course syllabus. The DW books, also from Amazon.com, were also at a reduced price compared to new books at the bookstore.</p>
<p>I had classes on Tuesday and Wednesday evenings, so I dedicated the other 5 days to studying and project work. The Fall really flew by this year. So much to learn, so many interesting and new concepts, and a few new tools to learn too.</p>
<h4>Tools</h4>
<p>For OOA/D, we had to use <a title="MagicDraw" href="https://www.magicdraw.com/">MagicDraw</a> to create UML drawings and I found it to be a fairly intuitive tool to use yet still quite powerful. Our OOA/D professor arranged for MagicDraw licenses, so I obtained one, downloaded and installed the software, and ran through a few tutorials that were quite helpful. Having an MSDN account for students to download Microsoft tools is a real blessing, and UST does provide accounts to those that need tools for their classes. My DW class required the MS SQL Server 2008 Management tools, so I used my UST MSDN account to download the software and installed it on a laptop running Windows 7.</p>
<h4>Projects</h4>
<p>Our OOA/D class had two person team projects, and our DW class had three person team projects. For OOA/D, each team decided what it wanted to do and then proposed it for approval to the professor. We did a website with Struts and Hibernate frameworks &#8211; very cool. For DW, the professor gave a five stage project, where he provided clean, valid data at the start of steps 2 &#8211; 4, so any mistakes made early in the project did not affect our ability to learn the material and do well on the assignment. This was the first time I&#8217;ve had known clean data in a multistage class assignment and I really liked it. At the start of stages 3 and 4, we were able to look back at to what we did and see how we did right and wrong in the earlier stage. This is one approach I really liked and I hope I see more assignments like it in the future.</p>
<p>Some tools that were useful in both projects we communications tools. Twitter and email absolutely rock, but they alone are not enough. In my OOA/D project, we used a free SVN repository hosted by ProjectLocker for keeping our source code in sync. For the DW project, we used Dropbox to do version control.</p>
<h4>Tests and Homework</h4>
<p>In both classes classes we had a mid-term and a final exam, and the exams were as challenging as last year. Both classes had multiple homework assignments. Not as much homework as I had in the Advanced Web Development course last Spring, but still more than enough, especially compared to undergrad course homework assignments.</p>
<h4>Team Building</h4>
<p>I worked with three different people on projects in both classes, and decided to be the driver of both projects. Both teams met at my house on different days to work on our projects, and one thing I did for team building was to fix lunch for the team. We all had different backgrounds and experiences, so a meal is a great way to relax and get to know other people. I like to cook (check out my food blog: mikeh2010.wordpress.com) and I like to try new recipes, so my team mates gamely tried the food. I didn&#8217;t duplicate the meals one time, and it seemed to work out well for both of us except perhaps one time. Once I served something very spicy (Korean BBQ) and it might have been too spicy for one of my team mates. He said it wasn&#8217;t, but he is a real trooper and may have just been polite. In any case, I appreciated the chance to cook and just talk with all three team mates and hope to partner with them again in other classes.</p>
<h4>Conclusion</h4>
<p>I enjoyed this semester. I learned a lot and enjoyed spending some time working on projects with my three classmates. I plan to generate another article or two on the topics we covered in both classes, as well as improve some of my existing articles. I know I still have another eight classes to complete my degree, but the education is worth the time and effort. Some people have no choice but attend online schools and that is fine &#8211; do what you can to improve yourself however you can. If you can attend class in person, it is well worth it. I missed a total of 1 class this semester, even though I had some health issues early in the semester, because I truly enjoyed being on campus.</p>
<p>I&#8217;m still excited to be in grad school, and I still believe it to be a good career choice for many professions besides software development. I&#8217;m taking a week off, then it is time to start reading again over the holiday break. I will take two classes in the Spring and look forward to what I learn in both courses I&#8217;ll take this Spring. Until then, keep on learning.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2332/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2332/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2332/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2332&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/12/28/reflections-on-completing-a-third-semester-of-grad-school-december-28-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>
	</item>
		<item>
		<title>November 29, 2011 &#8211; Energy (fuel efficiency): US Courts and Sciences, and Balancing Healthcare Costs</title>
		<link>http://mhreviews.wordpress.com/2011/11/29/november-29-2011-energy-fuel-efficiency-us-courts-and-sciences-and-balancing-healthcare-costs/</link>
		<comments>http://mhreviews.wordpress.com/2011/11/29/november-29-2011-energy-fuel-efficiency-us-courts-and-sciences-and-balancing-healthcare-costs/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 10:31:37 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Environmental Posts]]></category>
		<category><![CDATA[Affordable Heath Care Act]]></category>
		<category><![CDATA[Assumed Causality]]></category>
		<category><![CDATA[Belief v s Fact]]></category>
		<category><![CDATA[Biofuels]]></category>
		<category><![CDATA[Biofuels Life Cycle]]></category>
		<category><![CDATA[Conflict Of Interest]]></category>
		<category><![CDATA[Defining Scientific Legal Evidence]]></category>
		<category><![CDATA[Essential Health Benefits]]></category>
		<category><![CDATA[Fuel Efficiency Standards]]></category>
		<category><![CDATA[General Causation as Evidence]]></category>
		<category><![CDATA[Judges And Science]]></category>
		<category><![CDATA[Medical Cost Containment]]></category>
		<category><![CDATA[Medical Necessity]]></category>
		<category><![CDATA[Modeling Energy Costs]]></category>
		<category><![CDATA[National Academy Reports]]></category>
		<category><![CDATA[National Research Council Reports]]></category>
		<category><![CDATA[Renewable Fuel Dilemmas’]]></category>
		<category><![CDATA[Science Courts]]></category>
		<category><![CDATA[Scientific Basis For Evidence]]></category>
		<category><![CDATA[Specific Causation as Evidence]]></category>
		<category><![CDATA[The Role Of Coincidence]]></category>
		<category><![CDATA[Torts-Dealing With Changes In Science]]></category>
		<category><![CDATA[US Energy Independence]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2314</guid>
		<description><![CDATA[— Three National Academies Recent Studies An Op-Ed Piece; doc’s eclectic views November 1, 2011 By Harry Babad, © Copyright 2011, All Rights Reserved  — Used under the Creative Commons Attribution-ShareAlike License Introduction As is my want, I periodically check the National Academies Press web pages for workshop notes/articles/reports that appeal to me, not as nuclear [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2314&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>— Three National Academies Recent Studies</strong> <a href="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif"><img class="alignright size-full wp-image-151" title="Gaiea" src="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif?w=614" alt=""   /></a></p>
<p>An Op-Ed Piece; doc’s eclectic views November 1, 2011</p>
<p>By Harry Babad, © Copyright 2011, All Rights Reserved  — Used under the <a href="http://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a></p>
<p><strong><br />
</strong></p>
<h4>Introduction</h4>
<p><em>As is my want, I periodically check the National Academies Press web pages for workshop notes/articles/reports that appeal to me, not as nuclear waste and energy expert. Rather I explore the various issues at times only ripples and at times tidal waves related to public policy in both American society and that of the world.<br />
</em></p>
<p><em>Hence this Op-Ed piece. Herein I COPY the prefaces or abstracts from three reports I found both distress and challenging. Unusual for me, I do not editorialize on them, that’s up to you, the reader. I do however highlight sections that made a deep impression on me by either underlining the (if short) or by enclosing them in a text box. I also could not resist my genetic editors syndrome so I split a few sentences in two, or added in italics, a linking word or two. Remember, my stuff is in italics.</em></p>
<p><em>Also the graphics are my idea, the NRC reports a captained extensive tables and figures, good technical stuff, but are not into </em><a href="http://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_test">Flesch–Kincaid readability test </a> levels for their narratives or <em>illustrations. But my friends in the academies will not disinherit me because its all for an educational purpose. _        Doc.</em></p>
<p>…Read on!</p>
<h4>A Renewable Biofuel Standard — America’s Quandary</h4>
<h4>Scientific Legal Evidence Revisited &#8211; Reference Manual on Scientific Evidence: Third Edition</h4>
<h4>Essential Health Benefits — Balancing Coverage &amp; Costs</h4>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4>Setting a <a href="http://www.nap.edu/catalog.php?record_id=13105">Biofuels Renewable Fuel Standard</a></h4>
<h5>— Choosing an alternative, an all American Quandary<strong> </strong>[A NRC Study of the Potential Economic and Environmental Effects of U.S. Biofuel Policy]<strong></strong></h5>
<p>“In the United States, we have come to depend upon <a href="http://mhreviews.files.wordpress.com/2011/11/nas1.jpg"><img class="alignright size-full wp-image-2315" style="margin:2px;" title="NAS1" src="http://mhreviews.files.wordpress.com/2011/11/nas1.jpg?w=614" alt=""   /></a>plentiful and inexpensive energy to support our economy and lifestyles. In recent years, many questions have been raised regarding the sustainability of our current pattern of high consumption of nonrenewable energy and its environmental consequences. Further, because the United States imports about 55 percent of the nation’s consumption of crude oil, there are additional concerns about the security of supply. Hence, efforts are being made to find alternatives to our current pathway, including greater energy efficiency and use of energy sources that could lower greenhouse gas (GHG) emissions such as nuclear and renewable sources, including solar, and (<em>also their</em>) environmental consequences of increasing biofuels production. The statement of task asked this committee to provide “a qualitative and quantitative description of biofuels currently produced and projected to be produced by 2022 in the United States under different policy scenarios …</p>
<p>“The United States has a long history with biofuels. Recent interest began in the late 1970s with the passage of the National Energy Conservation Policy Act of 1978, which established the first biofuels subsidy, applied in one form or another to (<em>mostly</em>) corn-grain ethanol since then. The corn grain ethanol industry grew slowly from early 1980s to around 2003. From 2003 to 2007,ethanol production grew rapidly as methyl tertiary butyl ether was phased out as a gasoline oxygenate and replaced by ethanol. Interest in providing other incentives for biofuels increased also because of rising oil prices from 2004 and beyond. <a href="http://www.afdc.energy.gov/afdc/laws/eisa">The Energy Independence and Security Act of 2007</a> established a new and much larger Renewable Fuels Standard and set in motion the drive towards 35 billion gallons of ethanol-equivalent biofuels plus 1 billion gallons of biodiesel by 2022. This National Research Council committee was asked to evaluate the consequences of such a policy; the nation is on a course charted to achieve a substantial increase in biofuels, and there are challenging and important questions about the economic and environmental consequences of continuing on this path.</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/11/nas2.jpg"><img class="alignleft size-full wp-image-2316" style="margin:2px;" title="NAS2" src="http://mhreviews.files.wordpress.com/2011/11/nas2.jpg?w=614" alt=""   /></a>“<a href="http://www.nap.edu/catalog.php?record_id=13105">The <em>National Research Council</em> committee <em>brought</em> together expertise on the many dimensions of the topic.</a> In addition, we called upon numerous experts to provide their perspectives, research conclusions, and insight. Yet, with all the expertise available to us, our clearest conclusion is that there is very high uncertainty in the impacts we were trying to estimate. The uncertainties include essentially all of the drivers of biofuel production and consumption and the complex interactions among those drivers: future crude oil prices, feedstock costs and availability, technological advances in conversion efficiencies, land-use change, government policy, and more.</p>
<p>“The U.S. Department of Energy projects crude oil price in 2022 to range between $52 and $177 per barrel (in 2009 dollars), a huge range. There are no commercial cellulosic biofuels plants in the United States today. Consequently, we do not know much about growing, harvesting, and storing such feedstocks at scale. We do not know <em>other than for ethanol</em> how well the conversion technologies will work nor what they will cost. We do not have generally agreed upon estimates of the environmental or Green House Gases [GHG] impacts of most biofuels. We do not know how landowners will alter their production strategies. The bottom line is that it simply was not possible to come up with clear quantitative answers to many of the questions. What we tried to do instead is to delineate the sources of the uncertainty, describe what factors are important in understanding the nature of the uncertainty, and provide ranges or conditions under which impacts might play out.</p>
<p>“Under these conditions, scientists often use models to help understand what future conditions might be like. In this study, we examined many of the issues using the best models available. Our results by definition carry the assumptions and inherent uncertainties in these models, but we believe they represent the best science and scientific judgment available.</p>
<p>“We also examined the potential impacts of various policy alternatives as requested in the statement of work. Biofuels are at the intersection of energy, agricultural, and environmental policies, and policies in each of these areas can be complex. The magnitude of biofuel policy impacts depends on the economic conditions in which the policy plays out, and that economic environment (such as GDP growth and oil price) is highly uncertain. Of necessity, we made the best assumptions we could and evaluated impacts contingent upon those assumptions. Biofuels are complicated.</p>
<p>“Biofuels are controversial. <a href="http://mhreviews.files.wordpress.com/2011/11/nas3.jpg"><img class="alignright size-medium wp-image-2317" title="NAS3" src="http://mhreviews.files.wordpress.com/2011/11/nas3.jpg?w=300&#038;h=172" alt="" width="300" height="172" /></a>There are very strong advocates for and political supporters of biofuels. There are equally strong sentiments against biofuels. Our deliberations as a committee focused on the scientific aspects of biofuel production—social, natural, and technological. Our hope is that the scientific evaluation sheds some light on the heat of the debate, as we have delineated the issues and consequences as we see them, together with all the inherent uncertainty.”</p>
<p><em><span style="text-decoration:underline;">Why No Conclusions or Recommendations?</span></em> — “The statement of task calls on the committee to <span style="text-decoration:underline;">refrain from recommending policies</span> but to provide an objective review of the policy instruments available, including an assessment of the strengths and weaknesses of each in affecting long-term trends in transportation energy use and emissions. Because of the multitude of ways in which individual policy instruments can be designed, targeted, and applied, it was not possible to examine all of their possible variations and outcomes for a sector as large and diverse as U.S. transportation. For example, how fast and by how much fuel taxes or vehicle efficiency standards are raised will profoundly influence the relative prospects of such options for implementation and their effects on energy use and emissions and on other areas of interest to policy makers such as transportation safety, the environment, and the economy. This study is not a modeling exercise aimed at projecting and quantifying the effects of many policy instruments, each designed and structured in alternative ways and applied across one or more modes. The more realistic study goal is to compare the main types of policy options with respect to the main energy- and emissions-saving responses they induce and the challenges and opportunities they present for implementation.”</p>
<p><em>There is much in this report to stretch you mental muscles. Too, often what we read is distorted by either the silver bullet or golden goose syndrome or by WIIFT. As is usual with NAS reports, there are occasional places where I differ from the conclusions of this consensus report; but consensus is just that &#8212; not perfect, just hopefully workable. Indeed where panel members are friends or colleagues, I’ve often argued particular points with them. However, over-all the reports are a very good source of information. </em></p>
<p><a href="http://www.nap.edu/catalog.php?record_id=13105">National Academy of Science-National Academies Press</a> &lt;2011&gt; The PDF download is free!  <em>PREPUBLICATION COPY – document is subject to editorial changes only.</em><em></em></p>
<p><em>Biofuel – Wikipedia, 2011 — </em><a href="http://en.wikipedia.org/wiki/Biofuels">http://en.wikipedia.org/wiki/Biofuels</a></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4><span style="text-decoration:underline;"><span style="color:#000000;text-decoration:underline;"><a href="http://www.nap.edu/catalog.php?record_id=13163"><span style="color:#000000;text-decoration:underline;">Scientific Legal Evidence Revisited &#8211; Reference Manual on Scientific Evidence: Third Edition</span></a></span></span></h4>
<p><em>On many occasions I have gripped about courts treatment of scientific evidence and at times written in praise of revising the tort system with the wider scale implementation </em><a href="http://en.wikipedia.org/wiki/Science_Court"><em>science courts</em></a><em> using well-trained certified peer accredited combinations legal experts and scientists, to assist the judge. Cases would not go to juries until the underlying </em><a href="http://en.wikipedia.org/wiki/Scientific_method"><em>scientific evidence had been evaluated</em></a><em>. Why — just on example, </em><a href="http://en.wikipedia.org/wiki/Asbestos"><em> </em><em><span style="text-decoration:underline;">chrysotile</span></em><em> based</em><em> asbestos fibers are relatively low in toxicity</em></a><em> so should not be painted with the same brush as Amphibole asbestos.</em></p>
<p><em> This NAP document sings the songs I love to hear; belief and science have their own place.</em></p>
<p><em>Only then could a case enter the fault finding juried phase. I would much rather give jury applicants tests in scientific methodology and broad knowledge, but I suspect very few potential jurors would pass such a test. Yes, I hear the screams from lawyers deprived of their cut, civil libertarians and educators.</em></p>
<h5><span style="text-decoration:underline;">The NRC Report Summary<a href="http://mhreviews.files.wordpress.com/2011/11/nas4.jpg"><img class="alignright size-full wp-image-2318" style="margin:2px;" title="NAS4" src="http://mhreviews.files.wordpress.com/2011/11/nas4.jpg?w=614" alt=""   /></a></span></h5>
<p>“Supreme Court decisions during the last decade of the twentieth century mandated that federal courts examine the scientific basis of expert testimony to ensure that it meets the same rigorous standard employed by scientific researchers and practitioners outside the courtroom. Needless to say, this requirement places a demand on judges not only to comprehend the complexities of modern science but also to adjudicate between parties’ differing interpretations of scientific evidence.</p>
<p>“Science, meanwhile, advances. Methods change, new fields are born, new tests are introduced, the lexicon expands, and fresh approaches to the interpretation of causal relations evolve. Familiar terms such as enzymes and molecules are replaced by microarray expression and nanotubes; single-author research studies have now become multi-institutional, multi-author, international collaborative efforts. No field illustrates the evolution of science better than forensics.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="441">“The evidence provided by DNA technology was so far superior to other widely accepted methods and called into question so many earlier convictions that the scientific community had to reexamine many of its time-worn forensic science practices. Although flaws of some types of forensic science evidence, such as bite and footprint analysis, lineup identification, and bullet matching were recognized, even the most revered form of forensic science—fingerprint identification—was found to be fallible. Notably, even the “gold standard” of forensic evidence, namely DNA analysis, can lead to an erroneous conviction if the sample is contaminated, if specimens are improperly identified, or if appropriate laboratory protocols and practices are not followed.</td>
</tr>
</tbody>
</table>
<p>“Yet despite its advances, science has remained fundamentally the same. In its ideal expression, it examines the nature of nature in a rigorous, disciplined manner in, whenever possible, (<em>in</em>) controlled environments. It still is based on principles of hypothesis generation, scrupulous study design, meticulous data collection, and objective interpretation of experimental results. As in other human endeavors, however, this ideal is not always met. “Feverish competition between researchers and their parent institutions, fervent publicity seeking, and the potential for dazzling financial rewards can impair scientific objectivity. In recent years we have experienced serious problems that range from the introduction of subtle bias in the design and interpretation of experiments to overt fraudulent studies. In this welter of modern science, ambitious scientists, self-designated experts, billion dollar corporate entities, and aggressive claimants, judges must weigh evidence, judge, and decide.</p>
<p>“As with previous editions of the <em>Reference Manual</em>, this edition is organized according to many of the important scientific and technological disciplines likely to be encountered by federal (or state) judges. We wish to highlight here two critical issues germane to the interpretation of all scientific evidence, namely <span style="text-decoration:underline;">issues of causation and conflict of interest</span>. Causation is the task of attributing cause and effect, a normal everyday cognitive function that ordinarily takes little or no effort. Fundamentally, the task is an inferential process of weighing evidence and using judgment to conclude whether or not an effect is the result of some stimulus. Judgment is required even when using sophisticated statistical methods.</p>
<p>“Such methods can provide powerful evidence of associations between variables, but they cannot prove that a causal relationship exists. Theories of causation (evolution, for example) lose their designation as theories only if the scientific community has rejected alternative theories and accepted the causal relationship as fact. Elements that are often considered in helping to establish a causal relationship include predisposing factors, proximity of a stimulus to its putative outcome, the strength of the stimulus, and the strength of the events in a causal chain.</p>
<p>“Unfortunately, judges may be in a less favorable position than scientists to make causal assessments. Scientists may delay their decision while they or others gather more data. Judges, on the other hand, must rule on causation based on existing information. Concepts of causation familiar to scientists (no matter what stripe) may not resonate with judges who are asked to rule on general causation (i.e., is a particular stimulus known to produce a particular reaction) or specific causation (i.e., did a particular stimulus cause a particular consequence in a specific instance). In the final analysis, a judge does not have the option of suspending judgment until more information is available, but must decide after considering the best available science. Finally, given the enormous amount of evidence to be interpreted, expert scientists from different (or even the same) disciplines may not agree on which data are the most relevant, which are the most reliable, and what conclusions about causation are appropriate to be derived.</p>
<p>“Like causation, conflict of interest is an issue that cuts across most, if not all, scientific disciplines and could have been included in each chapter of the <em>Reference Manual. </em>Conflict of interest manifests as bias, and given the high stakes and adversarial nature of many courtroom proceedings, bias can have a major influence on evidence, testimony, and decision making. Conflicts of interest take many forms and can be based on religious, social, political, or other personal convictions. The biases that these convictions can induce may range from serious to extreme, but these intrinsic influences and the biases they can induce are difficult to identify. Even individuals with such prejudices may not appreciate that they have them, nor may they realize that their interpretations of scientific issues may be biased by them.</p>
<p>“Because of these limitations, we consider here only financial conflicts of interest; such conflicts are discoverable. Nonetheless, even though financial conflicts can be identified, having such a conflict, even one involving huge sums of money, does not necessarily mean that a given individual will be biased. Having a financial relationship with a commercial entity produces a conflict of interest, but it does not inevitably evoke bias. In science, financial conflict of interest is often accompanied by disclosure of the relationship, leaving to the public the decision whether the interpretation might be tainted. Needless to say, such an assessment may be difficult. The problem is compounded in scientific publications by obscure ways in which the conflicts are reported and by a lack of disclosure of dollar amounts.</p>
<p>“Judges and juries, however, must<a href="http://mhreviews.files.wordpress.com/2011/11/nas5.jpg"><img class="alignright size-full wp-image-2319" title="NAS5" src="http://mhreviews.files.wordpress.com/2011/11/nas5.jpg?w=614" alt=""   /></a> consider financial conflicts of interest when assessing scientific testimony. The threshold for pursuing the possibility of bias must be low. In some instances, judges have been frustrated in identifying expert witnesses who are free of conflict of interest because entire fields of science seem to be co-opted by payments from industry. Judges must also be aware that the research methods of studies funded specifically for purposes of litigation could favor one of the parties. Though awareness of such financial conflicts in itself is not necessarily predictive of bias, such information should be sought and evaluated as part of the deliberations.</p>
<p><em>“The Reference Manual on Scientific Evidence</em>, here in its third edition, is formulated to provide the tools for judges to manage cases involving complex scientific and technical evidence. It describes basic principles of major scientific fields from which legal evidence is typically derived and provides examples of cases in which such evidence was used. Authors of the chapters were asked to provide an overview of principles and methods of the science and provide relevant citations.</p>
<p>“We expect that few judges will read the entire manual; most will use the volume in response to a need when a particular case arises involving a technical or scientific issue. To help in this endeavor, the <em>Reference Manual </em>contains completely updated chapters as well as new ones on neuroscience, exposure science, mental health, and forensic science. This edition of the manual has also gone through the thorough review process of the National Academy of Sciences.</p>
<p>“As in previous editions, we continue to caution judges regarding the proper use of the reference guides. They are not intended to instruct judges concerning what evidence should be admissible or to establish minimum standards for acceptable scientific testimony. Rather, the guides can assist judges in identifying the issues most commonly in dispute in these selected areas and in reaching an informed and reasoned assessment concerning the basis of expert evidence. They are designed to facilitate the process of identifying and narrowing issues concerning scientific evidence by outlining for judges the pivotal issues in the areas of science that are often subject to dispute.</p>
<p>“Citations in the reference guides identify cases in which specific issues were raised; they are examples of other instances in which judges were faced with similar problems. By identifying scientific areas commonly in dispute, the guides should improve the quality of the dialogue between the judges and the parties concerning the basis of expert evidence. In our committee discussions, we benefited from the judgment and wisdom of the many distinguished members of our committee, who gave time without compensation.”</p>
<p><a href="http://www.nap.edu/catalog.php?record_id=13163">http://www.nap.edu/catalog.php?record_id=13163</a></p>
<p>The PDF download is free!  <em>PREPUBLICATION COPY – document is subject to editorial changes only.</em></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4><span style="text-decoration:underline;"><span style="color:#000000;"><a href="http://www.nap.edu/catalog.php?record_id=13234"><span style="color:#000000;text-decoration:underline;">Essential Health Benefits — Balancing Coverage &amp; Costs &lt;2011&gt;</span></a></span></span><strong> </strong><strong></strong></h4>
<p><em>The academy committee, all volunteers, albeit knowledgeable, managed to stay clear of politicizing, an accomplishment I’m not sure I could equal.</em></p>
<p>“A critical element of the Patient Protection and Affordable Care Act (ACA) is the set of health benefits—termed “essential health benefits” (EHB)—that must be offered to individuals and small groups in state-based purchasing exchanges and the existing market. If the package of benefits is too narrow, health insurance might be meaningless; if it is too broad, insurance might become too expensive. The Institute of Medicine (IOM) Committee on Defining and Revising an Essential Health Benefits Package for Qualified Health Plans concluded that the major task of the Secretary of Health and Human Services (HHS) in defining the EHB will be balancing the comprehensiveness of benefits with their cost.</p>
<p>“Not surprisingly, the work of this committee drew intense public interest. Opportunity for public input was offered through testimony at two open hearings and through the web. The presentations at the hearings reinforced for the committee the difficulty of the task of balancing comprehensiveness and affordability. On the one hand, groups representing providers and consumers urged the broadest possible coverage of services. On the other, groups representing both small and large businesses argued for affordability and flexibility. The committee thus viewed its principal task as helping the Secretary navigate these competing goals and preferences in a fair and implementable way.</p>
<p>“The ACA sets forth only broad guidance in defining essential health benefits, and that guidance is ambiguous—some would say contradictory.</p>
<p>First, EHB “shall include at least” ten named categories of health services per Section 1302 Second, the scope of the EHB shall be “equal to the scope of benefits provided under a typical employer plan.”<br />
Third, there are a set of “required elements for consideration” in establishing the EHB, such as balance and nondiscrimination.<br />
Fourth, there are several specific requirements regarding cost sharing, preventive services, proscriptions on limitations on coverage, and the like.</p>
<p>Taken together, these provisions complicate the task of designing an EHB package that will be affordable for its principal intended purchasers—individuals and small businesses.</p>
<p>“The committee’s solution is this: build on what currently exists, learn over time, and make it better. That is, the initial EHB package should be a modification of what small employers are currently offering. All stakeholders should then learn enough over time—during implementation and through experimentation and research—to improve the package. The EHB package should be continuously improved and increasingly specific, with the goal that it is based on evidence of what improves health and that it promotes the appropriate use of limited resources. The committee’s recommended modifications to the current small employer benefit package are:</p>
<p>(1) To take into account the ten general categories of the ACA;<br />
(2) to apply committee-developed criteria to guide aggregate and specific EHB content and on the methods to determine the EHB; and<br />
(3) to develop an initial package within a premium target.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="441">
<p style="text-align:left;">“Defining a premium target, which is a way to address the affordability issue, became a central tenet of the committee. <em>Why </em>the Secretary should take cost into account, both in defining the initial EHB package and in updating it, is straightforward: if cost is not taken into account, the EHB package becomes increasingly expensive, and individuals and small businesses will find it increasingly unaffordable. If this occurs, the principal reason for the ACA—enabling people to purchase health insurance, and covering more of the population—will not be met. At an even more fundamental level, health benefits are a resource and no resource is unlimited. Defining a premium target in conjunction with developing the EHB package simply acknowledges this fundamental reality. <em>How </em>to take cost into account became a major task.</p>
</td>
</tr>
</tbody>
</table>
<p>“The committee’s solution in the <a href="http://mhreviews.files.wordpress.com/2011/11/nas6.jpg"><img class="alignright size-medium wp-image-2320" style="margin:2px;" title="NAS6" src="http://mhreviews.files.wordpress.com/2011/11/nas6.jpg?w=300&#038;h=200" alt="" width="300" height="200" /></a>determination of the initial EHB package is to tie the package to what small employers would have paid, on average, for their current packages of benefits in 2014, the first year the ACA will apply to insurance purchases in and out of the exchanges. This “premium target” should be updated annually, based on medical inflation. Since, however, this does little to stem health care cost increases, and since the committee did not believe the DHHS Secretary had the authority to mandate premium (or other cost) targets, the committee recommends a concerted and expeditious attempt by all stakeholders to address the problem of health care cost inflation.</p>
<p>“An additional task related to that part of the committee’s charge directing it to address “medical necessity.” Medical necessity is a means by which insurers and health plans determine whether it is appropriate to reimburse a specific patient for an eligible benefit. For example, the insurance contract may specify that diabetes care is a covered benefit; whether it is paid for depends on whether that care is medically necessary for the particular patient—whether, for example, the patient has diabetes.</p>
<p>‘The committee believes that medical necessity determinations are both appropriate and necessary and serve as a context within which the EHB package is developed by a health insurer into a specific benefit design and that benefit design is subsequently administered. The committee favored transparency both in the establishment of the rules used in making those determinations and in their application and appeals processes. Indeed, since the design and administration of health benefits rather than the scope of benefits themselves are what appear to differentiate small employer plans from each other and from large employer plans, monitoring benefit administration is an important step in the learning process and updating of the EHB.</p>
<p>“Further, the committee stated that a goal of the updated EHB package is that its content becomes more evidence-based. The committee wishes to emphasize the importance of research about the effectiveness of health services and to emphasize that the results of this research, including costs, should be taken into account in designing the EHB package. New and alternative treatments, in the view of the committee, should meet the standard of providing increased health gains at the same or lower cost.</p>
<p>“Since the committee saw balancing comprehensiveness and affordability as the Secretary’s major task, it also recognized that any such balancing affected, and was affected by, individual and societal values and preferences. Thus, the committee recommends that both in the determination of the initial EHB package and in its updates, structured public deliberative processes be established to identify the values and priorities of those citizens eligible to purchase insurance through the exchanges, as well as members of the general public. Such processes will enhance both public understanding of the tradeoffs inherent in establishing an EHB package and public acceptance of what emerges.</p>
<p>“The committee recommended that the Secretary <a href="http://mhreviews.files.wordpress.com/2011/11/nas7.jpg"><img class="alignright size-full wp-image-2321" style="margin:2px;" title="NAS7" src="http://mhreviews.files.wordpress.com/2011/11/nas7.jpg?w=614" alt=""   /></a>develop a process that facilitates discovery and implementation of innovative practices over time. A key source for this information will come from what states are observing or enabling <em>them</em> in their own exchanges. Moreover, the committee recommends that for states that operate insurance exchanges, requests to adopt alternatives to the federal essential health benefits package be granted only if these are consistent with ACA requirements and the criteria specified in the report and they are not significantly more or less generous than the federal package. State packages also should be supported by meaningful public input. The committee hopes that its work will be useful in assisting the Secretary of HHS to determine and update the essential health benefits and that its deliberations will be informative to the public. As with most issues of importance, the committee’s work involved balancing tradeoffs among competing interests and ideas. We hope this work is a positive step toward effective implementation of a key provision of the ACA.”</p>
<p><em>Since, in America the Litigative, the recommendations and implementation practices recommended by the EHB will be challenged in court, I recommend you read, if you skipped it, the previous topic on ‘Scientific Legal Evidence”.</em></p>
<p align="center"><strong>A Reference and a Note</strong></p>
<p>Essential Health Benefits — Balancing Coverage &amp; Costs, 2011</p>
<p><a href="http://www.nap.edu/catalog.php?record_id=13234">http://www.nap.edu/catalog.php?record_id=13234</a></p>
<p>The PDF download is free!  <em>PREPUBLICATION COPY – document is subject to editorial changes only.</em></p>
<p><em>A Note ASIDE</em><em>: </em></p>
<p><em>Recent articles and studies on Implicit Prejudice, holding belief based and deeply buried prejudices, which daily affect your decisions. See: </em><em>https://implicit.harvard.edu/implicit/</em><em> and Scientific American: The Implicit Prejudice 06/09/2006 Article </em>[<a href="http://www.sciam.com/print_version.cfm?articleID=0004B0F0-7813-146C-ADB783414B7F0000">http://www.sciam.com/print_version.cfm?articleID=0004B0F0-7813-146C-ADB783414B7F0000</a>] The implications of these hidden workings of our brains add much to how we make de3cision and ‘judge’ truth individually or in court.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p align="center"><strong>General References</strong></p>
<p><span style="text-decoration:underline;">The National Academies Press<a href="http://mhreviews.files.wordpress.com/2011/11/nas8.jpg"><img class="alignright size-medium wp-image-2322" title="NAS8" src="http://mhreviews.files.wordpress.com/2011/11/nas8.jpg?w=165&#038;h=300" alt="" width="165" height="300" /></a></span></p>
<p>Recent NAP Releases  [<a href="http://www.nap.edu/new.html">http://www.nap.edu/new.html</a>]</p>
<p>NAP—Environment and Environmental Studies [<a href="http://www.nap.edu/topics.php?topic=285&amp;t=p">http://www.nap.edu/topics.php?topic=285&amp;t=p</a>]</p>
<p>NAP—Energy and Energy Conservation | Policy, Reviews and Evaluations   [<a href="http://www.nap.edu/topics.php?topic=358">http://www.nap.edu/topics.php?topic=358</a>]</p>
<p><em>Other recent NAS/NAE/NAP topics I skimmed and found interesting and at times quite troubling.</em></p>
<ul>
<li>Chemistry in Primetime and Online — Communicating Chemistry in Informal Environments &lt;2011&gt;</li>
<li>Environmental Impacts Of Wind-Energy Projects &lt;2011&gt;</li>
<li>Informing the Future — Critical Issues in Health, Sixth Edition &lt;2011&gt;</li>
<li>Relieving Pain in America — A Blueprint for Transforming Prevention Care Education &amp; Research &lt;2011&gt;</li>
<li>On Being a Scientist — A Guide to Responsible Conduct in Research, Third Edition &lt;2009&gt;</li>
</ul>
<p><a href="http://www.wikipedia.org/">Wikipedia</a><span style="text-decoration:underline;"> for Background Materials</span><em> — </em>Yes I trust Wikipedia, but only if I’ve checkout most of an articles references for bias and accuracy! My Wikipedia checks are no different that my checking websites for whom their publishers represent and what causes they favor.<em></em></p>
<p>U.S. Government Accountability Office [GAO]   [<a href="http://www.gao.gov/">http://www.gao.gov/</a>]<br />
Recent Reports and Studies. The GAO is the non-partisan 90-year old <strong>investigative</strong> arm of congress. <em>In a similar manner, to my learning from NRC/NAP reports, many of the technology reports published by the Government Accountability Office make facilitating, if troublesome reading. NAS committee’s to which I have provided expert knowledge specifically in the nuclear waste area are thorough, relatively unbiased and always accurate in using reference materials.</em></p>
<p><a href="http://www.loc.gov/crsinfo/"><strong>Congressional Research</strong> Service</a> [CRS]</p>
<p>The CRS is known as &#8220;Congress&#8217;s <strong>think tank</strong>&#8221; is the <a href="http://en.wikipedia.org/wiki/Public_policy">public policy</a> research arm of the <a href="http://en.wikipedia.org/wiki/United_States_Congress">United States Congress</a>. As a legislative branch agency within the <a href="http://en.wikipedia.org/wiki/Library_of_Congress">Library of Congress</a>, CRS works exclusively and directly for Members of Congress, their Committees and staff on a confidential, nonpartisan basis. CRS reports are highly regarded as in-depth, accurate, objective, and timely, but as a matter of policy they are not made directly available to members of the public. There have been several attempts to pass legislation requiring all reports to be made available online, most recently in 2003, but none have passed. Instead, the public must request individual reports from their Senators and Representatives in Congress, purchase them from private vendors, or search for them in various web archives of previously released documents.</p>
<p>The CRS is joined by two other congressional support agencies. The <a href="http://en.wikipedia.org/wiki/Congressional_Budget_Office">Congressional Budget Office</a> provides Congress with budget-related information, reports on fiscal, budgetary, and programmatic issues, and analyses of budget policy options, costs, and effects. The <a href="http://en.wikipedia.org/wiki/Government_Accountability_Office">Government Accountability Office</a> assists Congress in reviewing and monitoring the activities of government by conducting independent audits, investigations, and evaluations of federal programs. [<em>Partial Wikipedia Quote</em>]</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><em><span style="text-decoration:underline;">End Notes</span></em>:</p>
<p>Copyright Notice — Product and company names and logos in this review may be registered trademarks of their respective companies.</p>
<p>Disclosure<em> </em>— Some of the articles quoted and listed in this column are copyright protected – their use is both acknowledge and is limited to educationally related purposes, which this column provides. They are likely covered by the <a href="http://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2314&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/11/29/november-29-2011-energy-fuel-efficiency-us-courts-and-sciences-and-balancing-healthcare-costs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif" medium="image">
			<media:title type="html">Gaiea</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas1.jpg" medium="image">
			<media:title type="html">NAS1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas2.jpg" medium="image">
			<media:title type="html">NAS2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas3.jpg?w=300" medium="image">
			<media:title type="html">NAS3</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas4.jpg" medium="image">
			<media:title type="html">NAS4</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas5.jpg" medium="image">
			<media:title type="html">NAS5</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas6.jpg?w=300" medium="image">
			<media:title type="html">NAS6</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas7.jpg" medium="image">
			<media:title type="html">NAS7</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/nas8.jpg?w=165" medium="image">
			<media:title type="html">NAS8</media:title>
		</media:content>
	</item>
		<item>
		<title>November 27, 2011 &#8211; iBank Mac Money Management Software</title>
		<link>http://mhreviews.wordpress.com/2011/11/27/november-27-2011-ibank-mac-money-management-software/</link>
		<comments>http://mhreviews.wordpress.com/2011/11/27/november-27-2011-ibank-mac-money-management-software/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 15:17:00 +0000</pubDate>
		<dc:creator>tedbade</dc:creator>
				<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[Apple financial software]]></category>
		<category><![CDATA[Apple investment software]]></category>
		<category><![CDATA[budget software]]></category>
		<category><![CDATA[personal financial application]]></category>
		<category><![CDATA[Quicken alternative]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2301</guid>
		<description><![CDATA[By Ted Bade,  © Copyright 2011, All Rights Reserved. Product: iBank 4 Company: IGG Software (http://www.iggsoftware.com/) Price: $59.95 USD (single user license) Available at: http://www.iggsoftware.com/ibank/ (Also available through the App store) Required OS: Mac OSX 10.5.7 or higher iBank is a terrific alternative to any version of Quicken. It is robust, has an intuitive easy to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2301&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Ted Bade,  © Copyright 2011, All Rights Reserved.</p>
<p><strong>Product</strong>: iBank 4 <a href="http://mhreviews.files.wordpress.com/2011/11/ibank4.png"><img class="alignright size-full wp-image-2302" title="ibank4" src="http://mhreviews.files.wordpress.com/2011/11/ibank4.png?w=614" alt=""   /></a><br />
<strong>Company</strong>: IGG Software (http://www.iggsoftware.com/)<br />
<strong>Price</strong>: $59.95 USD (single user license)<br />
<strong>Available at</strong>: <a href="http://www.iggsoftware.com/ibank/">http://www.iggsoftware.com/ibank/</a> (Also available through the App store)<br />
<strong>Required OS</strong>: Mac OSX 10.5.7 or higher</p>
<p>iBank is a terrific alternative to any version of Quicken. It is robust, has an intuitive easy to use interface, and offers a lot of useful tools for managing your personal finances. If you are looking for an alternative to the old Mac versions of Quicken and/or find you cannot stomach the pathetic “Quicken Essentials”, you won’t go wrong with iBank.</p>
<p>I will be looking at iBank from the viewpoint of a person who has been using Personal Finance applications for well over ten years. This also means I have many habits and expectations about a financial program (both logical and illogical ones ☺), as well as a LOT of financial history. Also, my data needed to be transferred to iBank manually, not imported from an old Quicken file, because I did try using Quicken Essentials for a time before moving to iBank. There is no way to import QE saved data into iBank. However, iBank will import files from the older versions of Quicken, including Windows versions. The import process brings in your various accounts, transactions, investment account information, and budget categories. It won’t bring in scheduled transactions, reports or budgets.</p>
<h3>Getting Started</h3>
<p>There is one issue to consider with regard to importing from Quicken. iBank doesn’t use the Quicken save or backup file to import, but it imports from an exported QIF file. In my case,<a href="http://mhreviews.files.wordpress.com/2011/11/ibiz-icon-small-copy.jpg"><img class="alignright size-full wp-image-2305" title="iBiz icon small copy" src="http://mhreviews.files.wordpress.com/2011/11/ibiz-icon-small-copy.jpg?w=614" alt=""   /></a> I had already converted to Lion (MacOS X 10.7), and had been using QE for a while, so there was no QIF export available for me. If you don’t export from Quicken before you convert to Lion, you might not have any way to run the old version of Quicken to perform the export, which means that you will have to do the import manually. I expect that the same thing would be true if you were previously a Windows user, and didn’t manage to keep your old machine (perhaps it died, which is the reason you are converting financial applications). I imagine a Window’s user would have one option of running Quicken for Windows in a virtual Machine on the Mac to perform the export file creation.</p>
<p><strong>Author’s Note</strong>: Being a curious kind of guy, I asked iBank’s customer service what my options are. I was pleasantly surprised by the reply. Essentially, their customer service department offered to do the conversion for me. They provided a small script app to grab the data and to create a secure file that could then be emailed to customer service. For QE files, they suggested asking Intuit to do the conversion. So, even if you made the jump, there are options. Great job IGG Software customer support!!</p>
<p>If you have a QIF file to import, the process is pretty nice. iBank analyzes the file you give it, and then asks you to verify the the account types. This is mainly due to the fact that iBank offers more account types than Quicken does. You can choose to change an account type to one of iBank’s more specific choices. iBank then translates the date into a new iBank file. Once it is done, you need to go through your accounts and make sure they are correct. In the case of the file I imported, it has a muddled history going back to early 2001, so the import would probably have required more work then just stating over. This was my fault, since I did a poor job of cleaning up my Quicken files and they had issues. I don’t expect there would be any real issues for people importing with only a few clean years of history, or even ten years of well kept files! Ideally, it would be terrific if you could run iBank side by side with Quicken (or any of the other financial applications it can convert from), to verify account data.</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/11/income-expense-report.jpg"><img class="alignleft size-medium wp-image-2306" title="income-expense report" src="http://mhreviews.files.wordpress.com/2011/11/income-expense-report.jpg?w=287&#038;h=300" alt="" width="287" height="300" /></a> One thing I have learned about financial programs (and it actually applies to any program), is that the people involved with creating it decide on a method for doing whatever it is that the program does. This method may or may not be exactly the method you are familiar with. When I attended elementary/high school, there wasn’t a course covering personal finances. So most of my methods have been monstered together from what I have learned from various sources, friends, books, and financial applications. Consider also, there is an element of anxiety in moving to a new financial application. A simple mistake might mean an important loan payment is forgotten or a checking account is over drawn. Because of this, one needs to pay particular attention to what actually happens when you use a new program. <strong>Don’t assume anything</strong>.</p>
<p>In my case with iBank, years of complacency using one version or another of Quicken left me expecting an application would respond in a particular way. iBank is not a clone of Quicken, and so it follows it’s own set of rules and processes. I say this not to criticize, but point out the way it does business. I want to point out iBank works differently than Quicken, and new users need to consider each action taken while learning the software. Once past this awkward application learning period, people should find that iBank is very intuitive and easy to use.</p>
<p>iBank provides a view of your finances when it initially opens. On the left side there is a column that gives access to various things, such as accounts, websites, and other functions. The right side is a window showing information about the item selected on the left side bar. For instance, if you have selected an account, the register is shown, if you select a web site, the browser function opens to load it, or if you select a report, the report is displayed. The side bar offers a lot of choices, more then will show on the screen, you will have to scroll down to find everything. Accounts occupy the top of the list, which makes sense, since you will spend a lot of time working with them. The side bar offers areas for Accounts, Websites, Reports, and at the bottom a Manage area providing a variety of functions (including syncing with the mobil version of iBank, which I didn’t test). Accounts are organized in order of creation, but the user can drag the icon to any position. I personally like to keep my most active accounts near the top, for easy access.</p>
<p>Transaction registers offer three views. The regular register looking view, a cover flow view, and a reconcile view. I am not totally sure what functionality the cover flow view actually provides. It allows one to slide along through the transactions in the account in a cover flow like method (displaying the icons related to the accounts). It also provides a chart on the bottom showing the value of the account over time. Clicking on the chart brings up the transaction you clicked. The chart lets you visualize the account value over time, so you can see the rise and fall of a checking account from paycheck to paycheck. It also shows the minimum and maximum values in the account. For a credit card, you can easily find the periods of most charging.</p>
<p>One things I really like about iBank is that it can be very visual. For instance, iBank uses icons for various category types to make it easy for you to recognize them in a register. You can use the ones included in iBank or find those of your own to use; the process is as easy as cut and paste. You can also set a color to a category, then the register line for a transaction of that type is tinted with the color. For instance, I use green for grocery transactions. When I look at the register, it is easy to locate all the grocery transactions by finding the green tinted ones. Both of these methods are a big benefit to people who are very visual.</p>
<p>You can choose to have a tool bar near the top of the iBank window,<a href="http://mhreviews.files.wordpress.com/2011/11/investment-summary.jpg"><img class="alignright size-medium wp-image-2307" title="investment summary" src="http://mhreviews.files.wordpress.com/2011/11/investment-summary.jpg?w=300&#038;h=298" alt="" width="300" height="298" /></a> below the menu bar; the default tool bar option has buttons for several common features. The tool bar can be changed to satisfy your way of doing things. For instance, iBank has a calculator function, which can be added to the tool bar if you find it useful. Alternatively, you might not want the tool bar and be content to use the menus.</p>
<p>Finally, the iBank window offers a summary area (Summary Page) showing how much you have and how much you owe, it will also turn into a “Net Worth” bar graph if you click it’s top bar. This summary gives a quick overview of your financial picture. This area covers the lower portion of the side bar, and you can choose to hide it if you would rather see more of that area.</p>
<p>Before you start using iBank, you will need to create (or import) all your accounts. If you are in a position to import from another financial program I highly recommend doing this. Although you should spend some time making sure the translation was correct, you won’t have to spend the time it takes to create each account individually.</p>
<p>One improvement I would like to see with iBank’s manual is a section giving a logical method for people moving accounts in manually. Their manual is written with the view point that all accounts have been created and all you might need to do is create a new account to add to the picture. While the manual explains quite well how to create new accounts, it doesn’t suggest an order to create them in if you start from scratch. I highly recommend that you begin with the checking (or whatever other) account you use to pay the majority of your bills, followed by any others you use for this purpose, then create credit card accounts, loans, and finally investment accounts. The reason for this is simple, if you pay your bills, credit cards, loans, and investments from one or two accounts, it is a good idea to have them created before your download transactions for these other accounts.</p>
<p>iBank easily downloads data from your financial institutions. When you create an account, after naming it, you choose which type of account it is, savings, checking, credit card, and so on. Then iBank downloads the current list of institutions that fit into this category. Hopefully you will find your institution in this list. If not, then you can enter the company’s web site manually or enter all your transactions manually. iBank checks for new financial institutions every time you create a new account, unless you create several of the same type one after another. While this is a safe method of business, it does prove a bit tedious waiting the short time for it to check. I found myself tapping the screen muttering, “Hey buddy, I saw that company in the list yesterday, you don’t have to check again”.</p>
<p>In case your financial institution isn’t in the list iBank downloads, there is an option to select: “Other financial Institution”. If you select this option, you can either provide iBank with the company’s web address (where you can download account information), or choose to enter transactions manually. iBank puts this choice, alphabetically, within the list of the several hundred other institutions that are downloaded. Although it is selected by default, one might forget this or choose a different company option, then forget what it was called. It would be a lot nice if this option had a permanent space of it’s own, not part of the list, for easy location and selection when needed.  (<strong>Note</strong>: a recent upgrade to iBank now keeps the “Other” choice in the list even when you search for the name of your financial institution, which is almost as good as having a dedicated Other button!)</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/11/main_window.jpg"><img class="alignleft size-medium wp-image-2309" title="main_window" src="http://mhreviews.files.wordpress.com/2011/11/main_window.jpg?w=300&#038;h=205" alt="" width="300" height="205" /></a> One <strong>VERY</strong> cool feature iBank offers is an in program web browser. While some companies allow iBank to download data directly, many others require that you log into your account and download a file. While it isn’t a big deal to run Safari and get the files, the neat thing about iBank’s browser is that when the file is downloaded, iBank takes it in. You don’t have to save it, then open the saved file with iBank. I ran into one odd issue, more with my bank then with iBank. One of my banks requires Safari 4 on the Mac, which means that neither my Lion hyped Mac nor iBank can get transactions from this bank! I did manage to get the transactions using an old version of FireFox. While I can almost justify not having tested Safari 5 yet, I was aghast at needing to use Firefox 3.x!</p>
<p>Logging into the bank with iBank is identical to what you would do with Safari. You will still need your passwords and user name and any other pieces of information the bank might require. There is one issue with iBank’s browser. One financial institution required that a second browser window be opened to initiate the download. iBank’s browser cannot open a second window. In this case, you need to use a regular browser to get the data. Overall, it is very convenient having a browser built into iBank.</p>
<p>Day to day usage of iBank is simple. iBank keeps track of how you do transactions and uses auto fill to reduce your work. For instance, I download my credit card transactions. iBank opens a two pane window, the top showing the newest downloaded, the bottom showing the current register for that account. You look at the transactions and choose to accept them or not, when done you click to bring in all those you accepted.</p>
<p>As you begin using iBank, you teach it which categories various transactions refer to. iBank allows you to create a “rule”, that says something like, all payments made to a specific grocery store go into the category of “Groceries”. Now when iBank sees a transaction with that grocery store, it fills in the category for you. However, some stores have multiple purposes. You can choose to either not create a rule, which means you enter a category every time you download a transaction, or you create a rule, then change the category when the need arises. One issue with not creating a rule is that iBank asks to create a  rule every time a transaction from this company shows up, until a rule is created. Ultimately, this autofill feature saves a lot of your time.</p>
<p>I like to verify that a credit card transaction matches the receipt that I have. There are a variety of reasons for doing this. iBank doesn’t provide a check box or space to indicate that a receipt was verified. Sometimes I need to make sure that one or another transaction was actually made. I have been hit twice by transactions not made by the household showing up on a credit card. I like to take action quickly!</p>
<p>iBank comes with a lot of pre-made categories. As you type a name in the category field, iBank provides a list of categories that fit the letters you type, the list gets smaller as the word completes. While this is a real time saver once you know all the correct names, iBank doesn’t search for the string anywhere in the name, only from the beginning. This process could be made a lot easier if they had used a Keyword search, rather then a Browse search method. So there is a learning curve here. If you choose to use their method, you need to learn it.</p>
<p>iBank organizes categories in groups, then by sub-categories. <a href="http://mhreviews.files.wordpress.com/2011/11/net-worth-report.jpg"><img class="alignright size-medium wp-image-2310" title="net worth report" src="http://mhreviews.files.wordpress.com/2011/11/net-worth-report.jpg?w=300&#038;h=265" alt="" width="300" height="265" /></a>There is a group called “Utilities”, with sub-categories such as Utilities:Cable, Utilities:Cell Phone, and Utilities:Electric (notice the use of the colon to designate the sub-category). I download a transaction that shows a payment to my cell phone company. If I type “Cell phone” into the category field, iBank finds nothing, since iBank lists this as “Utilities:Cell Phone”. You need to understand their syntax/structure to find the correct category. This is only an issue the first time the transaction comes up. Once you create a rule, iBank fills it in, so you don’t have to type anything unless you need to change the category. It also gets easier as you become comfortable with iBank’s category naming methods. When you need to find how iBank names a category, you can use the menu option to “Change Transaction Type”. Clicking on this menu item opens a list of all the category names, and you can visually search the list to find the appropriate one.</p>
<p>If you enter a category that iBank doesn’t already have, it opens a window to allow you to create a new category. You need to enter various bits of information about the category. iBank’s category organization structure is efficient and I recommend staying with their format. The need to locate a proper category occurs early on. Once you set up a rule or become familiar with the scheme, it becomes easy, however you can easily create all your own categories in a way that makes the most sense to you. This demonstrates another reason why iBank is a great choice for tracking your finances: there are so many ways to modify the application to get it to suit your personal methods.</p>
<p>Some transactions move money from one account to another. When you download transactions, iBank compares the downloaded transactions to those already in the register. If it finds one that already exists, it automatically un-checks the accept check box, since the transaction already exists in both registers. If you did import it, there would be a duplicate transaction. When importing transactions, you need to look over the list and make sure that only the transactions you want to import have the check box checked. Had I known this when I first started downloading transactions, I could have saved myself a bit of time. Luckily, if you do duplicate a transaction, you need only delete the duplicate. The issue is realizing that it was done, which is a good reason for reconciling an account on a regular basis.</p>
<p>I found a few inconsistencies with how iBank works with respect to transactions. The default transaction type often doesn’t make sense for the account type. For instance, when I download a new credit card transaction the type defaults to “Withdrawal” not “Charge” as I expect. For a new checking transaction that I enter manually as I write a check, it defaults to “POS”, not new check number. However, if I change the type to Check, it automatically chooses the next check number in my sequence. Note that if you create a rule with a particular store, the type of transaction is included in the rule, so the next time you download a transaction from that company, it is correct.</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/11/savings-forecast.jpg"><img class="alignleft size-medium wp-image-2311" title="savings forecast" src="http://mhreviews.files.wordpress.com/2011/11/savings-forecast.jpg?w=300&#038;h=226" alt="" width="300" height="226" /></a> iBank does a very good job of tracking investments. Overall, the process is very simple and intuitive, although there are a few things to remember. If you set up a new investment account to hold shares of various stocks, you need to enter the number of shares you own manually. The number of shares wasn’t transferred from the account I own. Once you enter the total number of shares, iBank will track the share value, provide a chart of the value over time, and even keep track of the cost basis of the stocks or mutual funds.</p>
<p>When you manually bring an existing account into iBank, there are a few things to be aware of. First of all, any past account history is not brought into iBank. While some companies will provide cost basis for an account for iBank, many do not. You can add this information manually. iBank shows only the cash available in an investment account in the register, so if your account has only shares of stocks or funds, it will show as a zero value. The actual value of the account, based on share values as of the current quote download, shows up in the accounts side bar. The value is kept up to date by downloading stock quotes (which includes mutual fund quotes).</p>
<p>Reconciling an account with iBank is easy. You choose the start and end dates and balances, then choose to either reconcile manually or automatically. In the auto mode, iBank accepts all the downloaded transactions between the two dates you gave it, marks then as reconciled, then you verify if this list matches your statement. Manually, it displays the entire register of unreconciled transactions, and you need to click on each transaction to indicate it was on the statement. Once you have a good reconcile, you click a lock icon to lock the transactions as reconciled. If you use the auto mode, you see only those transactions within the dates of the statement, but you need to create a manual method to record that you verified each transaction on the statement. I ran into a small gotcha when I forgot to use parenthesis around the negative balance of a credit card statement. iBank considers any number inside a parenthesis as negative and without a parenthesis as a positive value. When you enter a credit card, you need to be sure the negative balances are within parenthesis, or you get some unusual results. ☺</p>
<p>During my tests I found that for accounts for which you download transactions, the auto method almost always creates a register that looks exactly like the statement from the financial institution. This is a real time saver, as all you need to do is enter the numbers, make sure the difference is zero, and you are done! If there are issues, you then need to figure things out, but this method is significantly faster then the manual method of adding transactions.</p>
<p>Once you get all your accounts into iBank, there are two other things you might want to do. Track where your money goes and how much you have, and create a budget to help you better manage where your money goes and how much you save. iBank offers the tools to help with these items as well.</p>
<p>While recording transactions is a very important part of any financial application, it isn’t everything. Some people like to look at where their money goes, how much their savings is worth, and to keep track of tax related transactions. iBank offers some built in reports as well as a set of very useful tools to create reports of your own. The reports themselves are interactive, so you can easily dig deeper into them if necessary (or if you are curious). The best way to explain this is to consider one of iBank’s included reports. The report called “Last month to date expenses” is an income and expense report. Click on the report icon in iBank’s source list (the left side bar) to run that report. The program’s main window changes to show the report, and there are two pie charts on the top: one for expenses and one for income. Below the pie chart is a key, showing the names associated with the colors of the pie chart. Below the pie charts is a list showing the categories that make up the charts.</p>
<p>Both the pie charts and the list of text data are interactive. When you click on a piece of the pie chart or an area in the list, iBank generates a sub report showing the accounts and/or transactions that make up this section. For instance, if the category is $500 on groceries, you can click on this then see a list of the different grocery transactions which make up the total. If you are inclined to keep precise records of your finances, this is a good way to make sure you didn’t accidentally include a transaction that doesn’t belong. It is also a good way to see where the money goes. You might find that most goes to a particular store. People who might use iBank to take control of their “Fun”spending, as they will easily see where the money goes if they keep good records!</p>
<p>If you find reports useful, you will want to create your own reports. iBank makes the process relatively easy, yet offers the tools to do some very complex things. iBank lets you create reports by walking through a series of screens, each part setting up a different aspect of the report. You start with a report type, then specify specifically what items will be included and the dates to be covered. For example, one report I always set up is a list of charitable contributions I have made in the past calendar year. To create this report I choose Category Detail, include all accounts, but limit the category to charity contributions, set the date to last calendar year, and finally give it a name. Then, when I am working on my income tax, I can run this report, which will provide me with a nice list to print and include in my tax records.</p>
<p>When creating a report, you can get pretty complex using iBank’s “Smart Rules”, which essentially is a group of nested “and” and “or” statements that limit or extend the included items. I have to admit I am not really a report kind of guy, so my use of reporting is very limited. However, it is easy to see that there is a lot of power in iBank’s report wizard to do some very specific things.</p>
<p>Finally, you can easily create a budget for the next year using iBank’s budget tool. Just like the report tool, it is very easy to do. You predict your income first, then predict how much you will spend on various items in the budget. Obviously, any budget is only as good as the validity of the data you use. Often it is easier to create a home budget after you have collected a year or more of data on where your money goes (however, you might need to control the budget before collecting this data ☺). Also consider that people prone to spend too much might well served by creating a budget on specific “fun” or entertainment items.</p>
<p>Once the budget is created, iBank offers two ways of looking at the information. First is the traditional view, which is a window that lists your incomes (on the top of the screen) and expenses (on the lower part of the screen), showing the budget, actual to date, and  amount remaining (over). Each line is followed by a bar graphically showing how much of the budget is remaining (or how far past the value you are). The bar is green for under and red for over and yellow for getting close to the limit. Using this chart, you can easily monitor where you are. The bar graphs give a quick visual review of items. The middle of the screen shows a “remaining cash to spend” as a total, along with a bar graph, and a summary of total incomes/expenses, budgeted versus actual. This is a very useful to easily monitor and keep an eye on the budget.</p>
<p>As with many other screens in iBank, this one is interactive. If you click on an item, you go into an edit mode, allowing you to modify the budget item (come on, no cheating here, this is really important!!).  I do disagree slightly with their handling of incomes. People are paid on a weekly, bi-weekly, or monthly basis. This means that for income, you will be under budget until some time near your last pay period, giving a negative impression for a normal sequence of events. However, budgets are more about watching where the money goes rather then where it comes from. Unless, of course, you are in a field where you have to create income and need a little push to get you going.</p>
<p>iBank offers another method of monitoring budgets, called the envelope method. This is a very practical method for people who don’t use a program iBank does a great job implementing this process. Using this method you have an envelope representing an amount of cash to spend on different budget items. There is one for food, one for housing, one for keeping the car going and so on. When you need to pay for something, you take money from the envelope for that item. You can also move additional money into an envelope if necessary. The idea behind this method, is that you can see how the envelope empties as you spend money. It is a very visual method and has been used by a lot of people to help them take control of their finances.</p>
<p>iBank shows a screen of envelopes; nice green bills stick out the top of an envelope and the envelope shows a black positive number when it is positive. For over budget items, the envelope is closed, the number is red and in parenthesis. The lay out is similar to the the first method with incomes on the top, expenses on the bottom and the middle with some summary information. With this method, it doesn’t show you where you are relative to the period, but the income area shows how much unspent money you have, while the expense area shows how much of each envelope’s total you have spent already. The summary area show how much over or under budget you are and offers a table of days left to the period (usually a month), how much is available (positive or negative), and how much reserve cash you have.</p>
<p>The vendor is very active in updating and improving this program. They host a very active forum where people can ask questions and get answers from users and staff. Their tech support was quick and very helpful. They appear to listen to the comments made by users, and act to modify the program when it makes sense. There were a couple of things that changed while I as working on this review, making the program even better. This commitment to customer service is another great aspect of iBank.</p>
<h3>Recommendation</h3>
<p>I highly recommend this program. Overall, iBank is a terrific program. Having used it for a while, I find that it is actually more comprehensive and logical than my previous version of Quicken. iBank offers tools for importing your data from other programs, and gives you a wealth of tools for controlling your personal finances. I found iBank to be very easy to use and relatively easy to covert to. The vendor even offer a free download with a 30 day trial period, so how can you go wrong with that?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2301&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/11/27/november-27-2011-ibank-mac-money-management-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f79b3899385e8e2f9b8733ef8bc51ad7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tedbade</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/ibank4.png" medium="image">
			<media:title type="html">ibank4</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/ibiz-icon-small-copy.jpg" medium="image">
			<media:title type="html">iBiz icon small copy</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/income-expense-report.jpg?w=287" medium="image">
			<media:title type="html">income-expense report</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/investment-summary.jpg?w=300" medium="image">
			<media:title type="html">investment summary</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/main_window.jpg?w=300" medium="image">
			<media:title type="html">main_window</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/net-worth-report.jpg?w=300" medium="image">
			<media:title type="html">net worth report</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/savings-forecast.jpg?w=300" medium="image">
			<media:title type="html">savings forecast</media:title>
		</media:content>
	</item>
		<item>
		<title>November 20, 2011 &#8211; Wolfram Tides Calculator iPhone App Review</title>
		<link>http://mhreviews.wordpress.com/2011/11/20/november-20-2011-wolfram-tides-calculator-iphone-app-review/</link>
		<comments>http://mhreviews.wordpress.com/2011/11/20/november-20-2011-wolfram-tides-calculator-iphone-app-review/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 19:26:54 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[sunburn calculator]]></category>
		<category><![CDATA[sunrise sunset calculator]]></category>
		<category><![CDATA[tide calculator]]></category>
		<category><![CDATA[weather information]]></category>
		<category><![CDATA[Wolfram Reference applications]]></category>
		<category><![CDATA[Wolfram Research]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2291</guid>
		<description><![CDATA[By Mike Hubbartt, © Copyright 2011, All Rights Reserved. Software: Tides Calculator Vendor: Wolfram Research (www.wolfram.com) Price: $.99 Wolfram&#8217;s Mathematica (now version 8.0.4) is a mature product used by many professionals and academics, and the past couple of years Wolfram has started getting developing mobile applications. I&#8217;ve already reviewed their Astronomy and Chemistry course assistant apps, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2291&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Mike Hubbartt, © Copyright 2011, All Rights Reserved.</p>
<p>Software: Tides Calculator <a href="http://mhreviews.files.wordpress.com/2011/11/ref_iphone_screenshots_tides_1.png"><img class="alignright size-medium wp-image-2292" title="Ref_iPhone_Screenshots_Tides_1" src="http://mhreviews.files.wordpress.com/2011/11/ref_iphone_screenshots_tides_1.png?w=207&#038;h=300" alt="" width="207" height="300" /></a><br />
Vendor: Wolfram Research (www.wolfram.com)<br />
Price: $.99</p>
<p>Wolfram&#8217;s Mathematica (now version 8.0.4) is a mature product used by many professionals and academics, and the past couple of years Wolfram has started getting developing mobile applications. I&#8217;ve already reviewed their <a href="http://mhreviews.wordpress.com/2011/05/21/wolfram-astronomy-course-assistant-may-21-2011/">Astronomy</a> and <a href="http://mhreviews.wordpress.com/2011/07/27/wolfram-general-chemistry-course-assistant-july-26-2011/">Chemistry</a> course assistant apps, which are excellent and inexpensive products for students. This review is on Wolfram&#8217;s Tides Calculator, one of their new Reference apps for the iPhone/Touch and iPad.</p>
<p>The tides are relevant to many people around the world that live on or near the coast, or that make a living on the sea. Wolfram provides a low cost ($.99) app that is easy to transport and provides good information about the tides, including Current Tide, High Tide, Low Tide, Average Tide, Tide Forecast/History, and Extras.</p>
<h3>Getting Started</h3>
<p>I downloaded the Tides app from the iTunes store and it was a typically easy install onto my iPod Touch. I selected the first option (Current Tide), and and the default location was set to Current Location (handy of you are on the go and want the tide info for your current site. As tides are not as much of an issue for us in Minneapolis, MN, I entered Maine for the Location and pressed the Compute button. In a couple of seconds, the app displayed a chart for the tides covering 24 hours, with the time and height of high and low tides for Maine. As I entered the search in the afternoon, the returned results covered the current and next days which is better than forcing one to go to a different path to get the tide info for the next day. One thing to note: this data was computed based on historical data and did not include weather-influenced factors like hurricanes, so take this into consideration if you need current information and bad weather impacts your location.</p>
<p>There is other useful data on the same screen. The tide reporting station for Maine is at Bangor, at the Penobscot River, and the coordinates of the station are included (good for using with Google Earth), along with the relative position of the station in relation to the state of Maine. Another bit of useful information on the screen is sunrise, sunset, moonrise, and moonset. Not all of the screen information is visible at the same time, but it is easy to move around or zoom out as needed.</p>
<p>Next I checked out the High Tide and Low Tide information. I again used Bangor Maine as the location and essentially saw the same information displayed as I saw at the Current Tide screen, although the graphs highlighted the high and low tides respectably. I used Bangor again for the Average Tide option, and there were a few extra bits of information (range of tide, average high tide, average of high and low tides, and average low tide), but had mostly the same information as was shown at the Current Tide screen.</p>
<p>The next option I tested was Tide Forecast/History. Using my favorite (Bangor, Maine) location, I retrieved the tides forecast for 11/24/2011 (Thanksgiving Day in the US) and saw a nice 24 hr graph of the expected tides, with times/heights of high/low tides along with sun/moon rise/set times. Good data for a forecast. Next I left the location alone and changed the date to 11/24/2010 and the app downloaded the historical tide data for last year &#8211; also, good data.</p>
<p>Finally I checked out the Extras options and they were: Sunrise and Sunset, Sun Exposure, UV Forecast, Weather and Forecast, Moon Phase, and Properties of Oceans. For Sunrise and Sunset, I retrieved the information for my current location (Minneapolis, MN) for tomorrow and saw the data, plus the duration of daylight (good to know as we edge closer to the shortest day of the year), the altitude and azimuth for my location, a nice graph of the sun path for tomorrow, some cool (to amateur astronomers) star properties, an image of the current Earth/Moon/Sun configuration (science teachers, paying attention?), and the 10 closest stars (including Wolf 359, mentioned once or twice in Star Trek: The Next Generation). Excellent information for educators and astronomers.</p>
<p>Another Extras option is Sun Exposure, where you can enter your location, date, and skin type to compute the most appropriate sun tan lotion needed to protect your body. Nice. With my skin type, I will need an SPF 15 if I head outdoors tomorrow. I like the UV Forecast option too &#8211; it gave the current UV conditions, along with a map of most of the country that showed this data, along with the expected time to get a sunburn (based on skin type and exposure), and the recommended SPF factor for sun tan lotion.</p>
<p>The next Extras item I checked out was the weather forecast. I regularly check weather when I fly, and I&#8217;m just as interested in the weather when driving in Minnesota in January and February, so this is one of my favorite extras.The forecast for the current day and next day is useful, and the graph for the temperatures for the upcoming week is also good to know (especially as the highs and lows for each day is also included). I also find the precipitation rate and wind speed forecast graphs to be very useful and both enhance this aspect of the app. I should add you can get weather forecasts for other locations than current location, so this could be a nice assistant when planning a vacation.</p>
<p>The next option in Extras is Moon Phase, which provides good info if you&#8217;re wanting to look at the Moon. The last Extras option is Properties of Oceans and it provides Ocean Information, Ocean Properties, Speed of Sound in the Ocean, and Pressure Under Water data. Good information for planning a dive, don&#8217;t you think?</p>
<h3>Likes</h3>
<ul>
<li>The price is excellent, and the UI is simple yet functional.</li>
<li>This is a good tool to use to help plan a vacation.</li>
<li>The app does what good apps do &#8211; it retrieves information over the internet (from Wolfram servers), reducing the footprint of the downloaded/installed app.</li>
<li>I like how the locations default to the current location (great for lazy mobile device owners like myself).</li>
<li>The amount of information in Extras is excellent and really expands the app. Weather is my absolute favorite option in this app.</li>
</ul>
<h3>Dislikes</h3>
<ul>
<li>Didn&#8217;t like seeing the same information in Current Tides duplicated in the High, Low, and Average Tide screens. I&#8217;d rather have buttons at the Current Tide screen that would provide the additional information. I think it might have been better to release a Weather App, which includes Tide information, that a Tides App with weather information.</li>
</ul>
<h3>Conclusion</h3>
<p>The information is useful to a lot of people, not just sailors. As a fiction writer, I may need to know past or future tides that affect the characters in some of my stories, and this inexpensive app would be an excellent resource. While I know many people (including me) prefer free apps, it is hard to argue with the low price for this app.</p>
<h3>Recommendation</h3>
<p>Buy it. Skip the burger on the McDonald&#8217;s value menu and buy this app. It is interesting information, and good, inexpensive apps need to be purchased to encourage vendors to continue to provide quality apps at a low price. Wolfram currently has another 8 Reference Apps available, and the next one I&#8217;ll review is their Fractals App.</p>
<p>Please let our readers know if you&#8217;ve tried this app and your impression of the software. Sharing experiences on expensive apps is important, but so is telling others about good, low cost applications.</p>
<p>Be well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2291&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/11/20/november-20-2011-wolfram-tides-calculator-iphone-app-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/ref_iphone_screenshots_tides_1.png?w=207" medium="image">
			<media:title type="html">Ref_iPhone_Screenshots_Tides_1</media:title>
		</media:content>
	</item>
		<item>
		<title>The Thorium Fuel Cycle &#8211; Technology Advantages</title>
		<link>http://mhreviews.wordpress.com/2011/11/19/the-thorium-fuel-cycle-technology-advantages/</link>
		<comments>http://mhreviews.wordpress.com/2011/11/19/the-thorium-fuel-cycle-technology-advantages/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 01:31:41 +0000</pubDate>
		<dc:creator>harrybabad</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Environmental Posts]]></category>
		<category><![CDATA[Rants and Raves]]></category>
		<category><![CDATA[The Greening Continues, by Harry {doc} Babad]]></category>
		<category><![CDATA[Advanced Fuel Cycle for the Future]]></category>
		<category><![CDATA[Advanced Fuel Nuclear Cycles]]></category>
		<category><![CDATA[Battery Nuclear Reactors]]></category>
		<category><![CDATA[Factory Built Portable Reactors]]></category>
		<category><![CDATA[Generation II-IV-V reactors]]></category>
		<category><![CDATA[HLW Waste Minimization]]></category>
		<category><![CDATA[Lowering Nuclear Energy Costs]]></category>
		<category><![CDATA[Non-Proliferation]]></category>
		<category><![CDATA[Nuclear India Leads the Way]]></category>
		<category><![CDATA[Passive Reactor Safety Designs]]></category>
		<category><![CDATA[Thorium Fuel Cycle]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2284</guid>
		<description><![CDATA[By Harry {doc} Babad, © Copyright 2011, All Rights Reserved.  Revision 2 (corrected 1/2/2012) Introduction Over the years there has been On-N-Off again interest in using thorium rather then uranium to fuel our energy needs. The interest came in part because of the greater availability and more widely distributed quantities of thorium in the earths crust. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2284&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Harry {doc} Babad, © Copyright 2011, All Rights Reserved.  <a href="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif"><img class="alignright  wp-image-151" title="Gaiea" src="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif?w=134&#038;h=110" alt="" width="134" height="110" /></a>Revision 2 (corrected 1/2/2012)</p>
<h3>Introduction</h3>
<p>Over the years there has been On-N-Off again interest in using thorium rather then uranium to fuel our energy needs. The interest came in part because of the greater availability and more widely distributed quantities of thorium in the earths crust. In addition the a thorium based fuel cycle seem to be significantly, despite nay-sayers, more resistant to diversion to weapons production (proliferation.) Recent studies, both at design phase and pilot plant size demonstrations have demonstrated that in an appropriate rector, the thorium based fuel cycle can both grow its own fuel, and burn up uranium fuel cycle based spent fuel treated as waste.</p>
<p>There are also detail assessments of the costs of such alternative technology, which I’ve ignored in this article. Why? For the most part in my studies, all such cost studies overestimate the end costs. This is in part due to the use of pessimistic values of input data and the use of conservative modeling assumptions.</p>
<div id="attachment_2349" class="wp-caption alignleft" style="width: 430px"><a href="http://mhreviews.files.wordpress.com/2011/11/thorium11.jpg"><img class="size-full wp-image-2349 " style="border:4px;margin-top:2px;margin-bottom:2px;" title="Thorium1" src="http://mhreviews.files.wordpress.com/2011/11/thorium11.jpg?w=614" alt=""   /></a><p class="wp-caption-text">Figure 1. The (simplified) Thorium Fuel Cycle</p></div>
<p>The discussions that follow are encapsulated gleanings from the main articles I reference, all published in the last several years. In addition, I skimmed my collection 60+ document collections on the thorium fuel cycle reference that, go back to 2005.</p>
<p>I attempted, within the time I had available, to determine whether any of the older ‘paradigm’ basic assumptions had been <span style="text-decoration:underline;">wrong</span> in their conceptualization of thorium use for energy production. I found none, however many of the earlier documents differed by their use of then less accurate state-of-the art models. Such models continuously evolve, get challenged and improve  to get more accurate. Technologically, we both get smarter mathematically and computing power grows in accord to Moore’s Law.</p>
<p>In parallel to computational development, more realistic definition of model inputs and available experimental data based on the physics, and chemistry of elements of the thorium fuel cycle have occurred.</p>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3></h3>
<h3>The Basic Historical Nuclear Energy Facts as I Know Them</h3>
<p>Nuclear energy worldwide is based on a Uranium Fuel cycle.</p>
<p>The non-Thorium elements in this article can be either researched in Wikipedia or just googled. They are no a part of my normal reference practices which tend to focus heavily on the main topics under discussion in these blogs. <em>I do suggest to stick with engineering and science oriented sites or those of the much larger international site that under obsessive peer review by anti-nuclear types. It is better to check out facts than to fight the belief battle with those who have received guidance from small voices in their heads or they’re under technology educated neighbors or media fear mongers.</em></p>
<p>Uranium fuel use for electrical energy generation is a legacy of US and German weapons development during WW II. At that time the US goal was to beat Nazi German to the super weapon punch. The allies won in Europe against Adolf Hitler and the Nazis by convention means including carpet-bombing of bother German cities, factories and infrastructure.</p>
<p>However to win the parallel war with Japan, our leaders decided to use these newly developed atomic bombs against Hiroshima an Nagasaki. This is not the place to deal with this history — its issues, geopolitical and moral. There are library full of such analysis. I include this background to give our less history minded readers a sense of the past.</p>
<p>The use of nuclear science and engineering newly discover during the US’s weapons program evolved rapidly. This was a result of initially, of general then President Eisenhower’s, Atoms for Peace program. It was paralleled or closely followed by a shared US and UN sponsored program to support the growth of nuclear energy for electricity generation with the nations of the world. There was at the time a hope for low cost, perhaps not needing to be metered, electricity.</p>
<p>The lead agency for doing so internationally is the International Atomic Energy Agency [IAEA.]</p>
<p>Again, this is beyond the scope of this article, this did not happen. As a result of a combination of accidents, some deadly, some just scary and a growing sense of nucleophobia, especially in the United States and more recently in Germany, nuclear energy became a dirty word. France, China, India do not think so. Apparently neither do Brazil, Russia and Saudi Arabia and it’s neighbors.</p>
<p>For them electricity from highly regulated and proven ‘catastrophe’ safe, nuclear energy remains a reasonable alternative to their options to deal with population growth, middle class aspirations for standard of living related energy shortages, and with energy security.</p>
<p>Even, when the sound and fury and fear factors die down, Japan will have trouble killing off its nuclear program. On the other hand heads should roll for their intuitional and corporative neglect. While the rest of the world made progress in understanding less frequent accident risks such as natural forces (tornedos – tsunamis – earthquakes) the Japanese corporations in bed with their regulators had their heads in the sand. It’s a time honored tradition — They have shamed the nation; perhaps Seppuku would be honorable.<em></em></p>
<h3 style="text-align:left;">Thorium Fuel Cycle Pro Arguments</h3>
<table width="678" border="0" cellspacing="3" cellpadding="3" align="center">
<tbody>
<tr>
<td valign="top" width="100">
<p><div id="attachment_2350" class="wp-caption alignleft" style="width: 360px"><a href="http://mhreviews.files.wordpress.com/2011/11/thorium2.png"><img class="size-full wp-image-2350 " title="Thorium2" src="http://mhreviews.files.wordpress.com/2011/11/thorium2.png?w=614" alt=""   /></a><p class="wp-caption-text">Figure 2 - The Thorium Decay Chain</p></div></td>
<td valign="top" width="450">Enough said as background. Despite problems and issues that temporarily shut down nuclear energy programs and projects, almost all the nations of the world are seeking, if not publicly, to make nuclear electricity usually from uranium and a bit from thorium. In that effort, the Thorium Fuel cycle can perhaps play a key longer term role if I understand that ‘energy’ system.It appear to have been well documented, if not yet fully proven to the naysayer’s or for that matter to regulators around the world,Thorium Fuel Cycle is:</p>
<ul>
<li>Safer</li>
<li>Cheaper</li>
<li>Proliferation Proof,</li>
<li>Creates Minimal high-level Waste</li>
<li>Eases recycling existing uranium spent fuel, and of course</li>
<li>Aiding the effort to become self reliant in Energy for their industry and transpiration needs.</li>
</ul>
<p>One could now add:</p>
<ul>
<li>Minimizing Greenhouse Gas production</li>
<li>Assuring low cost means of purifying sea or recycled and brackish or polluted water for drinking and agricultural purposes.</li>
<li>Lowering Transportation and its associated pollution costs</li>
</ul>
<p>All of these uses have high-energy demands, usually in the form of inexpensive, reliable, safe electricity</td>
</tr>
</tbody>
</table>
<p style="text-align:left;">For balance, most of the cons of using a Thorium Fuel Cycle have been specifically leveled the Liquid-fluoride thorium reactor (LFTR) or the to early for it’s time (funding) Pebble Bed reactors.</p>
<p>Therefore I cover both positive and negative aspects of these specific solutions to using a thorium-based thorium, in the section below. Had Pebble Bed not happened in parallel to our recent economic meltdown, it might also have been an alterative.</p>
<p><span style="text-decoration:underline;"><br />
</span></p>
<h3>Future Potential Path(s) Forward</h3>
<p><span style="text-decoration:underline;">Overview</span></p>
<ul>
<li>Focus on spent fuel recycling by proven available chemical processing to recover uranium/plutonium for reuse, while minimizing waste and proliferation risks.</li>
<li>Progress with Advanced Reactor Design that initially creates intrinsically safe and ultimately inherently safe nuclear energy generation facilities.</li>
<li>Make significant International Progress with controlling the various aspects of the fuel cycle (mining though either waste disposal or reuse, to minimize costs to present and future generation, and of course maximize safety.</li>
<li>Expedite designing, testing and deploying alternate fuel cycles that avoid the problems caused by our use of uranium or uranium-plutonium fuel  [MOX] to generate electricity.</li>
</ul>
<p>That’s where Thorium comes into play. In the section that follows I share the pros and cost of developing and ultimately relying on a Thorium based electrical generation cycle for our electrical needs.</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/11/table1.jpg"><img class="aligncenter  wp-image-2362" title="table1" src="http://mhreviews.files.wordpress.com/2011/11/table1.jpg?w=476&#038;h=199" alt="" width="476" height="199" /></a>The information below, shared at a summary level, described the myriads of pros &amp; cons in slowly switching to a thorium based fuel cycle. These of course have been heavily discussed in both the scientific-engineering literature including the Internet, and on pro-and-con blogs on the issue. Of course adoption, all thing being equal, will likely happened faster in India, and China, … than in the US.</p>
<p>Unfortunately for clean energy advances which include energy independence and closed cycle nuclear power, since we seem to be a ‘fourth world’ (<em>Doc’s New Label</em>) nation with respect to tackling major global problems such as energy independence, climate change, and low-cost abundant safe energy to boot strap our economy and stamp out poverty.</p>
<p>Low cost sustainable energy will play an important role in economic development, especially approaching 2050 or after. India and China are planning very ambitious programs of nuclear power development. Both countries are planning rapid deployment of significant numbers of traditional Light Water and Heavy Water power reactors, while projecting the further development both Fast Liquid Metal Reactors [FLMR]] and Thorium cycle breeder reactors. (Barton I)</p>
<p>More below about thorium based aspects of these reactors types.</p>
<h4><a href="http://mhreviews.files.wordpress.com/2011/11/thorium3.png"><img class=" wp-image-2351" style="margin:8px;" title="Thorium3" src="http://mhreviews.files.wordpress.com/2011/11/thorium3.png?w=580&#038;h=524" alt="" width="580" height="524" /></a></h4>
<h4></h4>
<h4></h4>
<p>&nbsp;</p>
<h4>Liquid-fluoride thorium reactor (LFTR) Pros)</h4>
<ul>
<li>From the nuclear physics standpoint, they are potentially, passively safe,</li>
<li>Past and present designs, and demonstration plants show that they are mechanically simple</li>
<li>These reactor types can be quite compact in size allowing them to used in the manner projected for other <span style="text-decoration:underline;">modular</span> nuclear reactors or small stand alone factory built rechargeable battery style nuclear reactors/power generator systems.</li>
<li>They can in <em>principal</em> be deployed virtually anywhere and protected more ealy han large reactor facilities.</li>
<li>In preparing to build LFTRs we will recover valuable medical radioisotopes that could provide early financial return.</li>
<li>Operating LFTRs will generate electricity, desalinated water, and generate valuable radioisotopes for NASA and the medical sector where ever it is needed, requiring minimal expensive complex grid systems.</li>
<li>The possibility of utilizing a very abundant resource which has hitherto been of so little interest that its abundance has never been quantified properly seems worth investigating fully.</li>
<li>The production of power that creates fewer long-lived transuranic elements in the waste.</li>
<li>They, based on their nuclear physics, produce significantly reduced radioactive wastes.</li>
<li>Although I could not document this statement, I believe (yep the belief word) that the amount of radiation spread if battle hardened reactor is hit, would be about the same magnitude of the spent uranium ammunition were spreading now. If a war situation used nuclear weapons – shells – missiles or bombs…all bets are off. You are dead, end the environment doesn’t master. Gaia will recover in a millennia or two.</li>
</ul>
<h4>LFTR Cons</h4>
<ul>
<li>At the current state of knowledge, they have a high cost for fuel fabrication [e.g., due to the presence of 233-Uranium]</li>
<li>There are similar problems in recycling thorium itself due to highly radioactive Th-228 (an alpha emitter with two-year half life) is present.</li>
<li>There is some concern over weapons proliferation risk of U-233 (if it could be separated on its own), although many designs such as the Russia’s Radkowsky Thorium Reactor addresses this concern. There appear to be safe-cost effective solution to this issue.</li>
<li>The technical problems (not yet satisfactorily solved) in reprocessing solid fuels. However, with some designs, in particular the molten salt reactor (MSR), these problems are likely to largely disappear.</li>
</ul>
<p>Much development work is still required before the thorium fuel cycle can be commercialized This is being done in India and China, The effort required seems unlikely while (or where) abundant uranium is available. In this respect, recent international moves to bring India into the ambit of international trade might or may not result in the country ceasing to persist with the thorium cycle, as it now has ready access to traded uranium and conventional reactor designs</p>
<p>Nevertheless despite the negative aspects that would limit, universally, switching to a thorium fuel cycle, the thorium fuel cycle, with its potential for breeding fuel without the need for fast neutron reactors, holds considerable potential in the long-term. It is a significant factor in the long-term sustainability of nuclear energy.</p>
<h3>Gen IV reactor History and Safety Features</h3>
<p>These have been universally claimed to be passively safe; that is, they remove the need for redundant, active safety systems. This is in part due to obviating the need for electro-mechanical safety-fail safe feature and any part for human action – The nuclear physics does the job. This is a result of the reactor is design allowing it to both safely handle high temperatures {No melt-down scenario.} The reactor can cool itself by natural circulation and still survive in accident scenarios, which may raise the temperature of the reactor to 1,600 °C.</p>
<p>LFTR type reactors will offer safe, sustainable and efficient nuclear power at a potentially low cost. LFTR and Pebble-bed reactors can also theoretically power vehicles. Why, they would be fail-crash safe, and there is no need for a heavy pressure vessel for containment. Furthermore, the pebble bed heats gas that could directly drive a lightweight gas turbine.</p>
<p>The use of the advanced thorium cycle in a fusion-fission hybrid could potentially bypass the stage of designing and building fourth generation breeder reactors in that the energy multiplication in the fission part allows the satisfaction (achievement) of energy breakeven point and the in magnetic and inertial fusion reactor designs. I have not discussed this somewhat still academic alternative lack of time,</p>
<p>Historically, in the United States, the thorium-fission fuel cycle, which I have not discussed for was investigated over the period 1950-1976 both in the federally funded Molten Salt Breeder 1976 in the Molten Salt <em>Breeder Reactor Studies (MSBR<span style="text-decoration:underline;">)</span></em> at the Oak Ridge National Laboratory Reactor (MSBR) at the Oak Ridge National Laboratory (ORNL) as well as in the pilot (ORNL) as well as in the pilot Shippingport fission reactor fission reactor plant.</p>
<p>It has also been used in the High Temperature Gas Cooled Reactor (HTGR) in a pebble bed and a prismatic moderator Reactor (HTGR) in a pebble bed and a prismatic moderator and fuel configurations. General Atomics Corporation (GA) did a large amount of documented-peer review-published work, which the US has ignored but not so the rest of the world.</p>
<p>The General Atomics (GA) Company built two prototype thorium reactors over the1960-1970’s period. The first was a 40 MWeMWe prototype at Peach Bottom, Pennsylvania operated by Philadelphia Electric. The second a 330 MWeMWe at Fort St. Vrain for the Public service of Colorado which operated between 1971 and 1975.</p>
<p>It now appears that the effort to building a Pebble Bed reactor [PBMR ] that was planned in South Africa failed because of lack of Investors/customers, rather then the albeit, large technical and regulatory challenge.</p>
<div id="attachment_2352" class="wp-caption aligncenter" style="width: 526px"><a href="http://mhreviews.files.wordpress.com/2011/11/thorium4.gif"><img class=" wp-image-2352  " title="Thorium4" src="http://mhreviews.files.wordpress.com/2011/11/thorium4.gif?w=516&#038;h=384" alt="" width="516" height="384" /></a><p class="wp-caption-text">Figure 4. Molten Salt Reactor</p></div>
<h3>.</h3>
<p>Because India was outside the Nuclear Non-Proliferation Treaty due to its weapons program, it was for 34 years largely excluded from trade in nuclear plant components or materials that had hampered its development of civil nuclear energy until 2009. Due to these trade bans and barriers, and the lack of <em>indigenous</em> sources of uranium, India has uniquely been developing a nuclear fuel cycle to exploit its reserves of thorium.</p>
<p>Indeed its expertise has made it the premier source of potential thorium fuel cycle expertise, technology and soon workable-licensable reactor designs. Will building thorium based reactor systems come next?</p>
<h4><span style="text-decoration:underline;">The Molten Salt Reactor [MSR]</span></h4>
<p>The MSR is an advanced breeder concept, in which the coolant is a molten salt, usually a fluoride salt mixture. This is thermally quite hot, but not under pressure, and does not boil below about 1400°C. The higher temperatures enhance the efficiency of energy generation.</p>
<p>Much of this research has focused on lithium and beryllium additions to the salt mixture to enhance safety. The fuel can be dissolved enriched uranium, thorium or U-233 as fluoride salts. Recent international discussion has been focused on the Liquid Fluoride Thorium Reactor, utilizing U-233 which has been bred in a liquid thorium salt blanket and continuously removed to be added to the core.</p>
<p>The MSR concept and design was studied in depth in the 1960s, and is now being revived because of the availability of advanced technology for the temperature-radiation resistant materials and components. There is now renewed interest in the MSR concept in China, perhaps in Japan, Russia, France and even in the USA, and one of the six Generation IV designs selected for further development by DOE’s advanced reactor program is the MSR.</p>
<p><em><span style="text-decoration:underline;">The Anti-MSR View</span></em> — In his 2009 article,<strong> </strong>my colleague Arjun Makhijani, entitled <span style="text-decoration:underline;">Thorium Fuel: No Panacea for Nuclear Power</span><strong> </strong>reiterates the widely published concerns about with implementing a commercial thorium fuel cycle. I agree with the listing of problems, so dies the rest of the nuclear engineering community both engineering and commercial.</p>
<p>I do ask, Arjun, what’s new other then trying to involve the public in another nucleophobic red herring. This is an IEER fault that I can seldom find in studies by the staff of the <span style="text-decoration:underline;">Union of Concerned Scientists </span>who’s work on nuclear and other energy issues I also follow.</p>
<p><strong> </strong></p>
<h3>Conclusions</h3>
<p>I leave it to the reader, especially the scientist, engineers, economists and science-educated politicians to think about this. I for one would rather pay a short term penalty (cost) for a safer cost effective, proliferation resistant fuel cycle that released except in mining, no green house gases, than the alternatives and comes closer to solving the HLW disposal problem than to throw that valuable asset away.</p>
<table width="657" border="1" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td valign="top" width="437"><span style="text-decoration:underline;">If wishes were horses (beggars would ride)</span>and I could perhaps:</p>
<ul>
<li>Convince the City of Richland (WA) and Oak Ridge (TN) to set up a municipal &#8216;battery reactor’ – Ups, NRC is mostly ignoring the licensing of this reactor, and will doubtless prevent us importing them from the UK.</li>
<li>If I were not risk adverse, I could invest heavily in thorium mines. However, by the time that licensing anywhere in the world occurs, these ores would become as inflated as gold, palladium or rare earth element ores are now.</li>
<li>Buy a real stake (ownership) of the iron and uranium mines that underground repositories create.</li>
</ul>
<p>I would seriously consider investing my children’s-grandchildren’s future inheritances – what’s left after my wife and I pass on, or at least half of that amount in such a “certified and licensed’ and default insured ventures.</td>
</tr>
</tbody>
</table>
<p><em><span style="text-decoration:underline;"><br />
A Final Thought</span></em> — Over the many years I’ve know him, I’ve been troubled by my colleague Arjun Makhijani ongoing finding of problems in nuclear and other energy areas that for the most part can be dealt with minor tuning of the design of a project. Most of which has nuclear concerns when reviewed 3-5 years later, have been proven to be technical challenges rather that fatal flaws or perhaps unconventional red herrings. WIIFT anyone?</p>
<p>Doc</p>
<p align="center"><strong>REFERENCES</strong></p>
<p><strong>The </strong><strong>Thorium Fuel Cycle</strong>, Wikipedia, 2011 <a href="http://en.wikipedia.org/wiki/Thorium_fuel_cycle">http://en.wikipedia.org/wiki/Thorium_fuel_cycle</a>/</p>
<p>All About <strong>Thorium,</strong> The World Nuclear Association, March 2011.<br />
<a href="http://www.world-nuclear.org/info/inf62.html">http://www.world-nuclear.org/info/inf62.html</a>/</p>
<p><strong>Thorium Costs, </strong>www.thorium.tv site<strong>; </strong>Undated       <a href="http://www.thorium.tv/en/thorium_costs/thorium_costs.php">http://www.thorium.tv/en/thorium_costs/thorium_costs.php</a>/</p>
<p><strong>Nuclear Power in India</strong>, The World Nuclear Association, October 2011<br />
<a href="http://www.world-nuclear.org/info/inf53.html">http://www.world-nuclear.org/info/inf53.html</a>/</p>
<p><strong>The Fusion Fission Hybrid Thorium Fuel Cycle Alternative</strong> &lt;A Slide Presentation, Feb 2010&gt;. University of Illinois. <a href="http://www.intechopen.com/articles/show/title/thorium-fission-and-fission-fusion-fuel-cycle">http://www.intechopen.com/articles/show/title/thorium-fission-and-fission-fusion-fuel-cycle</a>/</p>
<p><strong>Thorium Fission and Fission-Fusion Fuel Cycle, Nuclear Power &#8211; Deployment, Operation and Sustainability</strong>, by Magdi Ragheb (2011), Pavel Tsvetkov (Ed.), ISBN: 978-953-307-474-0, InTech<br />
<a href="http://www.intechopen.com/source/pdfs/19682/InTech-Thorium_fission_and_fission_fusion_fuel_cycle.pdf">http://www.intechopen.com/source/pdfs/19682/InTech-Thorium_fission_and_fission_fusion_fuel_cycle.pdf</a>/</p>
<p><strong>Thorium Fuel: No Panacea for Nuclear Power, </strong>By Arjun Makhijani and Michele Boyd, dated for the Physicians for Social Responsibility and the Institute for Energy and Environmental Research [IEER.]            <a href="http://www.ieer.org/fctsheet/thorium2009factsheet.pdf">http://www.ieer.org/fctsheet/thorium2009factsheet.pdf</a>/</p>
<p><strong>Safeguards Approaches for Fast Breeder Reactors and Associated Fuel Cycle Facilities,</strong> Nuclear Security Science Policy Institure, 2010         <a href="http://nsspi.tamu.edu/topical-subsections/research/research-projects/safeguards-instrumentation-fast-breeder-reactors">http://nsspi.tamu.edu/topical-subsections/research/research-projects/safeguards-instrumentation-fast-breeder-reactors</a> <strong>  </strong></p>
<p><strong>The Thorium Fueled Molten Salt Reactor News [MSR] Blog   </strong><a href="http://thoriummsr.com/">http://thoriummsr.com/</a></p>
<p><strong>Nuclear Batteries</strong> (e.g., Small Nuclear Reactors) By <a href="http://www.time.com/time/letters/email_letter.html"><strong>Eben Harrell</strong></a><strong> </strong>Monday, Feb. 28, 2011, Time Magazine.<a href="http://www.time.com/time/magazine/article/0,9171,2050039,00.html">http://www.time.com/time/magazine/article/0,9171,2050039,00.html</a>/</p>
<p><strong>Pebble Bed Reactor</strong> — Wikipedia 2011.     <a href="http://en.wikipedia.org/wiki/Pebble_bed_reactor">http://en.wikipedia.org/wiki/Pebble_bed_reactor</a>/</p>
<p><strong>Uranium-233</strong> {formed in Thorium Reactors } – Wikipedia. 2011. <a href="http://en.wikipedia.org/wiki/Uranium-233">http://en.wikipedia.org/wiki/Uranium-233</a>/</p>
<h4>Sidebar Notes<strong></strong></h4>
<p>Copyright Notice: Product and company names and logos in this review may be registered trademarks of their respective companies.</p>
<p>Some of the articles cited or quoted in this column are copyright protected – their use is both acknowledged and is limited to educational related purposes, which this column provides.</p>
<p>The author considers, as do many experts, Wikipedia a reliable and accessible site for technical information, provided that the reference cited in the Wikipedia article meets the following standard.</p>
<table border="1" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td valign="top" width="441"><em><span style="text-decoration:underline;">My Standards for References Checks</span></em><em> </em><em>Are the references provided essentially complete or representative of the literature, and relevant?  Do they include both precedent and present work, including any referenced disagreement with any of the article author’s assumptions, methods or views?</em><em>In addition I always try to glean WIIFT &lt;what’s in it for them?&gt; WIIFT is a neutral characteristic that sets the authors paradigm, some the reader needs to be aware of. It’s like who actually sponsors research, a political add, or ant means of trying to sway you viewpoint – OKAY enough preaching.</em><em></em></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2284&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/11/19/the-thorium-fuel-cycle-technology-advantages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8a8173a81cb83ee8d0ea24bd673c841?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harrybabad</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif" medium="image">
			<media:title type="html">Gaiea</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/thorium11.jpg" medium="image">
			<media:title type="html">Thorium1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/thorium2.png" medium="image">
			<media:title type="html">Thorium2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/table1.jpg" medium="image">
			<media:title type="html">table1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/thorium3.png" medium="image">
			<media:title type="html">Thorium3</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/thorium4.gif" medium="image">
			<media:title type="html">Thorium4</media:title>
		</media:content>
	</item>
		<item>
		<title>November, 2011 – The Greening Continues:New Eclectic Examples of Environmental Technologies</title>
		<link>http://mhreviews.wordpress.com/2011/11/13/november-2011-%e2%80%93-the-greening-continuesnew-eclectic-examples-of-environmental-technologies/</link>
		<comments>http://mhreviews.wordpress.com/2011/11/13/november-2011-%e2%80%93-the-greening-continuesnew-eclectic-examples-of-environmental-technologies/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 20:38:46 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Environmental Posts]]></category>
		<category><![CDATA[The Greening Continues, by Harry {doc} Babad]]></category>
		<category><![CDATA[By 2050 City Sizes Will More Than Double]]></category>
		<category><![CDATA[Challenge to China’s Solar Cell Pricing]]></category>
		<category><![CDATA[Cities Could Slow Regional Green House Gas Release]]></category>
		<category><![CDATA[City Ecosystems]]></category>
		<category><![CDATA[Environmental Technology]]></category>
		<category><![CDATA[Fracking – For Gas A Dilemma]]></category>
		<category><![CDATA[Fracking Both A Problem And Solution]]></category>
		<category><![CDATA[Green Technology Progress]]></category>
		<category><![CDATA[Natural Gas May Be Too Hot To Handle]]></category>
		<category><![CDATA[Natural Gas Releases Radioactivity]]></category>
		<category><![CDATA[Oregon & California Lead in Solar Highway Energy]]></category>
		<category><![CDATA[Rare Earth Element Scarcity]]></category>
		<category><![CDATA[Solar Electric At Right Of Ways]]></category>
		<category><![CDATA[Solar Elements – Gaia’s Gifts]]></category>
		<category><![CDATA[Solar Highways]]></category>
		<category><![CDATA[Trade Wars – Too often Sound-Fury for Protectionism]]></category>
		<category><![CDATA[Urban Is Not All Bad]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2271</guid>
		<description><![CDATA[By Harry {doc} Babad, © Copyright 2011, All Rights Reserved. Introduction – Jest a bit of preachin’ I do have an attitude and am seldom politically correct, only well referenced in my sources and always biases to evidence, grey as it might be, in my opinions.   Note, many of the technologies I share are in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2271&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Harry {doc} Babad, © Copyright 2011, All Rights Reserved. <a href="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif"><img class="alignright size-full wp-image-151" title="Gaiea" src="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif?w=614" alt=""   /></a></p>
<h3>Introduction<strong></strong></h3>
<h4><strong> – </strong>Jest a bit of preachin’<strong></strong></h4>
<p><em>I do have an attitude and am seldom politically correct, only well referenced in my sources and always biases to evidence, grey as it might be, in my opinions.  </em><em></em></p>
<p>Note, many of the technologies I share are in various stage of first, development, and are often far from being a commercial success. Their inventors and supporters still have to prove that they are reliable, durable and scalable, Remember There Ain’t No free Lunch and silver bullets too often turn to lead.</p>
<p>When and if you Google the topics in depth, you will find studies saying the inventions/ideas are capable of being commercialized and often as many other studies that are more skeptical because there is no easy way to for them to become reality in our political-economic systems.</p>
<p>Most inventions die at the proof of principal stage, however the ones that count to make a difference survive as commercial success. Even the Chinese government knows that, however they chose to ignore such realty. Government as choosers are almost always losers.</p>
<p>A reminder, conditions, both technical and geopolitical continuously change – So if you’ve made up your mind about either the best way to go, or about its all a conspiracy, move on to the next article in our blog. Today’s favorite is tomorrow unintended consequence and our globe replaced the flat earth.</p>
<p>However, that’s better than sticking one’s head in the sand or believing in perpetual motion<em>.</em> Remember, <em>there’s no free lunch</em> and as a taxpayer and consumer you must always end up <em>paying the piper</em>!</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p align="center"><strong><em>Titles, As Usual, in No Formal Order, for the New Snippets and Topics</em></strong></p>
<ul>
<li><strong>‘Solar Highways’ Transform Our Crumbling Infrastructure Into Something Useful</strong></li>
<li><strong>The Rare Earth Elements</strong> — Meet the Obscure, Useful Metals Lurking in Products All Around You</li>
<li><strong>As Ecosystems, Cities Yield Some Surprises</strong></li>
<li><strong>Radioactivity Released in Petroleum or Natural Gas Production</strong> — The brave new world of natural gas.</li>
</ul>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3><strong> ‘Solar Highways’ Transform Our Crumbling Infrastructure Into Something Useful</strong></h3>
<p><em>This is a collation/abstract of several articles dealing to both the potential advantages of Super Highways, aka Solar Highways, and the Western states endeavoring to install them. </em></p>
<p><em>At the end of the <span style="text-decoration:underline;">References</span> on reports of achievements, I share a quick list of the most recent trade war associated references between US solar cell manufactures’ and those in China. </em></p>
<p><em>Unfortunately there are two significant problems with what many economist see in this trade challenge before the WTO/WTF. </em></p>
<p><em>First in the US and Europe it pit the many installers of solar powered services against the US manufacturers of such panels. These my hundreds of businesses use Chinese crystalline solar panels because not only are they less expensive but also at times reported to be higher in quality and durability then those made by older technology, made in America. </em></p>
<p><em> The second reason this song and dance seems to be farcical, sound and fury signifying nothing, is that it is unlikely the World Trade Federation, will be able to reach a decision in this complex matter, in less that 18 months according to experts at Bloomberg’s. I’ve provided a few references at the end of the main solar related list that provide insight into this mess.</em></p>
<p>One of the great things about <a href="http://en.wikipedia.org/wiki/Photovoltaics">photovoltaics</a> is that all they need is an unobstructed piece of ground, and some basic maintenance, and they pump out electricity all day long. But finding a piece of ground that can be devoted solely to solar collectors can be a challenge, especially in the populated areas that need the power the most, so you will often find solar panels perched atop some structure, where they are exposed to higher winds, and are more difficult to maintain. But the solution to this problem might be on your way to work every day, in the unused spaces that surround our national grid of highways.</p>
<p>Up north in Oregon, <em>as I share below</em>: <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image1.png"><img class="alignright size-full wp-image-2272" title="11-2011-image1" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image1.png?w=614" alt=""   /></a> <a href="http://www.oregon.gov/ODOT/HWY/OIPP/inn_solarhighway.shtml">they have been building a some test examples of ‘solar highways</a>‘ that are using the empty space around and alongside roads to generate electricity, and this has been a successful experiment. The solar highways are already supplying a considerable portion of the power that is needed to light a highway around Portland from light that falls <em>on the highway itself</em>. That project, having proven itself, <a href="http://www.portlandtribune.com/sustainable/story.php?story_id=127109333076973600">has now spawned more in the area</a>.</p>
<p>But, really, doesn’t it make more sense to build projects like this in places that have a bit more sun than overcast Oregon? What about places like California? If <a href="http://www.cloverleafsolarhighways.com/">Republic Solar Highways</a> has it’s way, this sensible plan can become a reality, and soon. They plan to use 65 acres of <a href="http://www.cloverleafsolarhighways.com/sites/">unused roadside land around highway 101</a> to build a 15-megawatt solar collection network, and with the backing of the California Department of Transportation <a href="http://www.bizjournals.com/sanjose/news/2011/07/07/republic-scores-partnership-solar.html">the project seems on track to break ground within the next year</a>.</p>
<p>Hopefully, this will be just the beginning. There is so much unused land around our nation’s roads that could be supplying a generous flow of electrons to the people around them, rather than just being a money sink. After all, most of this unused space has to be cleared and mowed regularly to prevent fires from breaking out and making a mess of travel. And, looking forward, there are <a href="http://cleantechnica.com/2008/08/18/new-technology-could-make-roads-a-solar-energy-source/">multiple</a> <a href="http://green.autoblog.com/2009/08/28/solar-roadways-get-prototype-funding-from-dot/">proposals</a> for using the roads themselves as solar collectors. In fact, our roads are currently acting as <a href="http://ecopreneurist.com/tag/heat-island-effect/">such efficient solar collectors </a>that they are <a href="http://planetsave.com/2010/07/30/more-frequent-and-intense-heat-waves-for-new-york/">changing the environment around them by putting off so much heat</a>. There are certainly better uses for that energy, and it’s time we started collecting it.</p>
<p>Okay, we know YOU ride your bike everywhere. But the country’s 4 million miles of roads, and 50,000 miles of interstate highway, probably aren’t going anywhere any time soon. Isn’t there anything productive we can do with this giant car playground? Well, we can cover it with solar photovoltaic panels, so it’s at least providing some energy.</p>
<p>Oregon&#8217;s<a href="http://www.oregonlive.com/environment/index.ssf/2009/07/oregons_solar_highway_breaking.html"> already is testing the idea</a>, installing panel arrays along highway shoulders. Others want to embed the solar panels directly into the road surface, and have already received funding to test the idea. California wants to try it<a href="http://www.cloverleafsolarhighways.com/sites/"> along parts of Route 101</a>.</p>
<p>If you think about it, roads are a perfect place to put solar: They&#8217;re already public land, they&#8217;ve already been cleared and graded, they&#8217;re adjacent to infrastructure like towns and power lines, and they&#8217;re super accessible for repair and upgrades. Also, they’re already sitting out in the sun all day.</p>
<p>Mathew Preusch also reports “Here&#8217;s another benefit <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image2.png"><img class="alignright size-full wp-image-2273" title="11-2011-image2" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image2.png?w=614" alt=""   /></a> of today&#8217;s sunny weather: The new solar power array at the intersection of Interstates 5 and 205 is breaking power generation records”.</p>
<p>You can track the Oregon &#8220;<a href="http://www.oregonlive.com/environment/index.ssf/2008/08/oregon_installs_first_highway.html"><strong>Solar Highway</strong></a>&#8221; project&#8217;s power output at its nifty <a href="http://www.live.deckmonitoring.com/?id=solarhighway"><strong>home page</strong></a><strong>.</strong> As of this afternoon, the site said the 8,000-square foot array was generating about 58 kilowatts, but at mid-day production peaked at closer to 85 kilowatts.</p>
<p>The first of its kind in the country project, installed last year by the Oregon Department of Transportation Portland General Electric, feeds into PGE&#8217;s grid. But it is only designed, <em>for now</em>, to supply about a quarter of the power needed to illuminate the interchange.</p>
<p align="center"><strong>REFERENCES</strong></p>
<p><em><span style="text-decoration:underline;">ABOUT SOLAR HIGHWAYS</span></em></p>
<p><strong>Solar Highways </strong><strong>Turn Public Liabilities into Assets, </strong>by Aaron Fown, July 18, 2011 <a href="http://s.tt/12S8y">Clean Technica</a> Blog.<strong></strong></p>
<p><strong>Solar Highways Transform Our Crumbling Infrastructure Into Something Useful|<br />
</strong><strong>BY </strong><a href="http://www.grist.org/people/Christopher+Mims"><strong>CHRISTOPHER MIMS</strong></a><strong>, 20 JUL 2011. For the </strong><a href="http://www.grist.org/list"><strong>GristList Blog</strong></a><strong>.</strong> <a href="http://www.grist.org/list/2011-07-20-solar-highways-transform-our-crumbling-infrastructure-into-somet">http://www.grist.org/list/2011-07-20-solar-highways-transform-our-crumbling-infrastructure-into-somet</a></p>
<p><strong>Oregon&#8217;s &#8220;Solar Highway&#8221; Breaking Records Today. </strong>Published: Wednesday, July 01, 2009, By <a href="http://connect.oregonlive.com/user/mpreusch/index.html">Matthew Preusch, The Oregonian<strong> </strong></a><a href="http://www.oregonlive.com/environment/index.ssf/2009/07/oregons_solar_highway_breaking.html">http://www.oregonlive.com/environment/index.ssf/2009/07/oregons_solar_highway_breaking.html</a></p>
<p><strong>Oregon Installs First Highway Solar Project. </strong>Update: Friday, August 08, 2008, 8:04 AM, by <a href="http://connect.oregonlive.com/user/drivera/index.html">Dylan Rivera, The Oregonian</a><strong> </strong><a href="http://www.oregonlive.com/environment/index.ssf/2008/08/oregon_installs_first_highway.html">http://www.oregonlive.com/environment/index.ssf/2008/08/oregon_installs_first_highway.html</a></p>
<p><strong>Oregon Monitoring Data (PGE/OR-DOT) on America’s First Solar Highway</strong> &#8211; <a href="http://www.live.deckmonitoring.com/?id=solarhighway">http://www.live.deckmonitoring.com/?id=solarhighway</a></p>
<p><strong><span style="text-decoration:underline;">Republic’s Super Highways Projects</span></strong><strong>;</strong> California Here We Come: <a href="http://www.cloverleafsolarhighways.com/sites/">http://www.cloverleafsolarhighways.com/sites/</a></p>
<p><strong>Solar Photovoltaics</strong>  – Wikipedia, 2011. <a href="http://en.wikipedia.org/wiki/Photovoltaics">http://en.wikipedia.org/wiki/Photovoltaics</a></p>
<p><em><span style="text-decoration:underline;">SOLAR TRADE WAR REFERENCES ADDENDUM</span></em></p>
<p><strong>U.S. Solar Manufacturers Request Duties on Chinese Imports, </strong><em>by Mark Drajem and Eric Martin, </em>October 20, 2011, in <em>Bloomberg Business Week.<br />
</em><a href="http://www.businessweek.com/news/2011-10-20/u-s-solar-manufacturers-request-duties-on-chinese-imports.html">http://www.businessweek.com/news/2011-10-20/u-s-solar-manufacturers-request-duties-on-chinese-imports.html</a></p>
<p><strong>A Trade War With China Over Solar Panels Will Burn US</strong>, by Vahid Fotuhi, Oct 30, 2011 I n the National.   <a href="http://www.thenational.ae/thenationalconversation/industry-insights/energy/a-trade-war-with-china-over-solar-panels-will-burn-us/">http://www.thenational.ae/thenationalconversation/industry-insights/energy/a-trade-war-with-china-over-solar-panels-will-burn-us/</a></p>
<p><strong>Solar Execs Wary Of Trade War With China, </strong>CNET News &amp; Reuters, October 20, 2011.  <a href="http://news.cnet.com/8301-11128_3-20123327-54/solar-execs-wary-of-trade-war-with-china/">http://news.cnet.com/8301-11128_3-20123327-54/solar-execs-wary-of-trade-war-with-china/</a></p>
<p><strong>Solar Panel Trade War</strong>, by Tim Worstall, Forbes Contributor, October 23, 2011.<br />
<a href="http://www.forbes.com/sites/timworstall/2011/10/23/solar-panel-trade-war/">http://www.forbes.com/sites/timworstall/2011/10/23/solar-panel-trade-war/</a></p>
<p><strong>Solar Trade War Officially Starts Today</strong>, by Eric Wesoff: October 19, 2011 at GreenTech Solar   <a href="http://www.greentechmedia.com/articles/read/solar-trade-war-officially-starts-today/">http://www.greentechmedia.com/articles/read/solar-trade-war-officially-starts-today/</a></p>
<p><strong>U.S. Solar Manufacturers Request Duties on Chinese Imports, </strong><em>by Mark Drajem and Eric Martin, </em>October 20, 2011, in <em>Bloomberg Business Week.<br />
</em><a href="http://www.businessweek.com/news/2011-10-20/u-s-solar-manufacturers-request-duties-on-chinese-imports.html">http://www.businessweek.com/news/2011-10-20/u-s-solar-manufacturers-request-duties-on-chinese-imports.html</a></p>
<p>PS:<em> Not only does this involve China and the US, but also pits a small group American and other non-Asian manufacturers of crystalline solar cell against American would be users of such cells. KISS is not a geopolitical concept. It does not protect our national security interests, but governments mostly make bad technological business decisions. Look what happened </em>solar panel maker Solyndra that follows similar bankruptcy actions by Evergreen <strong>Solar</strong> and SpectraWatt. It’s a great Google topic!</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3>The Rare Earth Elements</h3>
<h4>— Meet the Obscure, Useful Metals Lurking in Products All Around You</h4>
<p>Without the rare earths, there would be no iPods and no hybrid cars. But who has even heard of erbium or ytterbium?</p>
<p>The name <a href="http://en.wikipedia.org/wiki/Rare_earths"><em>rare earths</em></a> made sense to the 19th-century mind: <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image3.png"><img class="alignright size-medium wp-image-2274" title="11-2011-image3" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image3.png?w=300&#038;h=144" alt="" width="300" height="144" /></a> rare because it seemed at first that they came only from Scandinavia, and earths because they occurred in an earthy oxide form from which it was exceptionally hard to obtain the pure metal.</p>
<p>Today it is clear that the rare earths are hardly rare. The most common of them, cerium, ranks 25th in abundance in the earth’s crust, one place ahead of homely copper. Yttrium is twice as abundant as lead; all of the rare-earth metals (with the exception of radioactive promethium) are more common than silver. The “earths” part is also misleading. These elements are actually metals, and quite marvelous ones at that. The warm glow of terbium is essential to high-efficiency compact-fluorescent bulbs. Europium is widely exploited to make vivid displays for laptop computers and smart phones. Rare earths also pop up in more unexpected places like baseball bats, European currency, and night-vision goggles.</p>
<p>With their growing popularity comes new value, and even political notoriety. Terbium and europium recently overtook silver in price, reaching $40 an ounce. The growing demand for rare earths has become the subject of numerous government reports and <a href="http://blogs.wsj.com/chinarealtime/2010/10/01/us-congress-spurs-rare-earth-race/">a bill that passed in the House of Representatives</a>. The reason these elements are causing such a stir is not their scarcity but their inaccessibility. Rare earths tend to occur in hard rock such as granites, where they lump together in a uniform way that makes them difficult to extract.</p>
<p>Separating out the desired elements demands a toxic and dangerous process, and China has the best infrastructure for doing so economically. <span style="text-decoration:underline;">China holds about 36 percent of the world’s 110 million tons of recoverable rare-earth ores</span>, with the rest scattered worldwide, principally in the United States, India, Australia, and Russia. Yet China currently produces as much as 97 percent of the world’s rare-earth oxides, according to the U.S. Government Accountability Office. Pekka Pyykkö, a professor of chemistry at the University of Helsinki, puts it this way: “Not all the deposits are in China, but the processing capacity right now is.”</p>
<p>Supply would not matter if not for demand, and the demand comes <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image4.png"><img class="alignright size-medium wp-image-2275" title="11-2011-image4" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image4.png?w=300&#038;h=187" alt="" width="300" height="187" /></a> from the unusual electrical properties of the rare earths—or lanthanides, as chemists prefer to call them, because they mostly follow lanthanum in the periodic table of elements. The lanthanides share similar chemical properties because they all react similarly, mostly with their three outer electrons. (An atom’s arrangement of electrons is what determines most of its physical and chemical attributes.) Like copper, iron, cobalt, and other more familiar metals, lanthanides form many colored compounds. The magic happens when those outer electrons change energy states and release visible light. But the rare earths are especially valuable for their property of fluorescence: They can absorb light or ultraviolet rays and re-emit the energy as an eerie glow of certain colors specific to each element. The brilliant emission of red and green is the reason why lanthanides are indispensable components of today’s television sets and compact fluorescent bulbs.</p>
<p>From a technological perspective, a more intriguing trait of the rare earths is that some of them are highly magnetic. Alloyed with other metals, they make extraordinarily strong and compact magnets: perfect for computer hard drives, cordless power tools, microphones, and headphones. An iPod takes a triple sip of rare earths: to store digital music, to re-create it in ear-buds, and to display what is playing. An iron alloy containing terbium and dysprosium has a particularly useful property: It expands and contracts efficiently in the presence of a magnetic field. Sensors, actuators, and injectors commonly use such materials, for instance to regulate the flow of gasoline into an automotive engine.</p>
<p><em>Okay, ‘nuff said, click though and read on. The last reference I provide focuses on the geopolitics of the rare earth elements, one more global trade conflict to worry about. The previous topic discussed solar cells for energizing our sunnier highways; there to a trade was is underway. </em><em></em></p>
<p align="center"><strong>REFERENCES</strong></p>
<p><strong>The Rare Earth Elements</strong> By Hugh Aldersey-Williams. From the <a href="http://discovermagazine.com/2011/jul-aug">July-August special issue</a>;<strong> </strong>Discover Magazine<strong>         </strong><a href="http://discovermagazine.com/2011/jul-aug/12-meet-obscure-metals-that-lurk-products-all-around-you">http://discovermagazine.com/2011/jul-aug/12-meet-obscure-metals-that-lurk-products-all-around-you</a>.</p>
<p><strong>The Rare Earth Elements, </strong>Wikipedia, 2011, <a href="http://en.wikipedia.org/wiki/Rare_Earth_Elements">http://en.wikipedia.org/wiki/Rare_Earth_Elements</a></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3>As Ecosystems, Cities Yield Some Surprises</h3>
<p>In Boston, scientists measuring the city’s greenhouse gas emissions have found what they call a “weekend effect,” a clear drop-off in the amount of carbon dioxide entering the city’s atmosphere on Saturdays and Sundays. In Fresno, researchers have discovered that backyard water use increases with wealth, as does backyard biodiversity. And in Los Angeles, ecologists studying the city’s “ecohydrology” have calculated that planting a million new trees, an idea with fairly universal appeal, would have the drawback of increasing water consumption by 5 percent.</p>
<p>The researchers, who presented their findings this week at the <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image5.png"><img class="alignright size-full wp-image-2276" title="11-2011-image5" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image5.png?w=614" alt=""   /></a> Ecological Society of America’s annual meeting in Austin, Tex., are all involved in a nascent program to understand the nation’s cities, home to 80 percent of the population, as functioning ecosystems. The goal is to educate urbanites about their environment and how they can act to make it more sustainable.</p>
<p>The program, called Ultra, for Urban Long-Term Research Area, is a joint effort of the National Science Foundation and the Forest Service. A total of 21 projects are under way, including two in New York City. In establishing financing (known as Ultra-Ex grants) for exploratory sites in 2009, the science foundation called urban sustainability one of “the greatest challenges to the long-term environmental quality of the nation.”</p>
<p>At a research site in Fresno, Calif., overseen by Madhusudan Katti, an ecologist at California State University’s campus there, the aim is to untangle the interactions between city water policy, outdoor water use at homes and biodiversity to help inform policy. On the average, wealthier households in Fresno use more water in their yards, yet not because the water is more affordable for them: the city has no metering system, so residents pay a fixed monthly rate.  Reducing water use is considered crucial to guaranteeing long-term sustainability, yet Dr. Katti found that using less water could cause local bird diversity to decline.</p>
<p>“Half the population globally lives in cities, but we don’t have a conceptual understanding of how cities work as dynamic systems,” Dr. Katti said. “We need to generate that understanding.”</p>
<p>Nathan Phillips, an ecologist at Boston University who runs one of the city’s two Ultra-Ex sites, told the audience at the conference that his project, which includes rooftop plant experiments both in and outside the city as well as measurements of greenhouse gases, had revealed a “pulsing type of urban metabolism. <em>However</em>,<em> </em>Just as these research sites are beginning to reveal how such urban ecosystems function, federal budget cuts are calling their future into question. <em>There’s more details and a few reference links, online.</em></p>
<p><em><span style="text-decoration:underline;">Why is such research necessary?</span></em><br />
Well Cities are growing like Topsey or Jack’s Bean Stalk according to published references, by international agencies, university demographers, national governments and international charitable organizations. Although estimates vary depending on the grown (migration plus birth-death rations) assumptions made by the demographers and the boundaries used in the predictive models the increase is almost beyond belief.</p>
<p>In 2008 according to the United Nations, half the people in the world lived in cities.</p>
<p>In the 20<sup>th</sup> Century citied grew 10-forld from 250 million people to 2.8 billion. The UN predicts that by 2050 the world population is expected to surpass nine billion with six billion living in cities.</p>
<p>Cities, not villages or towns, which seem to be defined as urban communities large than one million people.</p>
<p>Many of these urban areas already exceed ten million people or more. For a list of the 20-cities that exceed 10-million in population check Wikipedia (2100) which contains links to the demographic studies.  <a href="http://en.wikipedia.org/wiki/List_of_metropolitan_areas_by_population">http://en.wikipedia.org/wiki/List_of_metropolitan_areas_by_population</a></p>
<p>One would hope that understanding the environmental impacts of urban areas and how to modify them for the better should matter, if not to all of our present readers, then perhaps to their children’s, children.</p>
<p align="center"><strong>REFERENCES</strong></p>
<p><strong>As Ecosystems, Cities Yield Some Surprises,</strong> By <a href="http://green.blogs.nytimes.com/author/hillary-rosner/">Hillary Rosner</a>, August 11, 2011 for the New York Times for the New York Times<br />
<a href="http://green.blogs.nytimes.com/2011/08/11/as-ecosystems-cities-yield-some-surprises/">http://green.blogs.nytimes.com/2011/08/11/as-ecosystems-cities-yield-some-surprises/</a></p>
<p><strong>What Drives Cities’ Runaway Growth?</strong> By Felicity Barringer, August 22, 2011 for the New York Times. <a href="http://green.blogs.nytimes.com/2011/08/22/the-city-limits-are-expanding-everywhere/">http://green.blogs.nytimes.com/2011/08/22/the-city-limits-are-expanding-everywhere/</a></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3>Radioactivity Released in Petroleum or Natural Gas Production</h3>
<h4><strong></strong> — The brave new world of natural gas.</h4>
<p><span style="text-decoration:underline;">An After thought – Doc’s jest scratchin’ an itch.<br />
</span></p>
<p>Perhaps I’m just a dumb chemist, not a philosopher, or politician, but based on demonstrated reality, The Dose Makes the Poison. A fine book with this title by Patricia Frank and M. Alice Ottoboni can be obtained from Amazon <a href="http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Dstripbooks&amp;field-keywords=The+dose+makes+the+poinson&amp;x=0&amp;y=0">http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Dstripbooks&amp;field-keywords=The+dose+makes+the+poinson&amp;x=0&amp;y=0</a></p>
<p>There are assorted run of the Internet Quotes and Clips I collected in 2010-2011</p>
<p>Radium and other naturally occurring isotopes are a common <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image6.png"><img class="alignright size-full wp-image-2277" title="11-2011-image6" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image6.png?w=614" alt=""   /></a> concern with any petroleum or gas mining operation.   Radium is a daughter product of uranium and thorium, so they obviously will naturally occur in nature.   The existence of the uranium itself is not the primary concern.</p>
<p>Radium is water-soluble and its salts can concentrate in pipes, valves and other mining equipment generating measurable radiation doses.   Levels can be high enough to set-off radiation detectors at local landfills.  In rare cases, they may approach levels, which require radiation monitoring of the workers &#8230; though mainly it requires radiation surveys to ensure that further controls are not necessary.  Since this is a form of Technologically Enhanced Naturally Occurring Radioactive Material (TENORM), it is subject to control at the discretion of the specific state radiation protection agency.   It does not come under the jurisdiction of the Nuclear Regulatory Commission. There indeed is uranium, not enough for use an an ore, but high enough to be of health concerns under some condition in Marcellus Shale</p>
<p>While he uranium concentrations in the geologic formations are too low for economically feasible removable, the concentrating effect of the radium disposition, in addition to its mobilization for a subsurface to surface location, can produce radiological concerns which do not exist in the naturally occurring material. <em>Processes such a fracking to recover natural gas provide an excellent escape route. However</em>, the radiological aspects of the process is definitely not the most significant environmental concern for the process, but it should be addressed as minor part of overall regulation.<em> </em>&#8220;Anthony DeAngelo, CHP&#8221; <a href="mailto:ardeangelo@aol.com">ardeangelo@aol.com</a><em> </em>10-28-10; Written <em>Pre the current natural gas recovery bonanza</em></p>
<p>In response, Charles Barton, a knowledgeable and well-respected Philosopher of Science and Technology and science history author responded on Oct 28, 2010 [ANS SocialMedia.] He is also the author of the Nuclear Green blog, which serves as a forum for separate ng science fro m mere belief,</p>
<p>“Uranium found in Marcellus shale.] <em>Note these deposits are also one of the potential premier sources of natural gas by fracking.</em></p>
<p>Michael, I (<em>Barton</em>) discussed the potential role of fracking shake, <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image7.png"><img class="alignright size-full wp-image-2278" title="11-2011-image7" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image7.png?w=614" alt=""   /></a> in Uranium extraction last March in a post titled &#8217;Radon as harbinger of a cornucopia.&#8221;  I wrote: A November 2009 story in Pro-Publica, titled Is New York’s Marcellus Shale Too Hot to Handle. It states, …The information comes from New York&#8217;s Department of Environmental Conservation, which analyzed 13 samples of wastewater brought thousands of feet to the surface from drilling and found that they contain levels of radium-226, a derivative of uranium, as high as <strong>267</strong> times the limit safe for discharge into the environment and thousands of times the limit safe for people to drink.&#8221;</p>
<p>To which I added; So it is clear that the presence of radon indicates the presence of uranium and/or thorium, and since radon has no other natural source, finding a lot of radon, enough to be dangerous means that a lot of uranium and/or thorium must be around.</p>
<p>And then I pointed to the implications of fracking for uranium mining:</p>
<p>A major limitation to the in situ approach would seem to be that while there is a whole lot of uranium and thorium locked up in shale rock, shale is not permeable, and thus not currently seen as a candidate for in situ mining. That is where fracking comes in.     &#8211; Charles Barton</p>
<p><em>Doc Sez: Google “</em><em>Marcellus Shale</em><em> + Natural Gas” It’s not just uranium that of interests in these tight shale deposit. </em><em> Perhaps the purveyor of this misinformation should be invited to drink “purified” bottled water, from fracking for natural gas. After all turn about is fair play.</em></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3> Endnotes</h3>
<p>Copyright Notice: Product and company names and logos in this review may be registered trademarks of their respective companies.</p>
<p>Some of the articles listed in this column are copyright protected – their use is both acknowledge and is limited to educational related purposes, which this column provides. Since they are likely covered by the <a href="http://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a>.</p>
<p><em><span style="text-decoration:underline;">Sources &amp; Credits</span></em><em>: </em> — Many of these items were found by way of the links in the newsletter <em>NewsBridge</em> <em>of ‘articles of interest’</em> to the national labs library technical and regulatory agency users. <em>NewsBridge</em> is electronically published by the Pacific Northwest National Laboratories, in Richland WA.  If using <em>NewsBridge</em> as a starting point, I follow the provided link to the source of the information and edit its content (mostly by shortening the details) for information for our readers. I also both follow any contained links, where appropriate, in the actual article, and provide you those references as well as those gleaned from a short trip to Google-land. Obviously if my source is a magazine or blog that the material I work with.</p>
<p>In addition, when copying materials that I cite, I do not fill the sourced ‘quoted’ words with quotation marks, the only place I keep quotes intact is where the original article ‘quotes’ another secondary source external to itself.  Remember, when Doc sticks his two bits in, its in italics and usually indented.</p>
<p><em>Article selection (my article – my choice} are obviously and admittedly biased by my training, experience and at rare times my emotional and philosophical intuitive views of what works and what will not… But if you have a topic I neglect, send me feedback and I’ll give it a shot. </em>… And yes I trust Wikipedia, but only if I’ve checkout most of an articles references for bias and accuracy! <em>Since my topic segments are only a partial look at the original materials, click on-through the provided link if you want more details, as well as &lt;often&gt; to check out other background references on the topic(s).</em><em></em></p>
<h4>In Closing</h4>
<p>Readers please read about my paradigms views, prejudices and snarky attitudes at:</p>
<p><a href="http://mhreviews.wordpress.com/2010/05/23/the-greening-continues-a-column-intro-may-23-2010/">http://mhreviews.wordpress.com/2010/05/23/the-greening-continues-a-column-intro-may-23-2010/</a></p>
<p>I always find it appropriate, as 75 year old iconoclast and cynic, to step back as I read and WIIFT – No it’s not something new to smoke; just the compulsion to ask <em>what’s in it for them</em>. It’s okay to have a hidden agenda, but agenda’s too hidden discomfort me. In addition, most have no relationship to solving the problem that is being bragged about. “<em>What’s in it for Thee</em>”</p>
<p>Yes there will be pain, whatever changes we need to make to get our energy, health, climate, and security system to work, for all Americans and the other effected citizen of the world. Vested interests will scream about require transparency in their claims to truth and the benefits (to whom) their proposals. Casting the light, creating Transparency of their WIIFT is in part key, as is science literacy. I’d rather not have my children and grandchildren grow up either in a slow cooker, or dry roaster oven or go bankrupt staying healthy.</p>
<p>As an example, as alas sea level continues to rise slowly <a href="http://mhreviews.files.wordpress.com/2011/11/11-2011-image8.png"><img class="alignright size-medium wp-image-2279" title="11-2011-image8" src="http://mhreviews.files.wordpress.com/2011/11/11-2011-image8.png?w=300&#038;h=180" alt="" width="300" height="180" /></a> for now… Tomorrow &#8211; tomorrow and a mere decade of tomorrows; <em>perhaps</em> good-bye New York, Seattle, New Orleans and even Los Angeles. I’m too uptight about this to talk about India, China and the flood plains of Africa… extinction is not, in America, a ‘socially acceptable’ subject.</p>
<p>One perspective, mine, is that the Dutch can and do continue protect their land with massive gates and dikes, and the British so far can do so for London. However Yankee ingenuity could not protect New Orleans from what will seem historically as a relatively small and temporary rise in sea level caused by a hurricane named Katrina. Hmmm!</p>
<p><em>Doc</em>.</p>
<p><span style="text-decoration:underline;">QUOTE de Mois </span></p>
<p>A Computer Lets You Make More Mistakes Faster Than Any Invention In Human History – with the possible exceptions of a handguns and tequila.</p>
<p><em>Shucks I do love both Patron Tequila straight shots {also Cognac) and my iMac! Anguish, woe is me… I’m doomed to Murphy … </em>Happy Halloween<em>.</em></p>
<p><a href="http://celebrationgoddess.wordpress.com/2010/05/19/a-computer-lets-you-make-more-mistakes-faster-than-any-invention-in-human-history-with-the-possible-exceptions-of-handguns-and-tequila/">http://celebrationgoddess.wordpress.com/2010/05/19/a-computer-lets-you-make-more-mistakes-faster-than-any-invention-in-human-history-with-the-possible-exceptions-of-handguns-and-tequila/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2271/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2271&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/11/13/november-2011-%e2%80%93-the-greening-continuesnew-eclectic-examples-of-environmental-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif" medium="image">
			<media:title type="html">Gaiea</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image1.png" medium="image">
			<media:title type="html">11-2011-image1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image2.png" medium="image">
			<media:title type="html">11-2011-image2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image3.png?w=300" medium="image">
			<media:title type="html">11-2011-image3</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image4.png?w=300" medium="image">
			<media:title type="html">11-2011-image4</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image5.png" medium="image">
			<media:title type="html">11-2011-image5</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image6.png" medium="image">
			<media:title type="html">11-2011-image6</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image7.png" medium="image">
			<media:title type="html">11-2011-image7</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/11-2011-image8.png?w=300" medium="image">
			<media:title type="html">11-2011-image8</media:title>
		</media:content>
	</item>
		<item>
		<title>September, 2011 &#8211; The Greening Continues:New Eclectic Examples of Environmental Technologies</title>
		<link>http://mhreviews.wordpress.com/2011/11/13/september-2011-the-greening-continuesnew-eclectic-examples-of-environmental-technologies/</link>
		<comments>http://mhreviews.wordpress.com/2011/11/13/september-2011-the-greening-continuesnew-eclectic-examples-of-environmental-technologies/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 19:44:44 +0000</pubDate>
		<dc:creator>harrybabad</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Environmental Posts]]></category>
		<category><![CDATA[The Greening Continues, by Harry {doc} Babad]]></category>
		<category><![CDATA[A Nuclear Abu Dhabi]]></category>
		<category><![CDATA[Advances in Biohydrometallurgy]]></category>
		<category><![CDATA[Advances Vertical Farming]]></category>
		<category><![CDATA[Climate Change-Complicated But Real]]></category>
		<category><![CDATA[Corn Ethanol Rip-off]]></category>
		<category><![CDATA[Correlation vs Causation-A Statistics Quandry]]></category>
		<category><![CDATA[Economical Compact Fluorescents]]></category>
		<category><![CDATA[Ethanol vs. Fuel]]></category>
		<category><![CDATA[Fracking]]></category>
		<category><![CDATA[Hydraulic Facture]]></category>
		<category><![CDATA[LED's a $40 Light Bulb]]></category>
		<category><![CDATA[Middle East Nuclear Growth]]></category>
		<category><![CDATA[Mining with Bacteria]]></category>
		<category><![CDATA[Natural Gas Benefits Overstated]]></category>
		<category><![CDATA[New-Old Electric Motors]]></category>
		<category><![CDATA[Nikola Tesla's Electric Engine]]></category>
		<category><![CDATA[The C. F. L. Mercury Myth]]></category>
		<category><![CDATA[The Thorium Fuel Cycle]]></category>
		<category><![CDATA[Thorium vs Uranium Power]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2260</guid>
		<description><![CDATA[By Harry {doc} Babad, © Copyright 2011, All Rights Reserved. Introduction Note, many of the technologies I share are in various stage of first, development, and are often far from being a commercial success. Their inventors and supporters still have to prove that they are reliable, durable and scalable, Remember There Ain’t No free Lunch and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2260&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Harry {doc} Babad, © Copyright 2011, All Rights Reserved. <a href="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif"><img class="alignright size-full wp-image-151" title="Gaiea" src="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif?w=614" alt=""   /></a></p>
<h3>Introduction</h3>
<p>Note, many of the technologies I share are in various stage of first, development, and are often far from being a commercial success. Their inventors and supporters still have to prove that they are reliable, durable and scalable, Remember There Ain’t No free Lunch and silver bullets too often turn to lead.</p>
<p>When and if you Google them in depth, you will find studies saying they are capable of being commercialized and often as many other studies that are more skeptical because there is no easy way to for them into our systems.</p>
<p>I always, as 75 year old cynic, find it appropriate, to step back as I read and WIIFT – No it’s not something new to smoke; just the compulsion to ask <em>what’s in it for them</em>. It’s okay to have a hidden agenda, but agenda’s too hidden discomfort me. In addition, most have no relationship to solving the problem that is being bragged about.</p>
<p>I know, perhaps even truly believe, is this. For green energy related items, if we put a simple price (tax) on carbon (greenhouse gases) and gave out no subsidies, these new technologies would have a better chance to blossom. With American ingenuity, Indian and Chinese too, thousands more ideas would come out of innovators’ garages. America still has the best innovation culture in the world. But we need better policies to nurture it, better infrastructure to enable it and more open doors to bring others here to try it.</p>
<p>Remember, conditions, both technical and geopolitical continuously change – So if you’ve made up your mind about either the best way to go, or about its all a conspiracy, move on to the next article in our blog. Today’s favorite is tomorrow unintended consequence. However, that’s better than sticking one’s head in the sand or believing in perpetual motion<em>.</em> Remember, <em>there’s no free lunch</em> and as a taxpayer and consumer you must always end up <em>paying the piper</em>!</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p align="center"><em>Titles, As Usual, in No Formal Order, for the New Snippets and Topics</em><em></em></p>
<ul>
<li>Abu Dhabi Plans to Go Nuclear — The UAE capital, undaunted by Fukushima, says it will proceed with plans for a civilian reactor</li>
<li>Climate Benefits of Natural Gas May Be Overstated</li>
<li>Vertical Farming in the Windy City and Elsewhere</li>
<li>Food vs. Fuel, Redux: The Biofuel Dilemma</li>
<li>Electric Motors — Nikola Tesla&#8217;s Revenge</li>
<li>Rocks on The Menu — Mineral-munching bugs to extract metals</li>
<li>Climate Change – It’s Complicated, But It’s Real</li>
<li>Would You Buy A $40 Light Bulb and Other Lighting Options</li>
<li>The Thorium Fuel Cycle is Catching On</li>
<li>QUOTE de Mois — Correlation is NOT Necessarily Causation</li>
</ul>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3><span style="color:#000000;"><a href="http://www.businessweek.com/print/magazine/content/11_15/b4223062765474.htm"><span style="color:#000000;">Abu Dhabi Plans to Go Nuclear</span></a></span></h3>
<h4>— The UAE capital, undaunted by Fukushima, says it will proceed with plans for a civilian reactor</h4>
<p>Even as radiation leaks from crippled plants at Fukushima, <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image1.jpg"><img class="alignright size-full wp-image-2261" title="9-2011-image1" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image1.jpg?w=614" alt=""   /></a> countries from China to the Middle East are forging ahead with nuclear power. On Mar. 28, Abu Dhabi confirmed it would proceed with plans for a civilian reactor despite the Japan disaster. &#8220;It&#8217;s a technology we should bring to the region,&#8221; said Abdulla Saif al-Nuaimi, director general of Abu Dhabi Water &amp; Electricity Authority, at the Arabian Power &amp; Water Summit. Nuclear generation remains the most realistic option, says Jarmo Kotilaine, chief economist at National Commercial Bank in Saudi Arabia: &#8220;It&#8217;s cost competitive, addresses some of the environmental risks involved in burning crude, and can be built on a large scale.&#8221;</p>
<p>Power demand in Abu Dhabi is rising at about 10 percent a year, and nuclear energy is necessary to help make up for a lack of natural gas to burn in new generators, says al-Nuaimi: &#8220;With a shortage of natural gas here, we need to find other ways to produce power.&#8221; Plans are for a reactor to be operational in 2017.</p>
<p>Efforts to increase power from sources such as solar energy aren&#8217;t likely to be sufficient to meet demand. The sheikdom wants to generate about 7 percent of its power from renewable energy by 2020. That would require 1,500 megawatts from projects such as wind and solar plants, says Bruce Smith, an adviser to the Abu Dhabi Water &amp; Electricity Authority.</p>
<p><strong>The bottom line: </strong>Far from backing away from nuclear power, Abu Dhabi plans to build its first civilian nuclear plant to meet rising energy demand.</p>
<p><em>Folks, this is about power for the people (homes) industry, desalinization, and of course ultimately electric cars… read the rest of the article. </em></p>
<p align="right">Anthony DiPaola, Bloomberg Business Week, March 31, 2011.</p>
<p><em>PS:</em><a href="http://ncaastrategies.com/utopia/topic/42568-6-more-arab-states-announce-plans-to-go-nuclear/"> 6 More Arab States Announce Plans To Go Nuclear</a>. The countries involved were named by the International Atomic Energy Agency (IAEA) as Algeria, Egypt, Morocco and Saudi Arabia. Tunisia and the UAE have also shown interest&#8230;</p>
<p><a href="http://analysis.nuclearenergyinsider.com/industry-insight/nuclear-momentum-accelerates-mena">Nuclear momentum accelerates in MENA</a> [Middle East and North Africa<strong>]</strong>, <em>Nuclear</em> Industry Insight, 11 August 2011</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3><span style="color:#000000;"><a href="http://www.propublica.org/article/natural-gas-and-coal-pollution-gap-in-doubt#methane_correx"><span style="color:#000000;">Climate Benefits of Natural Gas May Be Overstated</span></a></span></h3>
<p><span style="text-decoration:underline;">Pro Publica Fracking Background Introduction</span></p>
<p>The country’s push to find clean domestic energy has zeroed in on natural gas, but cases of water contamination have raised serious questions about the primary drilling method being used. Vast deposits of natural gas, large enough to supply the country for decades, have brought a drilling boom stretching across 31 states. The drilling technique being used, called hydraulic fracturing, shoots water, sand and toxic chemicals into the ground to break up rock and release the gas. The Environmental Protection Agency has <a href="http://www.propublica.org/article/buried-secrets-is-natural-gas-drilling-endangering-us-water-supplies-1113">declared the process to be safe</a>, but water contamination has been reported in more than a thousand places where drilling is happening. Gas companies, exempt from federal laws protecting water supplies, may conceal the identities of their chemicals as trade secrets, making it <a href="http://www.propublica.org/feature/natural-gas-drilling-what-we-dont-know-1231">difficult to determine</a> the cause of contamination.</p>
<p>The EPA is now conducting <a href="http://www.propublica.org/article/epa-launches-national-study-of-hydraulic-fracturing">a deeper study</a> of the drilling, New York State has <a href="http://www.propublica.org/article/new-york-puts-brakes-on-drilling-in-nyc-watershed-clears-way-for-upstate-we">blocked drilling</a> in New York City’s watershed, and lawmakers are pushing for closer oversight of the industry. The industry &#8212; in the form of millions of dollars spent on lobbying, a slew of court cases, and a robust public relations campaign &#8212; <a href="http://www.propublica.org/article/energy-industry-sways-congress-with-misleading-data-708">is pushing back</a>.</p>
<p>&nbsp;</p>
<p><span style="text-decoration:underline;">Abstracted From Abrahm Lustgarten’s Article </span></p>
<p>The United States is poised to bet its energy future on natural gas as a clean, plentiful fuel that can supplant coal and oil. But new research by the Environmental Protection Agency—and a growing understanding of the pollution associated with the full “life cycle” of gas production—is casting doubt on the assumption that gas offers a quick and easy solution to climate change.</p>
<p>Advocates for natural gas routinely assert that it produces 50 percent less greenhouse gases than coal and is a significant step toward a greener energy future. But those assumptions are based on emissions from the tailpipe or smokestack and don’t account for the methane and other pollution emitted when gas is extracted and piped to power plants and other customers.</p>
<p style="text-align:left;">The EPA’s new analysis doubles its previous estimates for the amount of methane gas that leaks from loose pipe fittings and is vented from gas wells, drastically changing the picture of the nation’s emissions that the agency painted as recently as April. Calculations for some gas-field emissions jumped by several hundred percent. Methane levels from the hydraulic fracturing of shale gas were 9,000 times higher than previously reported.</p>
<p style="text-align:left;" align="right"><em>There’s a whole lot more information on fracking and the potential of environmental damage vs the use of home ‘drilled’ nominally low cost hydrocarbons with the lowest potential greenhouse emissions. The detailed reader comments are also information full, I call them to your attention.<br />
</em></p>
<p align="right"><em>By </em><a href="http://www.propublica.org/site/author/Abrahm_Lustgarten/"><em>Abrahm Lustgarten</em></a><em>  </em><em>Pro Publica, Jan. 25, 2011</em></p>
<p><em> </em></p>
<p align="center"><strong>A Few Interesting Fracking Related References</strong></p>
<p><em>Keep in mind there’s a wart on fracking fact sheets, but until the peer reviewed R&amp;T and characterization is done, both side are shooting PR loaded blanks and media pyrotechnics. Doc!</em></p>
<p><a href="http://en.wikipedia.org/wiki/Hydraulic_fracturing">Hydraulic Fracturing</a>, Wikipedia, 2011</p>
<p><a href="http://www.earthworksaction.org/FracingDetails.cfm">Hydraulic Fracturing 101</a>, Earthworks, an Environmental Blog,Undated but ca. 2006</p>
<p><a href="http://www.propublica.org/documents/item/epa-greenhouse-gas-emissions-reporting-from-the-petroleum-and-natural-gas-i">Greenhouse Gas Emissions Reporting from the Petroleum and Natural Gas Industry</a> &#8211; The latest emissions tally from the EPA (November 2010)</p>
<p><a href="http://www.nytimes.com/gwire/2011/05/13/13greenwire-baffled-about-fracking-youre-not-alone-44383.html?pagewanted=all">Baffled About Fracking? You&#8217;re Not Alone</a>, By Mike Soraghan of <a href="http://www.greenwire.com/">Greenwire</a> Published: May 13, 2011; Source — The New York Times</p>
<p><a href="http://www.hydraulicfracturing.com/Pages/information.aspx">About Hydraulic Fracturing </a> – Facts by Chesapeake Energy Company, April 2011</p>
<p><a href="http://propublica.s3.amazonaws.com/assets/docs/EPA__US-GHG-Inventory-2010_Reportf.pdf">Inventory of U.S. Greenhouse Gas Emissions and Sinks</a> &#8211; An April 2010 EPA greenhouse gas report, now outdated</p>
<p><a href="http://www.propublica.org/documents/item/cornell-university-3-2010-draft-report-on-greenhouse-gas-emissions-from-hyd">Preliminary Assessment of the Greenhouse Gas Emissions from Natural Gas Obtained by Hydraulic Fracturing</a> &#8211; Cornell University</p>
<p style="text-align:left;" align="center"><a href="http://www.propublica.org/documents/item/comparative-life-cycle-air-emissions-of-coal-domestic-natural-gas-lng-and-s">Comparative Life-Cycle Air Emissions of Coal, Domestic Natural Gas, LNG, and SNG for Electricity Generation</a> &#8211; Paulina Jaramillo, Carnegie Mellon University<strong><br />
</strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3>Vertical Farming in the Windy City <em>and Elsewhere</em><strong></strong></h3>
<p><strong> </strong>Vertical farming is a concept that argues that it is economically and environmentally viable to cultivate plant or animal life within skyscrapers, or on vertically inclined surfaces. Despite contemporary notions of vertical faming, there is a long history of &#8216;vertical farming&#8217; that can be divided into three categories. Check out the Wikipedia article for more background information.</p>
<p><em>Doc sez, this is sort of a left hand take on Robert Heinlein’s teen-readers book, “Farmer in the Sky” which was doomed because space became an unfocused virtual frontier rather than a goal for mankind. The current concepts of vertical farming seem more appropriate to our times. Reality, alas, populations grow become urbanized, farmland gets destroyed by population growth and climate changes or just plain natural forces become more destructive. Vertical (upwards) growth in urban populations is a fact – Megacroplis’ are on their way… It’s either urban sprawl or up in the wide blue yonder’. Therefore, they appear much more relevant to urban ecology and living modes.</em></p>
<p><em>A WAG scenario — New York City as a breadbasket of the East Coast — How? I suggest that the combination of vertical farming, nuclear powered water desalination, and all combustible residues be converted to biodiesel and electricity for car.  It would take a combination of a Bloomberg a Bill Gates and </em>T. Boone Pickens to kick start this, although it might be faster if done in the Middle East, say by Abu Dhabi.<em></em></p>
<p>In Chicago’s meatpacking district, developer John Edel <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image2.jpg"><img class="alignright size-full wp-image-2262" title="9-2011-image2" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image2.jpg?w=614" alt=""   /></a> hopes to reinvent the urban<strong> </strong>food supply with a $4 million, four-story indoor produce and fish farm called <a href="http://www.plantchicago.com/?page_id=2">The Plant</a>. Edel and his colleagues have already planted 3,000 square feet of hydroponically grown lettuce and other greens and installed 1,400 tilapia <em>fish</em> in tanks.</p>
<p>The fish farm and gardens are connected by a 9,000-gallon water circulation system: Wastewater from the tilapia tanks, rich in nitrogen-based nutrients, flows into the hydroponic beds, where it irrigates and fertilizes the lettuce. The crop roots then filter that water before it returns to the fish. Edel and student collaborators at the Illinois Institute of Technology are also building a custom-designed digester that will turn the project’s leftover vegetable and fish waste into fertilizer and biogas to power a heating, cooling, and 280-kilowatt electrical system. The Plant will offer its first bounty for sale this fall, supplying greens, mushrooms, and tilapia to farmers’ markets and local restaurants.</p>
<p>The Plant is part of a growing push to bring farms into metropolitan areas. Small-scale, multilevel farms have sprung up in Britain and Wisconsin, and an organization called <a href="http://www.growingpower.org/blog/archives/770">Growing Power hopes to break ground on a five-story project in Milwaukee within 18 months</a>. Such efforts make fresh food more accessible to inner-city residents and could help to reduce the cost and energy of shipping produce. According to an analysis from Iowa State University, conventional produce travels about 1,500 miles on average to its destination, causing the release of 5 to 17 times more carbon dioxide than food from regional and local farms.</p>
<p>Stan Cox, a plant-breeding researcher at the Land Institute in Kansas, points out that while leafy vegetables grow fairly well indoors, staples like wheat and corn require far more light energy. But Columbia University ecologist <a href="http://www.mailman.columbia.edu/our-faculty/profile?uni=ddd1">Dickson Despommier</a> says large-scale projects can still have a big impact: He calculates that a 50-story building occupying one New York City block could feed 50,000 people.</p>
<p>By Christina Couch, for Discover Magazine, May 2011.</p>
<p>&nbsp;</p>
<p align="center"><strong>Other Related References</strong></p>
<p> <a href="http://en.wikipedia.org/wiki/Vertical_Farming">Vertical farming, Wikipedia, 2011</a></p>
<p><a href="http://www.time.com/time/magazine/article/0,9171,1865974,00.html">Vertical Farming</a> <em>Studies in El Paso</em> By <a href="http://www.time.com/time/letters/email_letter.html"><strong>BRYAN WALSH</strong></a><strong> </strong>Thursday, Dec. 11, 2008, TIME Magazine.</p>
<p><a href="http://www.economist.com/node/17647627">Vertical Farming &#8211; Does it really stack up? The Economist</a>, Print Edition, December 9, 2010.</p>
<p><a href="http://thewere42.wordpress.com/2009/11/16/growing-skyscrapers-the-rise-of-vertical-farms-this-time-from-scientific-american/">Growing Skyscrapers: The Rise of Vertical Farms</a>, By <a href="http://www.scientificamerican.com/article.cfm?id=the-rise-of-vertical-farms">Dickson Despommier for Scientific American</a>. November 16, 2009.</p>
<p><a href="http://www.spiegel.de/international/zeitgeist/0,1518,775754,00.html">Can Urban Agriculture Feed a Hungry World?</a> By Fabian Kretschmer and Malte E. Kollenberg, The Spiegel Online, July 22, 2011.</p>
<p><a href="http://www.climate.org/climatelab/Vertical_Farming">Vertical Farming — Advantages – Disadvantages – Barriers</a>, Climate Lab Wiki, 2010.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - -</strong></p>
<h3><span style="color:#000000;"><a href="http://theenergycollective.com/geoffrey-styles/51559/food-vs-fuel-redux?utm_source=tec_newsletter&amp;utm_medium=email&amp;utm_campaign=newsletter"><span style="color:#000000;">Food vs. Fuel, Redux: The Biofuel Dilemma</span></a></span><strong></strong></h3>
<p><strong> </strong></p>
<div align="center">
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="424"><strong><em>A Straight Paste</em></strong> – No ad-libs, just (err) food for Thought The references are click through if you want more to stratify your curiosity cravings. – Doc.</td>
</tr>
</tbody>
</table>
</div>
<p>&nbsp;</p>
<p>Today&#8217;s Washington Post includes a noteworthy <a href="http://www.washingtonpost.com/wp-dyn/content/article/2011/02/10/AR2011021006323.html">opinion piece </a>from <a href="http://www.princeton.edu/%7Etsearchi/">Tim Searchinger </a>of Princeton University concerning the impact of expanding biofuel production on global food prices and availability. Food vs. fuel competition <a href="http://energyoutlook.blogspot.com/2008/04/food-vs-fuel-revisited.html">made headlines </a>in 2007 and 2008 but then subsided during the recession and financial crisis. This year, with global crop yields down and food demand up, and with food-derived biofuel production at record levels, the issue has returned. The relationship between biofuel output and food prices is certainly complex, but it is significant, particularly for those who spend much of their incomes on unprocessed grains and vegetable oils. And both population and biofuels demand will continue to increase from today&#8217;s levels.</p>
<p>You might recall Mr. Searchinger&#8217;s name in conjunction with a <a href="http://energyoutlook.blogspot.com/2008/02/ethanol-smoking-gun.html">high-profile scientific paper </a>in 2008 casting doubt on the value of crop-based biofuels in reducing greenhouse gas emissions. &#8220;Global land use impact&#8221; entered the lexicon of environmental consequences as a result of <a href="http://www.sciencemag.org/content/319/5867/1238.abstract#aff-1">his and his collaborators&#8217; work</a>, and it had a significant influence on the EPA&#8217;s updated <a href="http://www.epa.gov/otaq/fuels/renewablefuels/regulations.htm">Renewable Fuel Standard (RFS) regulation</a>, even if the agency&#8217;s final version of the rule softened its application in constraining the least efficient corn ethanol facilities. So you might say that Mr. Searchinger is no great friend of first-generation biofuels in general. However, the issue that he&#8217;s writing about today, while no less controversial in energy and policy circles, is much more straightforward to understand than the carbon debt of newly cultivated cropland.</p>
<p>As he notes in his op-ed, numerous studies have demonstrated a link between biofuel production and food prices in 2007-8, even in the US, where the basic inputs subject to this kind of price competition constitute a small portion of the retail prices of the <a href="http://www.ft.com/cms/s/0/bd3aa372-3517-11e0-9810-00144feabdc0.html?ftcamp=rss&amp;ftcamp=crm/email/2011211/nbe/GlobalBusiness/product#axzz1DeoOJ1fe">processed foods we eat</a>. It affects US food price inflation, but mainly indirectly through routes such as raising the price of livestock feed. Among others, the <a href="http://www.cbo.gov/ftpdocs/100xx/doc10057/04-08-Ethanol.pdf">Congressional Budget Office</a> looked at this issue in 2009. Most of the studies I saw also showed a significant effect on food prices from rising energy prices, another phenomenon that has <a href="http://www.eia.doe.gov/dnav/pet/hist/LeafHandler.ashx?n=pet&amp;s=rclc1&amp;f=w">reappeared </a>in the last year. However one interprets all this, it is inescapable that a bushel of corn turned into ethanol is not available for export to countries that are experiencing a combination of <a href="http://online.wsj.com/article/SB10001424052748704132204576135994059303616.html?mod=djemITPA_h">rising demand and disappointing harvests</a>.</p>
<p>As long as US harvests were increasing at a rate that <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image3.jpg"><img class="alignright size-full wp-image-2263" title="9-2011-image3" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image3.jpg?w=614" alt=""   /></a> kept pace with the growth of <a href="http://www.ethanolrfa.org/pages/statistics#A">ethanol output</a>, thanks to <a href="http://www.nass.usda.gov/Charts_and_Maps/Field_Crops/cornac.asp">increased cultivation</a> and <a href="http://www.nass.usda.gov/Charts_and_Maps/Field_Crops/cornyld.asp">better yields</a>, that <a href="http://energyoutlook.blogspot.com/2010/08/corn-nation.html">wasn&#8217;t a zero sum game</a>. Until recently, the corn that went into making ethanol was corn that might not otherwise have been grown. But in a year like this one, when annual ethanol consumption set to rise <a href="http://www.epa.gov/otaq/fuels/renewablefuels/420f10056.htm#3">by another billion gallons </a>while the corn harvest is <a href="http://www.ers.usda.gov/data/feedgrains/Table.asp?t=04">5% smaller </a>than the previous year&#8217;s, something has to give. In fact, the US Department of Agriculture expects that ethanol plants will take <a href="http://www.ers.usda.gov/data/feedgrains/Table.asp?t=31">40% of this season&#8217;s crop</a>, compared to just 23% in the 2007-8 &#8220;market year.&#8221; That exerts a lot more pressure on <a href="http://www.cmegroup.com/trading/agricultural/grain-and-oilseed/corn.html">corn prices</a>, which are pushing $7 per bushel for the first time <a href="http://futures.tradingcharts.com/chart/CN/M">since 2008</a>.</p>
<p>If anything, the conclusion of Mr. Searchinger&#8217;s op-ed downplayed the risks ahead. With output from the nascent cellulosic ethanol industry still minuscule, the EPA will be under tremendous pressure to allow corn ethanol to continue to expand beyond its current 15 billion gallon per year limit <a href="http://www.ethanolrfa.org/pages/renewable-fuels-standard">under the RFS</a>. That&#8217;s one reason the industry was pushing so hard to increase the maximum allowable percentage of ethanol in gasoline from 10% to 15%; it needs that headroom to continue expanding output beyond last year&#8217;s <a href="http://www.ethanolrfa.org/pages/statistics#B">13 billion gallons</a>. At 20 billion gallons per year&#8211;a quantity that I heard one USDA expert suggest several years ago was achievable&#8211;ethanol would require the equivalent of 55% of <a href="http://www.nass.usda.gov/Charts_and_Maps/Field_Crops/cornprod.asp">2009-10&#8242;s record </a>US corn crop. It&#8217;s hard to envision that happening without concerns about food vs. fuel rising to a much higher pitch.</p>
<p align="right">Posted February 11, 2011 by <a href="http://theenergycollective.com/user/29898"><strong>Geoffrey Styles</strong></a> for the Energy Collective Blog<strong></strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3> Electric Motors — Nikola Tesla&#8217;s Revenge</h3>
<h4><strong></strong><strong>  </strong>— The car industry’s effort to reduce its dependence on rare-earth elements has prompted a revival<strong> </strong></h4>
<p><strong> </strong>ONCE again, worrywarts are wringing their hands over possible shortages of so-called “critical materials” crucial for high-tech industries. In America the Department of Energy is fretting about materials used to manufacture wind turbines, electric vehicles, solar cells and energy-efficient lighting. The substances in question include a bunch of rare-earth metals and a few other elements, which—used a pinch here, a pinch there—enhance the way many industrial materials function.</p>
<p>It is not as though the rare-earth elements—scandium, yttrium and lanthanum plus the 14 so-called lanthanides—are all that rare. Some are as abundant as nickel, copper or zinc. Even the two rarest (thulium and lutetium) are more abundant in the Earth’s crust than gold or platinum.</p>
<p>A decade ago America was the world’s largest producer of rare-earth metals. But its huge open-cast mine at Mountain Pass, California, closed in 2002—a victim mainly of China’s drastically lower labor costs. Today, China produces 95% of the world’s supply of rare-earth metals, and has started limiting exports to keep the country’s own high-tech industries supplied.</p>
<p>The rare-earth element that other industrial countries worry about most is neodymium. It is the key ingredient of super-strong permanent magnets. Over the past year the price of neodymium has quadrupled as electric motors that use permanent magnets instead of electromagnetic windings have gained even wider acceptance. Cheaper, smaller and more powerful, permanent-magnet motors and generators have made modern wind turbines and electric vehicles viable.</p>
<p>That said, not all makers of electric cars have rushed to embrace permanent-magnet motors. The Tesla Roadster, an electric sports car based on a Lotus Elise, uses no rare-earth metals whatsoever. Nor does the Mini-E, an electric version of BMW’s reinvention of the iconic 1960s car. Meanwhile, the company that pioneered much of today’s electric vehicle technology, AC Propulsion of San Dimas, California, has steered clear of permanent-magnet motors.</p>
<p>Clearly, a number of manufacturers think <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image4.jpg"><img class="alignright size-full wp-image-2264" title="9-2011-image4" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image4.jpg?w=614" alt=""   /></a> the risk of relying on a single source of rare-earth metals is too high.</p>
<p>Read on about Toyota’s efforts to replace rare earths in it’s electric motors and the re-discovery of tech ology invented by Nicolas Tesla an American inventor, back in 1888. Check out Tesla’s own automobile A Tesla Engine Drive Piece Arrow. In addition the article also discussed the topic “Who needs a gearbox” in an electric car.</p>
<p><a href="http://www.economist.com/node/18750574/"><strong>The Economist</strong></a><strong>, </strong>Technology Quarterly, Jun 2nd 2011.</p>
<p><a href="http://en.wikipedia.org/wiki/Tesla_Roadster">Tesla Roadster</a>, Wikipedia 2011</p>
<p style="text-align:left;" align="center"><a href="http://en.wikipedia.org/wiki/Tesla_electric_car">Tesla Electric Car</a>, Wikipedia 2011<strong><br />
</strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3><strong> </strong><span style="color:#000000;"><a href="http://www.economist.com/node/18304236/"><span style="color:#000000;">Rocks On The Menu</span></a></span><strong></strong></h3>
<h4><strong> </strong>— High commodity prices have encouraged the use of mineral-munching bugs to extract metals from waste or low-grade ore.</h4>
<p>&nbsp;</p>
<p><strong>Bioleaching</strong> is the extraction of specific metals from <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image5.jpg"><img class="alignright size-full wp-image-2265" title="9-2011-image5" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image5.jpg?w=614" alt=""   /></a> their ores through the use of living organisms. This is much cleaner than the traditional heap leaching using cyanide. Bioleaching is one of several applications within biohydrometallurgy and several methods are used to recover copper, zinc, lead, arsenic, antimony, nickel, molybdenum, gold, silver, and cobalt.</p>
<p>EVEN the sleekest gadget depends on the mucky business of digging stuff out of the ground. Mobile phones and computers use copper for their wiring and rely on cobalt, germanium, lithium, nickel, platinum and tantalum for other components. Electric motors need magnets made of “rare earth” elements such as neodymium. But rising metal prices and China’s tightening grip on supplies of rare-earth elements (it accounts for 97% of production) have heightened the appeal of finding other sources of supply. The result is growing interest in the use of rock-eating bacteria to extract metals from low-grade ores, mining waste or industrial effluent.</p>
<p>Rock-eating bacteria such as <em>Acidithiobacillus </em>and <em>Leptospirillum </em>are naturally occurring organisms that thrive in nasty, acidic environments. They obtain energy from chemical reactions with sulfides, and can thus accelerate the breakdown of minerals. Base metals such as iron, copper, zinc and cobalt occur widely as sulfides, and more valuable metals such as gold and uranium are also present in the same bodies of ore. With a little help from the mineral-munchers, these metals can be released in a process called bioleaching.</p>
<p>This approach has its pros and cons. To recover large quantities of metals quickly from ores with a high metal content, smelting remains the most profitable route. Bioleaching is slower, but it is also cheaper, making it well suited for treating ores and mining wastes with low metal concentrations. It is also generally cleaner. Material containing poisonous elements such as arsenic is unsuitable for smelting because of the risk of pollution.</p>
<p>For many years bioleaching has been used to recover gold from ores that are hard to break down using heat treatment (known as “roasting”). The bacteria are set to work in huge stirred tanks, called bioreactors, containing ground-up rocks and dilute sulfuric acid. The bacteria change one form of iron found within the ore (ferrous iron) to another (ferric iron) and tap the energy released. In acidic solutions ferric iron is a powerful oxidizing agent. It breaks down sulfide minerals and releases any associated metals.                       …</p>
<p>Interest in bioleaching shows no sign of abating. As part of a European project called ProMine, geologists are mapping Europe’s mineral resources to a depth of 5km (3.1 miles) in an effort to stimulate the mining industry and reduce dependence on imports. Integral to the project is further development of biological metal-recovery methods. In Europe, at least, mineral-munching microbes can expect long-term employment—and lunch.</p>
<p>Read on — There’s Lot’s more!</p>
<p align="center"><strong>Bioleaching References</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Bioleaching">Bioleaching</a>, Wikipedia 2011.</p>
<p><a href="http://www.talvivaara.com/files/talvivaara/Presentations/Talvivaara_Technical_Seminar_London_May_Presentation.pdf">What is Bioleaching</a> — A tutorial, Talvivaara Publications. May 6, 2010.</p>
<p><a href="Bioleaching%2520technology%2520in%2520minerals%2520processing%2520John%2520Neale">Bioleaching technology in minerals processing</a>, By John Neale, BioMine Wiki, September 2006</p>
<p style="text-align:left;" align="center"><a href="http://www.innovateus.net/earth-matters/what-bioleaching">What is Bioleaching?</a> – Includes mechanisms &#8211; InovateUS Blog, 2011.<strong><br />
</strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -<br />
</strong></p>
<h3 style="text-align:left;" align="center"><a href="http://theenergycollective.com/barrybrook/51594/climate-change-it-s-complicated-it-s-real"><span style="color:#000000;">Climate Change – It’s Complicated, But It’s Rea</span><strong>l</strong></a><strong></strong></h3>
<p><strong> </strong></p>
<p>So, the engineers at GPS mission control need to use Einstein’s relativistic theories to make sure your iPhone tells you precisely where you are, whenever you want to know. Similarly, neither Newton’s or Einstein’s equations allow scientists to properly predict the subatomic interactions within the electronics of satellites or iPhones. For that, you need to reference the weird world of quantum mechanics.</p>
<p>Each of these model systems – Newtonian, Einsteinian <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image6.jpg"><img class="alignright size-full wp-image-2266" title="9-2011-image6" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image6.jpg?w=614" alt=""   /></a> and Quantum physics – produces some contradictory predictions, and gaps in understanding remain. The theories have not yet been unified, for instance, to the lament of Einstein and his successors.</p>
<p>Yet the vast majority of us – the average Joe and Josephine Public – are not confused or worried about GPS and iPhones, for the simple matter that we don’t try too hard to understand how they work. After all, it’s plain enough to our eyes, immediately and incontrovertibly, that they do! So we just accept it, like we do for most forms of technology.</p>
<p>Climate science is now treated rather differently, however. This is because although the stochastic and chaotic systems involved are, in their own way, just as complex as relativity and quantum theory, many people just don’t want to take the underpinning science and evidence for granted.</p>
<p>They WANT to know and understand this stuff (which is good, from a science education perspective), and their motivation usually comes about because they feel threatened by it, or guilty about it, or whatever. Dylan’s example of not wanting to be responsible for suffering poor people underscores the point.</p>
<p>Yet, at its core, much of the math, physics, chemistry, models, theory, and so on, which together make up the many fields of climate science, can be really difficult stuff. It takes a lot of learning time, and lots exposure to the many lines of scientific evidence and the general practice of doing science and dealing with uncertainty, to appreciate the complexities and nuances involved.</p>
<p>So when people don’t ‘get’ the science and are left confused by media sound bites, it’s typically because they haven’t got the time, experience or training to really grasp the interconnections, feedbacks and apparent contradictions.</p>
<p>The other obvious problem is that climate model forecasts are not tangible and deterministic – unlike the GPS or iPhone, there is no simple, repeatable test of whether they ‘work’ or not. Climate change is also not being painted on a ‘blank canvas’ – extreme weather has always been with us, for instance, so how to tell what can be attributed to natural versus human-caused effects?</p>
<p>It’s tough, no doubt about it, and there is a huge scientific effort dedicated to identifying the ‘fingerprints’ of human activity amongst the many ‘smudges’ caused by ever present natural influences on weather and climate.<strong> </strong>There’s more – click trough</p>
<p><em>Well we can always do the ostrich thing, or we can at least insist that our decision makers demonstrate a competency in the scientific method, and understand science is grey, and each new set of data changes our knowledge base. Our and their jobs are to do no evil (they Hippocratic oath), and be protective — Katrina and the Gulf Spill did not need to happen, and 8if you buy land in a flood plain w/o insurance tough — We neither evolved in a welfare state or a wimp-fare state, mankind kind got where they are now be out toughing nature, and all their enemies. </em></p>
<p align="right">Article by Barry Brook, The Energy Collective, Posted February 12, 2011.<strong><br />
</strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p align="center"><strong> </strong></p>
<h3 style="text-align:left;" align="center">Would You Buy A $40 Light Bulb and Other Lighting Options</h3>
<p align="center"><strong> </strong></p>
<p><em>Now don’t think I’m biased against politicians, trying to stem energy use growth, here and abroad. After all there are the folks who deny climate change, manmade or not, while sea levels rise and weather, for now and predicted for the next half-decade, worsens. They also gave us a 15% corn ethanol limit despite auto manufactures plea that that would corrode engines and lower overall fuel efficiency. It also continues raise food prices without doing much, if anything about green house gasses. Another case of WIIFT.</em></p>
<p><em>However, life would be so much simpler if a carbon tax, for light bulbs as a low risk example, were implemented.  Tax these by wattage, assigned to all new light bulbs sold starting in 2012 or 2013; obviously much lower for  not to compact fluorescents, LEDs or other low energy alternatives. </em></p>
<p><em>The tax rate should be gradated say starting at 10-15% per bulb and rising to the prohibitive level in ca 10 years, increasing the way auto efficiency standards do. This would allow the industry to accommodate the change, allow individuals an alternative on what lights they want to use and how energy efficient. As I’ll share in the next column, the Scandinavian Countries have effectively started doing so, with none of the awful consequences preached by our technically undereducated lobbyist bought, politicians.</em></p>
<p><em>Furthermore, The US Government’s aim to ‘outlaw {aka phase out} incandescent bulbs, starting with 100 Watt models in 2012 and they will be mostly gone by 2014, will just create a black market. It’s done so for every other government introduced PROHIBITION around the world. </em></p>
<p><em>I’ve wondered whether once Europe and perhaps China adopt more stringent green house gas rules, perhaps by adopting a workable, a gradually imposed and flexible carbon tax, whether they could impose a VAT on US products? None of my economist-international scholar friends know how the Europeans (e.g., </em><em>Court of Justice of the European Free Trade Association States</em><em>) </em><em>would deal with America exporting pollution, albeit indirectly?</em></p>
<p><em>Now the rest of the story…</em></p>
<p align="center">
<h3 style="text-align:left;" align="center"><span style="color:#000000;"><a href="http://theenergycollective.com/marcgunther/51778/would-you-buy-40-light-bulb"><span style="color:#000000;">Would You Buy A $40 Light Bulb?</span></a></span></h3>
<h4 style="text-align:left;" align="center"><strong>— </strong>Maybe you should.</h4>
<p>This week, Philips Lighting said that its Ambient LED 12.5 watt bulb <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image7.jpg"><img class="alignright size-full wp-image-2267" title="9-2011-image7" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image7.jpg?w=614" alt=""   /></a> — which, just to confuse you, is also sold under the Philips Endura LED brand — has qualified for an EPA’s Energy Star rating. That means that it’s an efficient and, quite possibly cost-effective alternative to the 60-watt bulb, even with a $39.97 list price at Home Depot. &lt;<em>No price listed for Amazon.com yet… jest you all wait!&gt;</em></p>
<p>Here’s how the math works, at least according to Philips: A conventional 60-watt bulb lasts about 1,000 hours, uses 60 watts of electricity (duh) and costs $180 to run for 25,000 hours. The LED equivalent lasts 25,000 hours (nearly three years if you left it on 24/7), uses 12.5 watts and costs $37.50 to run for 25,000 hours.</p>
<p>That assumes electricity costs of 12.5 cents/kwh, slightly higher than average across the US but a lot less that you pay in high-cost states like California. Practically a bargain, no? <em>{Doc Sez Perhaps?}</em></p>
<p>The Energy Star rating matters because it means that the bulb, which is evidently the first LED bulb in its category to qualify, can earn you a rebate from your local utility. There’s more on the rebates here from the U.S. Department of Energy. Each state has its own rebate program, forms to fill out, etc. Fun. Better news is that for now Phillips is offering a $10 cash rebate on the bulb.</p>
<p>There’s more — it’s not a silver bullet, but this makes it easier to see the light and lower overall energy costs.</p>
<p align="right">Posted February 15, 2011 by <a href="http://theenergycollective.com/user/3387"><strong>Marc Gunther</strong></a> for The Energy Collective</p>
<h4 style="text-align:left;" align="center"><span style="text-decoration:underline;">Once-Scorned C. F. L. Light Bulbs Are Advancing</span><strong></strong></h4>
<p>–It’s amazing how technology improves given an incentive, and profit has always been a better stick, in America, than regulation, when it is written intelligently. No WIIFT!</p>
<p>In my <a href="http://www.nytimes.com/2011/08/11/garden/almost-time-to-change-the-light-bulb.html?ref=thepragmatist">Pragmatist column</a> in Thursday’s Home section, I describe the latest advancements in energy-efficient light bulbs in response to the Energy Independence and Security Act of 2007, part of which takes effect next January. Much of that discussion focuses on so-called C.F.L.’s, or compact fluorescent light bulbs. While they have improved in recent years, the technology continues to be hampered by worries about its environmental impact in landfills because C.F.L.’s contain mercury.</p>
<p>Environmentally minded consumers who hope to shave a few dollars from their electric bills by using C.F.L.’s can take solace in the fact that some groups consider C.F.L.’s greener than the bulbs they replace. In 2008, for instance, the Natural Resources Defense Council published <a href="http://www.nrdc.org/energy/cfl.pdf">a paper</a> suggesting that C.F.L.’s do less environmental harm than standard incandescent bulbs.  For example, C.F.L.’s require one-quarter the energy from coal-fired power plants that incandescents do, the council wrote. If all consumers changed to C.F.L.’s, the group argued, those plants would send less pollution into the air. The council’s paper cites research by the Northeast Waste Management Officials’ Association into toxic waste levels from C.F.L.’s.</p>
<p>If you choose to buy fluorescents, you’ll still need to dispose of your old C.F.L.’s properly when they die or break. Home Depot and Lowe’s both accept C.F.L.’s for recycling, and you can find more information about disposal locations, among other topics, <a href="http://www.lamprecycle.org/%20and%20http://earth911.com/">here</a>.</p>
<p>Safety, of course, is another issue, since light bulbs are so easy to break. The amount of mercury contained in a C.F.L. is roughly equivalent to the amount of ink on the tip of a ballpoint pen and about one-fifth the amount in a watch battery, the council’s paper says. But the bulbs can leak mercury vapor when broken, so ventilation is important when cleaning a broken bulb, the council says in its paper. Some manufacturers now produce C.F.L.’s with protective coating; the <a href="http://www.homedepot.com/buy/lighting-fans/light-bulbs/commercial-electric/14-watt-60w-shatter-resistant-craft-light-39587.html">EcoSmart Shatter-Resistant C.F.L.</a> is one example.</p>
<p align="right">By <a href="http://green.blogs.nytimes.com/author/bob-tedeschi/">Bob Tedeschi</a>, For The New York Times, August 11, 2011</p>
<p align="right">
<p><strong>The New Law</strong> — “<a href="http://money.usnews.com/money/business-economy/articles/2007/12/19/faq-the-end-of-the-light-bulb-as-we-know-it">The End Of The Light Bulb As We Know It”</a> By <a href="http://money.usnews.com/topics/author/marianne_lavelle">Marianne Lavelle</a>, For US News And World Report December 19, 2007</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3 style="text-align:left;" align="center">Thorium Fuel Cycle</h3>
<h4 style="text-align:left;" align="center"><strong></strong><strong> </strong><strong>— </strong>In the beginning… India got it, now China is getting on board<strong></strong></h4>
<p>All of a sudden the pro nuclear professional media is asking the question <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image8.jpg"><img class="alignright size-full wp-image-2268" title="9-2011-image8" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image8.jpg?w=614" alt=""   /></a> “Thorium: the miracle cure for a new nuclear backbone? … And in case anyone asks, both Uranium and Thorium are Naturally-Occurring Radioactive Materials (NORM)</p>
<p>“You can run a civilization on thorium for hundreds of thousands of years, and it’s essentially free,” says Kirk Sorensen, former NASA engineer and one of today&#8217;s forward looking nuclear technologists. This week we look at the progress that has been made in developing thorium-based nuclear reactors, global stores, and why China and India believe this ‘miracle metal’ could be the next best thing.</p>
<p>Thorium versus Uranium — A tonne of thorium &#8211; the slow-decaying, slightly radioactive metal &#8211; produces as much energy as 200 tonnes of uranium, or 3,500,000 tonnes of coal. Besides being much cheaper, thorium is three times more abundant than uranium, so much that miners treat it as a nuisance. After all it is a radioactive by-product when they are digging up rare earth metals.</p>
<p>Unlike uranium, thorium is a low-carbon metal, and although not fissionable, it can be used as a nuclear fuel through breeding to fissile uranium-233 (U-233). Thorium decays its own hazardous waste and can expel the plutonium left by uranium reactors. Also, thorium cannot melt down and does not produce reliable fuel for bombs.</p>
<p>Both uranium and thorium are mined as ore and then detached from the rock, but thorium is four times more prevalent in Earth&#8217;s crust than uranium.</p>
<p>“Thorium has the potential to be the backbone of our energy future, and we need to move quickly towards it,” says Kirk Sorensen, a former NASA rocket engineer and now chief nuclear technologist at Teledyne Brown Engineering.</p>
<p>Typical nuclear power stations use uranium as their fuel source, but thorium reactors can offer greater safety, vastly reduced waste and much higher fuel efficiency. While only 0.7% of uranium’s energy is extractable, energy from thorium is 100% extractable.</p>
<p>“Once you start looking more closely, it blows your mind away. You can run a civilization on thorium for hundreds of thousands of years, and it’s essentially free. You don’t have to deal with uranium cartels,” says Sorensen.</p>
<p>The article goes on to discuss</p>
<ul>
<li>What if thorium was used to power nuclear reactors?</li>
<li>Economy leaders race to thorium</li>
<li>Locating the world’s thorium reserves (<em>aka the US and Australia</em>)<strong><br />
</strong></li>
</ul>
<p><em>By Heba Hashem, Middle East Correspondent, </em>Nuclear Energy Insider<strong>, </strong>February 17, 2011.</p>
<p><a href="http://analysis.nuclearenergyinsider.com/industry-insight/thorium-miracle-cure-new-nuclear-backbone?utm_source=http%3a%2f%2fcommunicator.nuclearenergyinsider.com%2flz%2f&amp;utm_medium=email&amp;utm_campaign=eBrief+nuclear+17+Feb+11&amp;utm_term=Thorium%3a+the+miracle+cure+for+a+new+nuclear+backbone&amp;utm_content=537963">http://analysis.nuclearenergyinsider.com/industry-insight/thorium-miracle-cure-new-nuclear-backbone?utm_source=http%3a%2f%2fcommunicator.nuclearenergyinsider.com%2flz%2f&amp;utm_medium=email&amp;utm_campaign=eBrief+nuclear+17+Feb+11&amp;utm_term=Thorium%3a+the+miracle+cure+for+a+new+nuclear+backbone&amp;utm_content=537963</a></p>
<p align="center"><strong>Other Thorium Fuel Cycle References</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Thorium_fuel_cycle">Thorium Fuel Cycle</a>, From Wikipedia, 2011.</p>
<p>John Ritch, World Nuclear Association: &#8220;<a href="http://analysis.nuclearenergyinsider.com/qa/john-ritch-world-nuclear-associationnuclear-waste-duty-governments">Nuclear Waste Is The Duty Of Governments</a>,&#8221;<strong> </strong>Nuclear Energy Insider,<strong> </strong>August 20, 2010.</p>
<p><a href="http://analysis.nuclearenergyinsider.com/industry-insight/academic-take-future-nuclear-energy">An Academic Take On The Future Of Nuclear Energy</a>, <em>By Elisabeth Jeffries, for the </em>Nuclear Energy Insider,<strong> </strong>October 4, 2010.</p>
<p><a href="https://netfiles.uiuc.edu/mragheb/www/The%20Fusion%20Fission%20Hybrid%20Thorium%20Fuel%20Cycle%20Alternative.pdf">The Fusion Fission Hybrid Thorium Fuel Cycle Alternative</a>, by Magdi Ragheb, University of Illinois, Feb 2010</p>
<p><a href="http://www.world-nuclear.org/info/inf62.html">About Thorium</a>, World Nuclear Association, March 2011.</p>
<p><a href="http://www.wired.com/magazine/2009/12/ff_new_nukes/all/1">Uranium Is So Last Century — Enter Thorium, the New Green Nuke</a>, By Richard Martin for Wired Magazine, December 21, 2009.</p>
<p><a href="http://theenergycollective.com/dan-yurman/64829/drive-build-thorium-reactor-prototype-launched-uk"><strong>Drive to Build Thorium Reactor Prototype Launched In U.K</strong></a><strong>., </strong>Posted September 8, 2011 by <a href="http://theenergycollective.com/user/3795">Dan Yurman</a> for The Energy Collective</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h3><span style="text-decoration:underline;">Endnotes</span></h3>
<p>Copyright Notice: Product and company names and logos in this review may be registered trademarks of their respective companies.</p>
<p>Some of the articles listed in this column are copyright protected – their use is both acknowledge and is limited to educational related purposes, which this column provides.</p>
<p>On occasion, where it irritates me, I change British spelling to the US alternative, but not for words like Tonne, which is a difference unit that the US Ton.</p>
<p><em><span style="text-decoration:underline;">Sources &amp; Credits</span></em><em>: </em> — Many of these items were found by way of the links in the newsletter <em>NewsBridge</em> <em>of ‘articles of interest’</em> to the national labs library technical and regulatory agency users. <em>NewsBridge</em> is electronically published by the Pacific Northwest National Laboratories, in Richland WA.  If using <em>NewsBridge</em> as a starting point, I follow the provided link to the source of the information and edit its content (mostly by shortening the details) for information for our readers. I also both follow any contained links, where appropriate, in the actual article, and provide you those references as well as those gleaned from a short trip to Google-land. Obviously if my source is a magazine or blog that the material I work with.</p>
<p>In addition, when copying materials that I cite, I do not fill the sourced ‘quoted’ words with quotation marks, the only place I keep quotes intact is where the original article ‘quotes’ another secondary source external to itself.  Remember, when Doc sticks his two bits in, its in italics and usually indented.</p>
<h4>In Closing</h4>
<p>Readers please read about my paradigms views, prejudices and snarky attitudes at:</p>
<p><a href="http://mhreviews.wordpress.com/2010/05/23/the-greening-continues-a-column-intro-may-23-2010/">http://mhreviews.wordpress.com/2010/05/23/the-greening-continues-a-column-intro-may-23-2010/</a></p>
<p>The materials I share in the topical snippets that follow come from the various weekly science and environmental magazines and newsletters, both pro or anti any given subject’s focus or technologies; as well as excerpts from blogs and ‘lists’ to which I subscribe.</p>
<p><em>Article selection (my article – my choice} are obviously and admittedly biased by my training, experience and at rare times my emotional and philosophical intuitive views of what works and what will not… But if you have a topic I neglect, send me feedback and I’ll give it a shot.</em></p>
<p>Since my topic segments are only a partial look at the original materials, click on-through the provided link if you want more details, as well as &lt;often&gt; to check out other background references on the topic(s).          <em>Doc</em>.</p>
<p>… And yes I trust Wikipedia, but only if I’ve checkout most of an articles references for bias and accuracy!</p>
<p>QUOTE de Mois — &#8220;Correlation is NOT Necessarily Causation”, <a href="http://mhreviews.files.wordpress.com/2011/11/9-2011-image9.jpg"><img class="alignright size-full wp-image-2269" title="9-2011-image9" src="http://mhreviews.files.wordpress.com/2011/11/9-2011-image9.jpg?w=614" alt=""   /></a> although you’d not know it from the gab of the nation’s talking heads and would be US Presidents. Science IQ, as a means testing for public office? A corollary to this is the demonstrated finding that you can’t change the beliefs of a true believer, fortunately they are only about 10% of our population; I do exclude water boarding and brain washing.</p>
<p><a href="http://en.wikipedia.org/wiki/Correlation_does_not_imply_causation">http://en.wikipedia.org/wiki/Correlation_does_not_imply_causation</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2260/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2260&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/11/13/september-2011-the-greening-continuesnew-eclectic-examples-of-environmental-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8a8173a81cb83ee8d0ea24bd673c841?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harrybabad</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif" medium="image">
			<media:title type="html">Gaiea</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image1.jpg" medium="image">
			<media:title type="html">9-2011-image1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image2.jpg" medium="image">
			<media:title type="html">9-2011-image2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image3.jpg" medium="image">
			<media:title type="html">9-2011-image3</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image4.jpg" medium="image">
			<media:title type="html">9-2011-image4</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image5.jpg" medium="image">
			<media:title type="html">9-2011-image5</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image6.jpg" medium="image">
			<media:title type="html">9-2011-image6</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image7.jpg" medium="image">
			<media:title type="html">9-2011-image7</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image8.jpg" medium="image">
			<media:title type="html">9-2011-image8</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/11/9-2011-image9.jpg" medium="image">
			<media:title type="html">9-2011-image9</media:title>
		</media:content>
	</item>
		<item>
		<title>August 27, 2011 – The Greening Continues: New Eclectic Examples of Environmental Technologies</title>
		<link>http://mhreviews.wordpress.com/2011/08/27/august-27-2011-%e2%80%93-the-greening-continues-new-eclectic-examples-of-environmental-technologies/</link>
		<comments>http://mhreviews.wordpress.com/2011/08/27/august-27-2011-%e2%80%93-the-greening-continues-new-eclectic-examples-of-environmental-technologies/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 17:30:48 +0000</pubDate>
		<dc:creator>harrybabad</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[The Greening Continues, by Harry {doc} Babad]]></category>
		<category><![CDATA[Are you ready for more bad weather]]></category>
		<category><![CDATA[Chnia Plans Strict Goals to Save Energy]]></category>
		<category><![CDATA[Energy Payoffs]]></category>
		<category><![CDATA[Harry Babad August 2011 article]]></category>
		<category><![CDATA[Harry {doc} Babad]]></category>
		<category><![CDATA[Solar Energy Faces Tests in Greenness]]></category>
		<category><![CDATA[solid-state batteries]]></category>
		<category><![CDATA[The Greening Continues]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2247</guid>
		<description><![CDATA[By Harry {doc} Babad,  © Copyright 2011, All rights Reserved. Introduction Note, many of the technologies I share are in various stage of first, development, and are often far from being a commercial success. Their inventors and supporters still have to prove that they are reliable, durable and scalable, Remember There Ain’t No free Lunch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2247&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Harry {doc} Babad,  © Copyright 2011, All rights Reserved. <a href="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif"><img class="alignright size-full wp-image-151" title="Gaiea" src="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif?w=614" alt=""   /></a></p>
<h4>Introduction</h4>
<p>Note, many of the technologies I share are in various stage of first, development, and are often far from being a commercial success. Their inventors and supporters still have to prove that they are reliable, durable and scalable, Remember There Ain’t No free Lunch and silver bullets too often turn to lead.</p>
<p>When and if you Google them in depth, you will find studies saying they are capable of being commercialized and often as many other studies that are more skeptical because there is no easy way to for them into our systems.</p>
<p>I always, as 75 year old cynic, find it appropriate, to step back as I read and WIIFT – No it’s not something new to smoke; just the compulsion to ask <em>what’s in it for them</em>. It’s okay to have a hidden agenda, but agenda’s too hidden discomfort me. In addition, most have no relationship to solving the problem that is being bragged about.</p>
<p>I know, perhaps even truly believe, that for green energy related items, if we put a simple price (tax) on carbon (greenhouse gases) and gave out no subsidies, these new technologies would have a better chance to blossom. With American ingenuity, Indian and Chinese too, thousands more ideas would come out of innovators’ garages. America still has the best innovation culture in the world. But we need better policies to nurture it, better infrastructure to enable it and more open doors to bring others here to try it.</p>
<p>Remember, conditions, both technical and geopolitical continuously change – So if you’ve made up your mind about either the best way to control climate or its effects, or about that your sure its all a conspiracy, move on to the next article in our blog. By the way, I do agree, it’s all a conspiracy — Gaia and the Good Lord!</p>
<p>Stay tuned; today’s favorite is tomorrow unintended consequence. However, that’s better than sticking one’s head in the sand or believing in perpetual motion<em>.</em> Remember TAMIFLU; <em>there’s no free lunch;</em> as a taxpayer and consumer you must and will always end up <em>paying the piper</em>!</p>
<p align="center"><em>Titles, As Usual, in No Formal Order, for the New Snippets and Topics</em></p>
<ul>
<li><strong>China Reportedly Plans Strict Goals to Save Energy </strong>—The Yin and Yang of US and Chinese Energy Polices.<strong></strong></li>
<li><strong>Solar Energy Faces Tests On Greenness — </strong>The Good, the Bad and the Ugly.</li>
<li><strong>Energy Payoffs —</strong>In search of Radical Solutions by Vinod Khosla</li>
<li><strong>Are You Ready for More <em>Baaad Weather</em>?</strong> —In a world of climate change, freak storms are the new normal. Why we’re unprepared for the harrowing future.</li>
<li><strong>Solid-State Batteries</strong> &#8211; The Power Of The Printing Press.</li>
</ul>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -<br />
</strong></p>
<h4>China Reportedly Plans Strict Goals to Save Energy</h4>
<p style="text-align:left;" align="center">—<strong> </strong>The Yin and Yang of US and Chinese Energy Polices.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="437">
<p align="center"><em>Inertia, one of the few serious limitations of our Western Democratic systems, let’s hope it does kill us all<strong>.</strong></em></p>
</td>
</tr>
</tbody>
</table>
<p><em> </em></p>
<p><em>As the title of this topic and the reference contain therein implies: <a href="http://mhreviews.files.wordpress.com/2011/08/8-2011-1.jpg"><img class="alignright size-full wp-image-2248" title="8-2011-1" src="http://mhreviews.files.wordpress.com/2011/08/8-2011-1.jpg?w=614" alt=""   /></a><br />
</em></p>
<ol>
<li><em></em><em>The Chinese believe there is a global warming problem</em></li>
<li><em></em><em>The governments realized that hurting their people lead to Social Unrest</em></li>
<li><em></em><em>Smoggy cities, drastic unexpected and larger than predictable weather patterns, durations and incidents. Then there’s the increase of temperature/humidity related diseases we’ve begun to document in both the government and it’s policies for a Greater China at risk.</em></li>
</ol>
<p><em>So, according to this article and others I’ve studied they are willing to put their resources where the mouths and platitudes of western politicians now are. You know the three wise monkeys.</em></p>
<p>HONG KONG — With oil prices at their highest level in more than two years because of unrest in North Africa and the Middle East, the Chinese government plans to announce strict five-year goals for energy conservation in the next two weeks, China energy specialists said Friday.</p>
<p>Beijing’s emphasis on saving energy reflects concerns about national security and the effects of high fuel costs on inflation, China’s export competitiveness and the country’s pollution problems.</p>
<p>Any energy policy moves by Beijing hold global implications, given that China is the world’s biggest consumer of energy and largest emitter of greenhouse gases. And even the new efficiency goals assume that China’s overall energy consumption will grow, to meet the needs of the nation’s 1.3 billion people and its rapidly expanding economy.</p>
<p>As a net importer of oil, China tends to view its energy needs as a matter of national security. And so, even as Beijing tries to quell any signs of the Arab world’s social unrest striking a political chord with Chinese citizens, the government is also intent on not letting similar upheaval impinge on its energy needs.</p>
<p>Although, China, <em>as part of the new five-year plan</em>, has placed a big bet on renewable energy, emerging as the world’s biggest and lowest-cost manufacturer of wind turbines and solar panels. But the country remains heavily reliant on coal <em>and nuclear</em> for its electricity. And its oil imports are surging after auto sales have surpassed the American market in each of the last two years.</p>
<p>An important feature of the five-year plan is its call to double the share of natural gas in Chinese energy consumption, to 8 percent in 2015 from 4 percent last year, according to Fatih Birol, the chief economist of the multilateral International Energy Agency in Paris. This will make China a natural buyer of large quantities of Russian gas, making it a competitor to Europe, which already relies heavily on gas from Russia.</p>
<p>The goals in China’s new five-year plan are consistent with the International Energy Agency’s “new policies” plan for climate change, a middle course that represents an improvement from current policies, Mr. Birol said. But he noted that the Chinese goals did not go far enough to meet what the agency considers necessary to prevent world temperatures from rising by more than 2 degrees Celsius, an increase that many scientists fear as potentially leading to very broad environmental changes.</p>
<p>There’s more, promoting electric cars, building 20 new state of the art Generation III+ nuclear reactors, localizing local energy use by setting enforceable consumption and pollution targets. Click though and read the rest of the details.</p>
<p><strong><em><span style="text-decoration:underline;">Keith Bradsher Article References and Notes</span></em></strong></p>
<p style="text-align:left;" align="right">Article by Keith Bradsher for the New York Times, <a href="http://www.nytimes.com/2011/03/05/business/energy-environment/05energy.html?_r=2&amp;nl=afternoonupdate&amp;emc=aua22">Published</a>: March 4, 2011</p>
<p><a href="mailto:http://www.grist.org/climate-policy/2011-03-07-how-does-chinas-12th-five-year-plan-address-energy"><em>How does China’s 12th Five-Year Plan address energy and the environment</em></a><em>? </em><strong>By the </strong><span style="text-decoration:underline;">World Resources Institute</span>, 7 Mar 2011.<strong></strong></p>
<p><a href="mailto:http://deblockconsulting.com/blog/china-news/chinas-five-year-plan-renewable-energy-a-detailed-explanation/"><em>China’s Five-year Plan &amp; Renewable Energy – A Detailed Explanation</em></a><strong>, </strong>by<strong> </strong>DeBlock Consulting Ltd, March 2011.</p>
<p><a href="http://ecocentric.blogs.time.com/2011/03/04/while-china-cuts-energy-waste-the-u-s-just-wastes/"><em>While China Cuts Energy Waste, the U.S. Just Wastes</em></a>, Posted by <a href="http://ecocentric.blogs.time.com/author/bryanrwalsh/">Bryan Walsh</a> for Time Magazine, March 4, 2011.</p>
<p>As a Serious Sidebar – for the Chinese, Nuclear Power is both renewable and environmentally protective.</p>
<p><a href="http://deblockconsulting.com/blog/china-news/chinas-five-year-plan-renewable-energy-a-detailed-explanation/">Nuclear Plans in China</a>, the Japanese accident hasn’t stopped the planning and building, and taken a time out for doing enhanced safety analysis factoring in the lessons being learned from Fukushima Daiichi nuclear disaster. “When compared with the 11th Five-year Plan, the 12th Five-year Plan will continue the fast paced development stage; It is estimated that between 2011 and 2015 the rate of increase in China’s installed nuclear capacity will be over 30%, from 2010 levels of 10.8GW to 43GW in 2015. Third generation AP1000 nuclear technology will be an important direction in China’s nuclear development. Currently second generation CPR1000 technology is the most common among completed nuclear projects and nuclear projects under construction, but in planned nuclear projects the third generation AP1000 technology is used much more than CPR1000. Geographical development of nuclear projects will build on the fast paced development in coastal regions such as Liaoning, Shandong, Jiangsu, Zhejiang and Fujian and gradually move into central regions such as Jiangxi, Hunan and Anhui, forming the “central/eastern nuclear belt”.</p>
<p><a href="http://en.wikipedia.org/wiki/Nuclear_power_in_the_People%27s_Republic_of_China"><em>Nuclear power in the People&#8217;s Republic of China</em></a>, Wikipedia 2011.</p>
<p><a href="http://www.world-nuclear.org/info/inf63.html"><em>Nuclear Power in China,</em></a> World Nuclear Association, June 2011.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4> Solar Energy Faces Tests and Challenges on Greenness<strong><br />
</strong></h4>
<p>— It’s a total life cycle cost thing and crossing all the “<strong>t</strong>’s” and dotting the “<strong>I</strong>’s” thing, as I’ve been preaching</p>
<p><em><span style="text-decoration:underline;">KISS Me Once, Kiss Me Twice And Kiss Me Once Again: <a href="http://mhreviews.files.wordpress.com/2011/08/8-2011-2.jpg"><img class="alignright size-full wp-image-2249" title="8-2011-2" src="http://mhreviews.files.wordpress.com/2011/08/8-2011-2.jpg?w=614" alt=""   /></a><br />
</span></em></p>
<ul>
<li><em>Fragile Desert Environment adversely affected by large plant footprint.</em></li>
<li><em>Unsubstantiated and waving of the hand environmental documentation</em></li>
<li><em>Unsubsidized production costs, even without life cycle costs included, are uncompetitive in most areas</em></li>
<li><em>Grid Connection and maintenance costs are not reliably factored into the baseline costs</em></li>
<li><em>Inadequate analyses of the costs of pollution control from toxic conditions and chemicals used for photovoltaic </em><a href="http://en.wikipedia.org/wiki/Solar_cell"><em>solar cell manufacture</em></a><em>; not a factor when assessing solar thermal generation.</em></li>
<li><em>Unusable for base load production, without major breakthrough, so far under costed, for storage when the sun is not shining.</em></li>
</ul>
<p><em>What follows is an excepts from the latest report by folks assessing the total cost of solar photo voltaic energy as a green alternative to nuclear, off shore other coastal based wind power, and perhaps appropriate located geothermal power generation.</em></p>
<p>SAN FRANCISCO — Just weeks after regulators approved the last of nine multibillion-dollar solar thermal power plants to be built in the Southern California desert, a storm of lawsuits and the resurgence of an older solar technology are clouding the future of the nascent industry.</p>
<p>The litigation, which seeks to block construction of five of the solar thermal projects, underscores the growing risks of building large-scale renewable energy plants in environmentally delicate areas. On Jan. 25, for instance, Solar Millennium withdrew its 16-month-old license application for a 250-megawatt solar station called Ridgecrest, citing regulators’ concerns over the project’s impact on the Mohave ground squirrel.</p>
<p>At peak output, the five licensed solar thermal projects being challenged would power more than two million homes, create thousands of construction jobs and help the state meet aggressive renewable energy mandates. The projects are backed by California’s biggest utilities, top state officials and the Obama administration.  But conservation, labor and American Indian groups are challenging the projects on environmental grounds. The lawsuits, coupled with a broad plunge in prices for energy from competing power sources, threaten the ability of developers to secure expiring federal loan guarantees and private financing to establish the projects. Only one developer so far, BrightSource Energy, has obtained a loan guarantee and begun construction.</p>
<p>Like so many of this state’s troubles, the industry’s problems are rooted in real estate. However, it grew much broader when apparent flaws in both environmental analyses, a potential for actual public fraud, and lots of what the kind at heart would call misrepresentation of liabilities and gains. This makes an interesting read. When added to the references I’ve listed below make a compelling statement of narrow vision, based on gluttons’ visions of a full trough at the public expense. …And there’s also, all the knock on your door solar home system sales people.</p>
<p>After all we know the courts will decide, but regular readers know my opinions of courts and juries to get science related issue right. Again I plead for a science literacy tests, say the ones they use Europe and Asia for 8<sup>th</sup> grade students, for all who would serve as juries in science and engineering court cases. That should include the judges too, but I’m being too utopian.<strong></strong></p>
<p style="text-align:left;" align="right"><a href="http://www.nytimes.com/2011/02/24/business/energy-environment/24solar.html?_r=1&amp;nl=afternoonupdate&amp;emc=aua22">By Todd Woody, for the New York Times</a>, Published: February 23, 2011.</p>
<p style="text-align:left;" align="center"><strong>References<br />
</strong></p>
<p><a href="http://www.clean-energy-ideas.com/articles/pros_and_cons_of_solar_energy.html"><em>Pros And Cons Of Solar Energy</em></a>, Clean Energy Ideas Blog, Undated.</p>
<p><a href="http://www.solarpower.org/News/800521605-environmentalists-weigh-solar-powers-pros-cons.aspx"><em>Environmentalists Weigh Solar Power&#8217;s Pros, Cons</em></a>, SolarPower.Org Blog, Posted June 2, 2006.</p>
<p><a href="http://environment.about.com/od/renewableenergy/a/solar_power.htm"><em>Solar Power: The Pros and Cons of Solar Power</em></a>, About.Com Blog, By <a href="http://environment.about.com/bio/Larry-West-16812.htm">Larry West</a>, About.com Guide, 2011.</p>
<p><a href="http://en.wikipedia.org/wiki/Photovoltaic_power">Solar Power</a>, &lt;and&gt; <a href="http://en.wikipedia.org/wiki/Solar_energy">Solar Energy,</a> “Wikipedia”, 2011 – two articles.</p>
<p><a href="http://www.americanthinker.com/blog/2010/04/the_solar_power_scam.html"><em>The Solar Power Scam</em></a>, by Brian Schwarz and Thomas Lifson for the “American Thinker” &lt;a conservative blog&gt;, April 19, 2011.</p>
<p><a href="http://healdsburg.patch.com/articles/10-year-sentence-in-solar-energy-scam"><em>10-Year Sentence In Solar Energy Scam</em></a>, “The Healdsburg Patch blog”, May 3, 2100.</p>
<p><a href="http://www.guardian.co.uk/commentisfree/2010/mar/01/solar-panel-feed-in-tariff"><em>Are We Really Going To Let Ourselves Be Duped Into This Solar Panel Rip-Off?</em></a> By</p>
<p><a href="http://www.guardian.co.uk/profile/georgemonbiot">George Monbiot</a> for the Guardian.co.uk, March 1, 2010</p>
<p><a href="http://www.energymatters.com.au/index.php?main_page=news_article&amp;article_id=374"><em>Solar Power Scams</em></a><em>,</em> “Energy Matters” an Australian Renewable Energy News Blog, March 26, 2009.</p>
<p><a href="http://solarkismet.wordpress.com/2007/02/21/how-to-detect-a-solar-scam/"><em>How to Detect a Solar Scam</em></a> – Here’s a deal for you! “Solar Kismet”, March 2007.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4>Energy Payoffs</h4>
<p><strong>—</strong>In search of Radical Solutions by Vinod Khosla, Venture Capitalist <a href="http://mhreviews.files.wordpress.com/2011/08/8-2011-3.jpg"><img class="alignright size-full wp-image-2250" title="8-2011-3" src="http://mhreviews.files.wordpress.com/2011/08/8-2011-3.jpg?w=614" alt=""   /></a></p>
<p>Unusual for me, I’m just providing this topic as a reference link and ultra short SciAm synopsis, enjoy. It was published in Scientific American in January 2011, and due to their access restrictions, the full article may be hard to access outside of a library. But the abstract posted a link is well worth reading.</p>
<p>In Brief,</p>
<p>Radical innovation, not incremental improvement, is needed to make dean, efficient energy technologies that can compete, unsubsidized, in big markets.</p>
<p>Mainstream technologies such as air conditioning and automobile engines may be the best targets for breakthroughs that change the energy game.</p>
<p>More people with  Ph.D.’s in technical disciplines are needed to create true breakthroughs.</p>
<p>Students are beginning to flock to these areas. A low-carbon-electricity standard, not renewable energy standards or cap and trade would most encourage cleaner technologies, including <em>for</em> fossil fuels.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4>Are You Ready for More <em>Baaad Weather</em>?</h4>
<p>—In a world of climate change, freak storms are the new normal. Why we’re unprepared for the harrowing future.</p>
<table width="477" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="477"><em>Not only did I find the article detailed and factual, I was also amazed by the amount of Ostrich Heads in the Sand Flaming it produced. It matters not whether this is global warming, or just out turn in the weather cycle, the damage is real and the incidence of more aggressive and destructive weather incidents, worldwide is increasing. We’ve tow choices. The first is to rescue those victimized by bad weather until governments run out of money. Alternative, start slowing and globally to take a chance that climate change theory is good, if incomplete science, caused by green house gasses and other aggressive environmental damage caused by man (e.g., deforestation) and start to do something about it.</em></td>
</tr>
</tbody>
</table>
<p><strong> </strong><span style="text-decoration:underline;">An Excerpt <a href="http://mhreviews.files.wordpress.com/2011/08/8-2011-4.jpg"><img class="alignright size-full wp-image-2251" title="8-2011-4" src="http://mhreviews.files.wordpress.com/2011/08/8-2011-4.jpg?w=614" alt=""   /></a><br />
</span></p>
<p>Joplin, Mo., was prepared. The tornado warning system gave residents 24 minutes’ notice that a twister was bearing down on them. Doctors and nurses at St. John’s Regional Medical Center, who had practiced tornado drills for years, moved fast, getting patients away from windows, closing blinds, and activating emergency generators. And yet more than 130 people died in Joplin, including four people at St. John’s, where the tornado sucked up the roof and left the building in ruins, like much of the shattered city.</p>
<p>Even those who deny the existence of global climate change are having trouble dismissing the evidence of the last year. In the U.S. alone, nearly 1,000 tornadoes have ripped across the heartland, killing more than 500 people and inflicting $9 billion in damage. The Midwest suffered the wettest April in 116 years, forcing the Mississippi to flood thousands of square miles, even as drought-plagued Texas suffered the driest month in a century. Worldwide, the litany of weather’s extremes has reached biblical proportions. The 2010 heat wave in Russia killed an estimated 15,000 people. Floods in Australia and Pakistan killed 2,000 and left large swaths of each country under water. A months-long drought in China has devastated millions of acres of farmland. And the temperature keeps rising: 2010 was the hottest year on earth since weather records began.</p>
<p>From these and other extreme-weather events, one lesson is sinking in with terrifying certainty. The stable climate of the last 12,000 years is gone. Which means you haven’t seen anything yet. And we are not prepared.</p>
<p>Picture California a few decades from now, a place so hot and arid the state’s trademark orange and lemon trees have been replaced with olive trees that can handle the new climate. Alternating floods and droughts have made it impossible for the reservoirs to capture enough drinking water. The picturesque Highway 1, sections of which are already periodically being washed out by storm surges and mudslides, will have to be rerouted inland, possibly through a mountain. These aren’t scenes from another deadly-weather thriller like <em>The Day After Tomorrow.</em> They’re all changes that California officials believe they need to brace for within the next decade or two. And they aren’t alone. Across the U.S., it’s just beginning to dawn on civic leaders that they’ll need to help their communities brave coming dangers brought by climate change, from disappearing islands in Chesapeake Bay to dust bowls in the Plains and horrific hurricanes in the Gulf of Mexico. Yet only 14 states are even planning, let alone implementing, climate-change adaptation plans, says Terri Cruce, a climate consultant in California. The other 36 apparently are hoping for a miracle.</p>
<p>The game of catch-up will have to happen quickly because so much time was lost to inaction. “The Bush administration was a disaster, but the Obama administration has accomplished next to nothing either, in part because a significant part of the Democratic Party is inclined to balk on this issue as well,” says economist Jeffrey Sachs, head of the Earth Institute at Columbia University. “We [are] past the tipping point.” The idea of adapting to climate change was once a taboo subject. Scientists and activists feared that focusing on coping would diminish efforts to reduce carbon emissions. On the opposite side of the divide, climate-change deniers argued that since global warming is a “hoax,” there was no need to figure out how to adapt. “Climate-change adaptation was a nonstarter,” says Vicki Arroyo, executive director of the Georgetown Climate Center. “If you wanted to talk about that, you would have had to talk about climate change itself, which the Bush administration didn’t want to do.” In fact, President Bush killed what author Mark Hertsgaard in his 2011 book, <em>Hot,</em> calls “a key adaptation tool,” the National Climate Assessment, an analysis of the vulnerabilities in regions of the U.S. and ideas for coping with them. The legacy of that: state efforts are spotty and local action is practically nonexistent. “There are no true adaptation experts in the federal government, let alone states or cities,” says Arroyo. “They’ve just been commandeered from other departments.”</p>
<p>The rookies (functionally science illiterate) will struggle to comprehend the complex impacts of climate change. The burning of fossil fuels has raised atmospheric levels of heat-trapping carbon dioxide by 40 percent above what they were before the Industrial Revolution. The added heat in the atmosphere retains more moisture, ratchets up the energy in the system, and incites more violent and extreme weather. Scientists disagree about whether climate change will bring more intense or frequent tornadoes, but there is wide consensus that the 2 degrees Fahrenheit of global warming of the last century is behind the rise in sea levels, more intense hurricanes, more heat waves, and more droughts and deluges. Even if the world went carbon-neutral tomorrow, we’d be in for more: because of the CO2 that has already been emitted, we’re on track for another 5 degrees of warming. Batten down the hatches. “You can no longer say that the climate of the future is going to be like the climate of today, let alone yesterday,” says Judi Greenwald, vice president of innovative solutions at the Pew Center on Global Climate Change. “In all of the plausible climate scenarios, we are going to have to change the way we do things in ways we can’t even predict.”</p>
<p>…</p>
<p>So what lies behind America’s resistance to action? Economist Sachs points to the lobbying power of industries that resist acknowledgment of climate change’s impact. “The country is two decades behind in taking action because both parties are in thrall to Big Oil and Big Coal,” says Sachs. “The airwaves are filled with corporate-financed climate misinformation.” But the vanguard of action isn’t waiting any longer. This week, representatives from an estimated 100 cities are meeting in Bonn, Germany, for the 2nd World Congress on Cities and Adaptation to Climate Change. The theme is “Resilient Cities.” As Joplin, Mo., learned in the most tragic way possible, against some impacts of climate change, man’s puny efforts are futile. But time is getting short, and the stakes are high. Says Daniel Sarewitz, a professor of science and society at Arizona State University: “Not to adapt is to consign millions of people to death and disruption.”</p>
<p align="center"><em><span style="text-decoration:underline;">Check it out, there’s lots more facts, links to disaster TV footage, it’s real… will likely get worse… who cares the cause.<strong></strong></span></em></p>
<p><strong> </strong></p>
<p>By <a href="http://www.newsweek.com/2011/05/29/are-you-ready-for-more.print.html">Sharon Begley for Newsweek</a>, May 29, 2011.</p>
<h4 style="text-align:left;" align="center">References On a comparable Theme</h4>
<p><a href="http://www.economist.com/node/18178073/print"><em>Piecemeal Possibilities and Climate Change</em></a> &#8211; Paying attention to alternative ways of cooling the planet is a good idea; ignoring carbon emissions isn’<span style="text-decoration:underline;">t, The Economist, February 17, 2011.</span></p>
<p><a href="http://www.economist.com/node/17848493"><em>A Fistful Of Dust and Climate Science</em></a> — The true effect of windblown material is only now coming to be appreciated, The Economist, Jan 6th 2011.</p>
<p><a href="http://sei-international.org/-press/press-invitations/2011"><em>Acute Climate Change in the Arctic: Fighting Air Pollution May Slow Warming</em></a>, Stockholm Environmental Institute, June 9, 2011.</p>
<p><a href="http://www.economist.com/node/18618451/print"><em>Carbon Flows, The Omitted Emissions</em></a> — The usual figures ignore the role of trade in the world’s carbon economy, The Economist, Apr 28th 2011.</p>
<p style="text-align:left;" align="center"><strong>References</strong> — Samples of Denial and Flaming</p>
<p><a href="http://minx.cc/?post=316916"><em>Newsweek&#8217;s Global Warming Fear-Mongering Isn&#8217;t Science; It&#8217;s Science Fiction</em></a>, The Ace of Spades HQ Blog, May 31, 2011.</p>
<p><a href="http://articles.boston.com/2011-06-01/bostonglobe/29609165_1_global-warming-climate-alarmists-carbon-emissions"><em>Cooler Heads Prevail Against Climate Panic</em></a><em><span style="text-decoration:underline;">,</span></em> June 01, 2011|By Jeff Jacoby, Boston Globe Columnist</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -<br />
</strong></p>
<h4>Solid-State Batteries &#8211; The Power of the Printing Press <a href="http://mhreviews.files.wordpress.com/2011/08/8-2011-5.jpg"><img class="alignright size-full wp-image-2252" title="8-2011-5" src="http://mhreviews.files.wordpress.com/2011/08/8-2011-5.jpg?w=614" alt=""   /></a></h4>
<p>The power of the press; a new process will make solid-state rechargeable batteries that should greatly outperform existing ones. Electronics made a huge leap forward when the delicate and temperamental vacuum tube was replaced by the robust, reliable transistor. That change led to the now ubiquitous silicon chip. As a consequence, electronic devices have become vastly more powerful and, at the same time, have shrunk in both size and cost. Some people believe that a similar change would happen if rechargeable batteries could likewise be made into thin, solid devices. Researchers are working, <em>and succeeding</em> on, various ways to do this and now one of these efforts is coming to <em>large-scale</em> fruition. That <span style="text-decoration:underline;">promises</span> smaller, cheaper, more powerful batteries for consumer electronics and, eventually, for electric cars.</p>
<p>The new development is the work of Planar Energy of Orlando, Florida—a company spun out of America’s National Renewable Energy Laboratory in 2007. The firm is about to complete a pilot production line that will print lithium-ion batteries onto sheets of metal or plastic, like printing a newspaper. “Thin-film” printing methods of this sort are already used to make solar cells and display screens, but no one has yet been able to pull off the trick on anything like an industrial scale with batteries. Paradoxically, though thin-film printing needs liquid precursor chemicals to act as the “ink” which is sprayed onto the metal or plastic substrate, it works well only when those precursors react to form a solid final product. Most batteries include liquid or semi-liquid electrolytes—so printing them has been thought to be out of the question. Planar, however, has discovered a solid electrolyte it believes is suitable for thin-film printing.</p>
<p>Lack of range is reckoned one of the main obstacles to the widespread use of electric cars. If solid-state batteries could overcome such range anxiety that would, indeed, be a revolution on a par with the silicon chip.</p>
<p align="center"><em>Okay, this is a teaser, so click though and enjoy the rest of the article.</em></p>
<p>Published in the Economist, Jan 27th 2011.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<h4>Endnotes</h4>
<p>Copyright Notice: Product and company names and logos in this review may be registered trademarks of their respective companies.</p>
<p>Some of the articles listed in this column are copyright protected – their use is both acknowledge and is limited to educational related purposes, which this column provides.</p>
<p><em><span style="text-decoration:underline;">Sources &amp; Credits</span></em><em>: </em> — Many of these items were found by way of the links in the newsletter <em>NewsBridge</em> <em>of ‘articles of interest’</em> to the national labs library technical and regulatory agency users. <em>NewsBridge</em> is electronically published by the Pacific Northwest National Laboratories, in Richland WA.  If using <em>NewsBridge</em> as a starting point, I follow the provided link to the source of the information and edit its content (mostly by shortening the details) for information for our readers. I also both follow any contained links, where appropriate, in the actual article, and provide you those references as well as those gleaned from a short trip to Google-land. Obviously if my source is a magazine or blog that the material I work with.</p>
<p>In addition, when copying materials that I cite, I do not fill the sourced ‘quoted’ words with quotation marks, the only place I keep quotes intact is where the original article ‘quotes’ another secondary source external to itself.  Remember, when Doc sticks his two bits in, its in italics and usually indented.</p>
<h4>In Closing</h4>
<p>The materials I share in the topical snippets that follow come from the various weekly science and environmental magazines and newsletters, both pro or anti any given subject’s focus or technologies; as well as excerpts from blogs and ‘lists’ to which I subscribe. Since my topic segments are only a partial look at the original materials, click on-through the provided link if you want more details, as well as &lt;often&gt; to check out other background references on the topic(s).          <em>Doc</em>.</p>
<p><em>Article selection (my article – my choice} are obviously and admittedly biased by my training, experience and at rare times my emotional and philosophical intuitive views of what works and what will not… But if you have a topic I neglect, send me feedback and I’ll give it a shot ˆThe name of my game!”</em></p>
<p><a href="../2010/05/23/the-greening-continues-a-column-intro-may-23-2010/">http://mhreviews.wordpress.com/2010/05/23/the-greening-continues-a-column-intro-may-23-2010/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2247&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/08/27/august-27-2011-%e2%80%93-the-greening-continues-new-eclectic-examples-of-environmental-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8a8173a81cb83ee8d0ea24bd673c841?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harrybabad</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2010/05/gaiea.gif" medium="image">
			<media:title type="html">Gaiea</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/08/8-2011-1.jpg" medium="image">
			<media:title type="html">8-2011-1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/08/8-2011-2.jpg" medium="image">
			<media:title type="html">8-2011-2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/08/8-2011-3.jpg" medium="image">
			<media:title type="html">8-2011-3</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/08/8-2011-4.jpg" medium="image">
			<media:title type="html">8-2011-4</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/08/8-2011-5.jpg" medium="image">
			<media:title type="html">8-2011-5</media:title>
		</media:content>
	</item>
		<item>
		<title>Wolfram General Chemistry Course Assistant (July 26, 2011)</title>
		<link>http://mhreviews.wordpress.com/2011/07/27/wolfram-general-chemistry-course-assistant-july-26-2011/</link>
		<comments>http://mhreviews.wordpress.com/2011/07/27/wolfram-general-chemistry-course-assistant-july-26-2011/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 06:28:27 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[iPod apps]]></category>
		<category><![CDATA[ipod chemistry apps]]></category>
		<category><![CDATA[iPod scientific apps]]></category>
		<category><![CDATA[Mathematica]]></category>
		<category><![CDATA[Wolfram Course Assistance Apps]]></category>
		<category><![CDATA[Wolfram Course Assistant]]></category>
		<category><![CDATA[Wolfram Research]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2239</guid>
		<description><![CDATA[By Mike Hubbartt, © Copyright 2011, All Rights Reserved. Software: General Astronomy Course Assistant Vendor: Wolfram Research (www.wolfram.com) Price: $4.95 Many modern students use their smart phones in school, and Wolfram understands this so they are releasing a series of course assistant applications for smart phones and devices like the Apple iPhone and iPod touch. I&#8217;ve [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2239&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Mike Hubbartt, © Copyright 2011, All Rights Reserved. <a href="http://mhreviews.files.wordpress.com/2011/07/wolfram-chemistry-1-start-screen.png"><img class="alignright size-full wp-image-2240" style="border:1px solid black;margin:2px;" title="Wolfram Chemistry 1. Start Screen" src="http://mhreviews.files.wordpress.com/2011/07/wolfram-chemistry-1-start-screen.png?w=614" alt=""   /></a></p>
<p>Software: General Astronomy Course Assistant<br />
Vendor: Wolfram Research (<a title="Wolfram" href="http://www.wolfram.com">www.wolfram.com</a>)<br />
Price: $4.95</p>
<p>Many modern students use their smart phones in school, and Wolfram understands this so they are releasing a series of course assistant applications for smart phones and devices like the Apple iPhone and iPod touch. I&#8217;ve already looked at Wolfram&#8217;s Course Assistant for Astronomy, and I wanted to look at Wolfram&#8217;s General Chemistry Course Assistant when it was released since I initially majored in Biochemistry when I first started my undergrad degree.</p>
<p>This Course Assistant is sold through the Apple Apps store for $4.95, and I downloaded and installed the app through iTunes, which was flawless. The data (just like in the Astronomy Course Assistant) was organized by categories:</p>
<ul>
<li>Atoms, Molecules, Ions</li>
<li>Atomic Structure &amp; Periodicity</li>
<li>Reactions &amp; Stoichiometry</li>
<li>Gases</li>
<li>Chemical Bonding</li>
<li>Liquids &amp; Solids</li>
<li>Acids &amp; Bases</li>
<li>The Nucleus</li>
<li>Units &amp; Chemical Properties</li>
</ul>
<h4>Atoms, Molecules, Ions</h4>
<p>This category has these subcategories: Find an Element. Find an Isotope, Atomic Properties of Elements, Abundance of Elements, Properties of Monoatomic Ions, and Ion Groups.</p>
<p>I went to the &#8216;Find an Element&#8217; subcategory and entered 8, and then pressed &#8216;Compute&#8217; to see the information on Oxygen, which displayed the element name,the location in the periodic table, an image of the element, some basic element properties (symbol, atomic number, electron configuration, block, group, period, and atomic weight), thermodynamic properties (melting point, boiling point &#8211; in centigrade and fahrenheit &#8211; critical temperature and pressure, molar heat of fusion, heat of vaporization, specific heat at STP, and adiabetic index), material properties (density, molar volume, refractive index, sound speed, and thermal conductivity), electromagnetic properties, reactivity (valence, electronegativity, electron affinity, ionization energies, atomic properties (term symbol, atomic radius, covalent radius, and van der Waals radius), abundance (universal, crust, and human), nuclear properties (half-life, isotopes), and identifiers (CAS and PubChem numbers).</p>
<p>In addition to searching for elements by atomic number, you can also use the number of protons and electrons. My favorite subcategory of this category of the course assistant was the &#8216;Atomic Properties of Elements&#8217;, because the search criteria you can use to find information include atomic number/weight/radius, number of protons/electrons.neutrons, and the Lewis structure.</p>
<h4>Atomic Structure &amp; Periodicity</h4>
<p>This category has four subcategories: Light &amp; Matter, Electron Configuration, Periodic Properties of Elements, and Ionic Radii.</p>
<p>The &#8216;Light &amp; Matter&#8217; subcategory lets you compute EM Radiation, the energy of a photon, and photon energy. The &#8216;Electron Configuration&#8217; subcategory lets you compute configuration information for atoms or ions. The &#8216;Periodic Properties of Elements&#8217; calculates information for elements and element groups. The &#8216;Ionic Radii&#8217; subcategory computes radii for monoatomic and polyatomic ions.</p>
<h4>Reactions &amp; Stoichiometry</h4>
<p>This category has eight subcategories to Solve for Mass/Volume, Convert Mass/Volume, Calculating Molar Mass, Composition of Compounds, Concentration and Solutions, and Equations and Reactions. My favorite subcategory was Equations and Reactions, which lets you plug in data to compute Reaction Enthalpy, the Reaction Equilibrium Constant, balance chemical equations, and calculate theoretical yields. Each section lets you specify 1 to 4 reactants and 1 to 4 products. Very useful.</p>
<h4>Gases</h4>
<p>This category has nine subcategories to solve for Avogadro&#8217;s Law (V or n), Boyle&#8217;s Law (V or P), Charles&#8217;s Law (V or T), Gay-Lussac&#8217;s Law (P or T)/Density or Molar Mass, the Ideal Gas Law (P, V, n, and T), Graham&#8217;s Law, Average Kinetic Energy, and RMS Velocity.</p>
<h4>Chemical Bonding</h4>
<p>This category has two subcategories: Bond Properties of Chemicals and Lewis Structures of Elements. The &#8216;Bond Properties&#8217; include dipole moment, bond types and bond lengths for water, ethanol, acetic acid, acetone, and chloroform.</p>
<h4>Liquids &amp; Solids</h4>
<p>This category has three subcategories: X-ray Analysis of Solids (Bragg Equation), Boiling Point of Liquids, and Liquid Vapor Pressure. I really liked how the second subcategory lets find boiling points based on city, elevation or mountains.</p>
<p>This was the only area of the app that I saw an error. I went into all three subcategories and all were blank, even though I waited 10 minutes. I quit the app and after I went back into it I was able to see each subcategory, but then the app locked up for a minute. I was able to restart the app, but I have notified Wolfram about this issue and will update this review as soon as I hear back from them.</p>
<h4>Acids &amp; Bases</h4>
<p>This category lets you look up properties of acids and bases, calculates the ionization percentage of a solution, determine acidity and basicity of solutions (calculate pH and pOH, H+ and OH-, and look up the pH of a chemical), calculate pKa, and solve for pH or pKa.</p>
<h4>The Nucleus</h4>
<p>This category lets you look up information on isotopes (get element isotopes, look up nuclear properties, and find isotope half-life), as well as compute carbon-14 dating (if you believe that the earth is actually older than 6400 years). I went into the &#8216;Isotopes&#8217; subcategory and looked up the isotopes for Oxygen, which showed all of the stable and unstable O isotopes. My favorite subcategory of this section was the &#8216;Isotope Half-Life&#8217;, as you can easily use element name or mass numbers to compute the half-lives of elements, which was interesting considering the reactor problems currently being experienced in Japan (as well as in Chernobyl).</p>
<h4>Units &amp; Chemical Properties</h4>
<p>This category contains five subcategories: Unit Conversions, Physical Properties, Thermodynamic Properties, Element Properties, and Chemical Properties. The &#8216;Unit Conversion&#8217; subcategory allows conversions based on length, mass, temperature, and volume. The four types of &#8216;Physical Properties&#8217; are molecular weight, density,boiling point, and melting point. The types of properties found using &#8216;Thermodynamic Lookup&#8217; are enthalpy of formation, entropy, free energy, heat capacity, enthalpy of fusion, and combustion heat.</p>
<p>I liked the &#8216;Element Properties&#8217; subcategories, because it returns a ton of information for each element (the element name, periodic table position, an image, basic element properties, thermodynamic properties, material properties, electromagnetic properties, reactivity, atomic properties abundances, nuclear properties, and identifiers), but that seems to be the same as the data returned in the &#8216;Find an Element&#8217; subcategory option in the &#8216;Atoms, Molecules, Ions&#8217; category of the app.</p>
<h4>Conclusion</h4>
<p>Wolfram has expanded their offerings beyond the first 6 course assistant apps available for the i<a href="http://mhreviews.files.wordpress.com/2011/07/wolfram-chemistry-3-select-periodic-elements.png"><img class="alignright size-medium wp-image-2242" title="Wolfram Chemistry 3. Select Periodic Elements" src="http://mhreviews.files.wordpress.com/2011/07/wolfram-chemistry-3-select-periodic-elements.png?w=208&#038;h=300" alt="" width="208" height="300" /></a>Phone, iPad, and iPod touch. I tested this app using my iPod touch and was satisfied with the amount of useful information as well as the content layout. I did have a problem at one point and had to exit the app, but it then functioned normally.</p>
<p>As much as I enjoyed this app on my iPod touch, I&#8217;d love to be able  to retrieve all of the &#8216;Element Properties&#8217; (in the &#8216;Units &amp; Chemical Properties&#8217; category) using a GUI image of the periodic table instead of the keyboard that was implemented in the app. To select elements not included on the keyboard, you just need to highlight the element that begins with the same first letter of the alphabet, then select the desired element. Preferring a GUI for this UI is a person preference and not a bug or error, but it might be more appropriate on the larger screen on the iPad.</p>
<h4>Recommendation</h4>
<p>A good value. Good data that will preclude the need to look up technical information in a textbook, which is handy for high school or college students.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2239&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/07/27/wolfram-general-chemistry-course-assistant-july-26-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/wolfram-chemistry-1-start-screen.png" medium="image">
			<media:title type="html">Wolfram Chemistry 1. Start Screen</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/wolfram-chemistry-3-select-periodic-elements.png?w=208" medium="image">
			<media:title type="html">Wolfram Chemistry 3. Select Periodic Elements</media:title>
		</media:content>
	</item>
		<item>
		<title>Solar Transition of the Last Shuttle Docked to the ISS (July 12, 2011)</title>
		<link>http://mhreviews.wordpress.com/2011/07/12/solar-transition-of-the-last-shuttle-docked-to-the-iss-july-12-2011/</link>
		<comments>http://mhreviews.wordpress.com/2011/07/12/solar-transition-of-the-last-shuttle-docked-to-the-iss-july-12-2011/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 01:04:27 +0000</pubDate>
		<dc:creator>Mike Hubbartt</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Space Exploration]]></category>
		<category><![CDATA[Atlantis docked with ISS]]></category>
		<category><![CDATA[International Space Station]]></category>
		<category><![CDATA[ISS]]></category>
		<category><![CDATA[ISS 2011 solar transition]]></category>
		<category><![CDATA[last flight of STS Atlantis]]></category>
		<category><![CDATA[Tobias Lindemann]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2224</guid>
		<description><![CDATA[By Tobias Lindemann, © Copyright 2011, All Rights Reserved. Introduction I was not happy when Atlantis lifted off last Friday, because I thought we would not have a chance to see it here in Europe. I was relieved when a friend told me that there would be a Solar-Transit of the ISS (International Space Station) near [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2224&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Tobias Lindemann, © Copyright 2011, All Rights Reserved.</p>
<h4>Introduction</h4>
<p>I was not happy when Atlantis lifted off last Friday, because I thought we would not have a chance to see it here in Europe. I was relieved when a friend told me that there would be a Solar-Transit of the ISS (International Space Station) near our home in Munich, Germany. The day after the launch, I read that the Shuttle Atlantis docked with the ISS, so I knew I had a chance to get the ISS and Shuttle together in a picture.</p>
<p>To verify the possibility, I went to <a href="http://www.calsky.com/" rel="nofollow">www.calsky.com</a> which is a nice site where you can calculate where the ISS will pass, as well as moon and solar transits for your location. Even if there is a flyby that is close to the sun, this site tells you where to go to see a perfect crossing. I was happy to learn that I could go to a place that is only a stone&#8217;s throw from my house.</p>
<p>I don&#8217;t own a mobile telescope, so I took my 300mm telephoto lens, a solar filter I built years ago for a solar-eclipse, and my EOS to the observation site. But before I left I had to synchronize the clock of my camera to match an exact radio clock.  Calsky had calculated the exact time for the crossing at 14h 56min 18.2sec UTC, and the whole transit duration was only 0.89 seconds which is fast.  I arrived at the observation location at 14:40 UTC, so I had enough time to find the sun, focus the lens and set the correct exposure time (I felt the best exposure time was 1/6000 at ISO 100 and f/9 with my filter).</p>
<p><span style="color:#ff0000;"><strong>IMPORTANT!</strong></span> Regarding the correct filter, it is extremely important that you do not look at the sun even though a small photo lens without a filter. Direct sunlight can seriously damage your eyes!!!</p>
<p>I choose JPEG as the image format because I can take many more photos in this format in burst-mode than taking raw format images.</p>
<p>A few minutes later, the key moment approached and I started the photo shot. I didn&#8217;t look at the sun through the finder, but after one minute of exposing the image I decided that the crossing must be over and released the trigger. I went home and transferred the photos to my computer and was very exited to see there were pictures of the sun, with something in front of it. I had about 800 photos to look at, but I realized that I had adjusted the time of my camera with a radio clock, so every photo has a very exact time stamp. It was unbelievable, but there were some pictures with the ISS in front of the sun at the exact time of 14:56:18. Thank you <a href="http://www.calsky.com/">calsky.com</a>; that is what I call that accurate.</p>
<p>The only tasks I had left was to stack the images with Fitswork using the &#8220;minimum function&#8221;, so that the dark ISS looks better plus reduce the intensity of the sun in the consolidated photo. Here is my photo from that event:</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/07/tobias-solar-trasition.png"><img class="aligncenter size-full wp-image-2225" title="Tobias Solar Trasition" src="http://mhreviews.files.wordpress.com/2011/07/tobias-solar-trasition.png?w=614" alt=""   /></a></p>
<p>Even when a telephoto lens lacks high magnification, you can see the modules and solar panels of the ISS. Normal ISS passes occur in the evenings and mornings, and I do photograph very often at either time, but this was the first time I took some photos of the ISS in front of the sun, which was very exciting.</p>
<p>- Tobias <a href="mailto:TobiasLindemann@iss-tracking.de" rel="nofollow" target="_blank">&lt;TobiasLindemann@iss-tracking.de&gt;</a></p>
<h4>Editor&#8217;s Comment</h4>
<p>Tobias does astro-photography and shares his photos with fellow astronomy enthusiasts. He recently took a beautiful image of the ISS transitioning across the sun and I saw it when he shared it with members of the ISS Tracking Yahoo User Group. I was impressed enough to ask Tobias to write a short article about it for the readers of this site and he was happy to comply. Thank you for sharing, Tobias.</p>
<p>- Mike</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2224/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2224&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/07/12/solar-transition-of-the-last-shuttle-docked-to-the-iss-july-12-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c4a2e5db1c5a7541c99019532e6574c8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mikeh2013</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/tobias-solar-trasition.png" medium="image">
			<media:title type="html">Tobias Solar Trasition</media:title>
		</media:content>
	</item>
		<item>
		<title>SkyWire Serial Accessory Review (July 11, 2011)</title>
		<link>http://mhreviews.wordpress.com/2011/07/11/skywire-serial-accessory-review-july-11-2011/</link>
		<comments>http://mhreviews.wordpress.com/2011/07/11/skywire-serial-accessory-review-july-11-2011/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 00:36:13 +0000</pubDate>
		<dc:creator>tedbade</dc:creator>
				<category><![CDATA[Hardware Reviews]]></category>
		<category><![CDATA[Space Exploration]]></category>
		<category><![CDATA[connect your iPod iPad to your telescope]]></category>
		<category><![CDATA[control a telescope with an ipod ipad]]></category>
		<category><![CDATA[serial connection for telescope control]]></category>
		<category><![CDATA[use SkySafari to control your telescope]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2209</guid>
		<description><![CDATA[By Ted Bade, © Copyright 2011, All Rights Reserved. Product: SkyWire Serial Accessory Vendor: Southern Stars (http://www.southernstars.com) Price: $79.95 USD Shipping: varies according to destination SkyWire Serial Accessory is a simple cable that makes it a breeze to connect your iPad, iPod Touch, or iPhone to your computerized telescope and control it with an app called [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2209&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Ted Bade, © Copyright 2011, All Rights Reserved.</p>
<p><strong>Product</strong>: SkyWire Serial Accessory<br />
<strong>Vendor</strong>: Southern Stars (http://www.southernstars.com)<br />
<strong>Price</strong>: $79.95 USD<br />
<strong> Shipping</strong>: varies according to destination</p>
<p>SkyWire Serial Accessory is a simple cable that makes it a breeze to connect your iPad, iPod Touch, or iPhone to your computerized telescope and control it with an app called SkySafari. Set up and use is really easy, although you need to use Southern Stars SkySafari version 2.1 app (or later) to take advantage of this cable.</p>
<p>Years ago I purchased a computerized telescope mount (and telescope), and found it was a serious step up for the rank amateur sky observer. Nowadays, rather then dealing with the frustration of using guiding stars to target in on a celestial object, I can now let a computer do all the work. Although the process isn’t perfect, it was an improvement over the tasks I needed to follow to get setup in the past. The Meade Autostar computer controller on my mount has a funky red LED display, which has issues like being completely un-readable when temperatures are in the lower 30 degree F. While it does know the position of a fair number of objects, it is also a bit of a process to select one. Not to mention that, before you begin to search, there is no indication  that an object is currently in the sky until after you select it. It didn’t take me long to look for a more intuitive interface.</p>
<p>From my previous articles here on our Space page, you see that I use my MacBook Pro along with different Astronomy software to make the process even easier. But what if you are starting out like most people today, you may already have one of Apple’s i-devices. SkyWire used with the SkySafari software makes it easy to step a telescope up. Additionally, most of these devices make use of the compass and GPS features, so you can use them to assist with locating the general area of the sky your object of choice might reside.</p>
<p>SkyWire is a cable that transfers the serial data (RS232) signal from the telescope controller to the i-device you are using. The SkyWire cable ends in a DB9 connector. If your telescope controller doesn’t use this connector, you will need a cable to convert the DB9 connector to whatever your ‘Scope” uses. In my case, the Meade LXD75 uses a standard telephone connector (RJ11). It came with a cable that has the RJ11 on one side and a  DB9 on the other, so all I had to do was plug the SkyWire DB9 into the telescope’s DB9 connector and plug the RJ11 end into the AutoStar. Note that I mention all this cable detail because it is specific to my set up. Hopefully there is enough detail so that someone with a different set up will understand what to do.<br />
<a href="http://mhreviews.files.wordpress.com/2011/07/sky-setup2.jpg"><img class="aligncenter size-full wp-image-2213" title="Sky setup2" src="http://mhreviews.files.wordpress.com/2011/07/sky-setup2.jpg?w=614&#038;h=387" alt="" width="614" height="387" /></a><br />
The current version of SkySafari is version 3, and you need version 3 plus to gain the telescope control features. I was pretty impressed with SkySafari. It is a very comprehensive piece of astronomy software with lots of features. It is a great standalone product and worth considering even if you don’t have an interest in the SkyWire feature.</p>
<p>With SkySafari 3 Plus running on my iPod Touch, I plugged in the standard i-device connector into it and an alert box in the software told me I am connected to the SkyWire. By default SkySafari 3 Plus has the telescope control set to “demo mode”.  You need to go into the settings and select your telescope controller and mount type. This system will work with a wide variety of telescope controllers (those that use the RS232 interface), but some do not. Check the products web site to see if your controller is included.<br />
<a href="http://mhreviews.files.wordpress.com/2011/07/ipod-with-skys.jpg"><img class="aligncenter size-full wp-image-2212" title="iPod with skyS" src="http://mhreviews.files.wordpress.com/2011/07/ipod-with-skys.jpg?w=614&#038;h=882" alt="" width="614" height="882" /></a><br />
Once you have selected the telescope controller, bring up the telescope control and select connect. If your controller is on and ready to go it should immediately connect. Now all the power of SkySafari 3 Plus is available to control your telescope. And there is a lot of power in this program!</p>
<p>I have both an iPod Touch and and iPad, so I used both to control the telescope. The iPod Touch is a bit smaller then my Meade Autostar controller but it is infinitely easier to find objects in my sky and slew the telescope to them with this setup. The display is huge compared to the Autostar’s display. Secondly, I am looking at an image that represents what the sky looks like where I am currently located, so by looking at the display I know if the object is above or below the horizon. Using the iPod’s compass feature, I can actually locate the part of the sky tof he object I am interested in viewing, and it is easy to see if there are obstructions that would prevent viewing. SkySafari 3 Plus provides information about the object as well as an image, so I have an idea of magnitude and have data I can read about the object, and can even see what it would look like using a larger telescope. It would be truly cool is there was an easy way to mount and align the iPod on the telescope, so that it could be set to show what was in that part of the sky the telescope is currently pointed toward!</p>
<p>A benefit of any piece of software to aid in observing the sky is its ability to help find objects of interest. Like most astronomy packages, SkySafari show solar system objects, many stars, and puts symbols on the screen where deep space objects are located. It also has two features that point out interesting objects in the current sky. First of all under the search menu there is a “Tonight’s Best” selection, which lists a number of items that should be viewable in your local night sky. You can go through the list and create an observing list of objects you would like to view, or just select one and go to it. The observing list(s) in SkySafari are accessed using the search menu.</p>
<p>The other feature requires an internet connection, it is Sky &amp; Telescope’s SkyWeek feature. This weekly list provides a sky observing task or suggestion for each night of the week. Scroll through the weeks list, choose the correct day and you can read their suggestion. There is also a “View” button that when clicked, centers the object in SkySafari, so you can see where it is.</p>
<p>Using the iPod is nice, but the screen is small. The iPad has a larger screen, and I find this more effective when displaying the night sky. However, it is a bit more awkward to hold up to the sky, (but just only a bit more difficult). One issue I have had with connecting my MacBook Pro to the Autostar is tripping over the cable. The cables I have aren’t long enough to easily string around to protect from an accidental pull and unplug. One advantage of the iPod is that it is small enough to just hang on the telescope mount, so the cable stays out of the way, just as the Autostar cable does.</p>
<p>The SkyWire coupled with SkySafari and your i-device is a cool way to control your telescope’s computer. It is easy to set up and simple to use. I am certain any user will discover that using the data, display, and easy interface of an i-device will be far superior to what came with the telescope. If you have a telescope, and i-device, and want to make the connection, this is definitely the way to go.</p>
<p><strong>Author’s note</strong>: In the next review, I discuss Southern Star’s SkyFi, a device that lets you wirelessly connect your telescope computer to your WiFi enabled computer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2209&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/07/11/skywire-serial-accessory-review-july-11-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f79b3899385e8e2f9b8733ef8bc51ad7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tedbade</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/sky-setup2.jpg" medium="image">
			<media:title type="html">Sky setup2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/ipod-with-skys.jpg" medium="image">
			<media:title type="html">iPod with skyS</media:title>
		</media:content>
	</item>
		<item>
		<title>July 10, 2011 – The Greening Continues: New Eclectic Examples of Environmental Technologies</title>
		<link>http://mhreviews.wordpress.com/2011/07/10/july-10-2011-%e2%80%93-the-greening-continues-new-eclectic-examples-of-environmental-technologies/</link>
		<comments>http://mhreviews.wordpress.com/2011/07/10/july-10-2011-%e2%80%93-the-greening-continues-new-eclectic-examples-of-environmental-technologies/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 22:08:31 +0000</pubDate>
		<dc:creator>harrybabad</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Environmental Posts]]></category>
		<category><![CDATA[The Greening Continues, by Harry {doc} Babad]]></category>
		<category><![CDATA[Black Carbon]]></category>
		<category><![CDATA[Carbon Pollution]]></category>
		<category><![CDATA[carbon sequestration]]></category>
		<category><![CDATA[Commuter Bicycles]]></category>
		<category><![CDATA[Electrical Bicycles]]></category>
		<category><![CDATA[Flying Windmills]]></category>
		<category><![CDATA[Fujushima Dalichi]]></category>
		<category><![CDATA[Generation IV Reactors]]></category>
		<category><![CDATA[Hydrocarbon Photosynthesis]]></category>
		<category><![CDATA[IAEA Findings]]></category>
		<category><![CDATA[IPCC]]></category>
		<category><![CDATA[Nuclear Efficiency]]></category>
		<category><![CDATA[Particle Pollution]]></category>
		<category><![CDATA[Primary References]]></category>
		<category><![CDATA[Renewable Energy]]></category>
		<category><![CDATA[Richard Feynman]]></category>
		<category><![CDATA[Secondary References]]></category>
		<category><![CDATA[Solar Towers]]></category>
		<category><![CDATA[Wind/Nuclear Symbiosis]]></category>

		<guid isPermaLink="false">http://mhreviews.wordpress.com/?p=2195</guid>
		<description><![CDATA[By Harry {doc} Babad, © Copyright 2011, All rights Reserved. Greening Introduction REFERENCES AND THEIR USES – A late night musing The Intergovernmental Panel on Climate Change (IPCC) is making changes to improve its scientific integrity. The move comes in part because of mistakes discovered in the panel&#8217;s 2007 assessment, including the incorrect statement that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2195&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>By Harry {doc} Babad, © Copyright 2011, All rights Reserved.</p>
<p><strong>Greening Introduction</strong></p>
<p><em><span style="text-decoration:underline;">REFERENCES AND THEIR USES</span></em><em> – A late night musing</em></p>
<p>The Intergovernmental Panel on Climate Change (IPCC) is making changes to improve its scientific integrity. The move comes in part because of mistakes discovered in the panel&#8217;s 2007 assessment, including the incorrect statement that Himalayan glaciers would melt away by 2035.</p>
<p>Last year, the Inter Academy Council, <span style="text-decoration:underline;">a coalition of national scientific academies</span>, recommended changes to IPCC to address these and other issues (C&amp;EN, Sept. 6, 2010, page 15). At a meeting in mid-May, IPCC adopted a procedure for evaluating and correcting errors in its assessments. The group also established a standardized method for addressing scientific uncertainties in its reports, and it approved a new conflict of interest policy.</p>
<p><em>The present approach is compliant to the reviews of the IPCC by leading British and American Senior Technical advisory groups (e.g., NAS)</em></p>
<p>In addition, the panel set a benchmark for scientific literature <a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image1.jpg"><img class="alignright size-full wp-image-2196" title="7-11-image1" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image1.jpg?w=614" alt=""   /></a>used for its assessments. This gives priority to peer-reviewed studies but recognizes that reports from governments, industry, and research institutions may provide crucial data even if they aren&#8217;t peer reviewed. It states that magazines and newspapers are generally not valid sources of scientific in formation and bans the use of material from broadcast media, blogs, social networking sites, and personal communications of scientific results.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="468">Note that the criteria the panel espouses are comparable to those I use in determining whether or not to use a reference in one of my articles.However, there is one major difference. I seldom use primary references (e.g., journals) as examples for further exploration for you my readers. First, such use of such would be counterproductive as a communications tool on the basis of knowledge accessibility.</p>
<p>Many of you, including my self, would be swamped by journal article contents in areas we had not studied Alternately if long ago studies, has evolved to the point where can not easily connect either with the concept details or newly evolved semantics. There for the contents would be, in terms of understanding, inaccessible to us!</p>
<p>Second, the entireties of journal articles are not easily available via Google and other publicly accessible search methods. Although, the abstracts of the article are, they are not detailed enough to serve as serious information even to a casual ‘knowledge-hungry’ reader. Again it’s a matter of access.</p>
<p>You can access full journal articles through a public library or local college library, only if the local agencies have individual subscriptions to that service. [No I’ve not tried the Library of Congress for journal\access detail.] Buying articles for archive reference copy use w/o the academic and public library discount is pricy… Certainly, as a routine expense, out of my budget. Indeed getting access to an occasional primary reference is the primary reason I maintain local library cards; other information is as easily available from my desktop iMac.</p>
<p>Therefore all of my references will remain secondary and shall only be used after a sanity, logic, and check on WIIFT &lt;What’s in it for them&gt;.</p>
<p>Check out my approaches to topic selection in the endnote entitled <span style="text-decoration:underline;">Sources and Credits</span>.</td>
</tr>
</tbody>
</table>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p align="center"><em> The New Snippets and Topics ——— Titles, As Usual, in No Formal Order </em></p>
<p> <strong><span style="text-decoration:underline;">References and Their Uses</span></strong><em> – A late night musing</em></p>
<p><a href="http://www.foxnews.com/scitech/2011/01/20/new-reactor-harnesses-suns-energy-like-plants/"><strong>New Reactor Harnesses Sun&#8217;s Energy Like Plants</strong></a><strong> </strong>—<strong> </strong>The science keeps getting us closer but we’re a long ways from commercial or even breakeven costs.</p>
<p><a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/corerd.html"><strong>Carbon Sequestration </strong><strong>Core NETL R&amp;D</strong></a><strong> </strong>— The DOE Program</p>
<p><a href="http://pogue.blogs.nytimes.com/2011/02/03/the-commuter-bike-redesigned-and-electrified/?nl=technology&amp;emc=cta1"><strong>The Commuter Bike Redesigned and Electrified</strong></a><strong> </strong>— If I was a rich man…<strong></strong></p>
<p><a href="http://www.economist.com/node/18175423"><strong>Pollution &amp; Global Warming</strong></a><strong> </strong>— Climate change in black and white</p>
<p><a href="https://netfiles.uiuc.edu/mragheb/www/Symbiotic%20coupling%20of%20wind%20power%20and%20nuclear%20power%20generation.pdf"><strong>Symbiotic Coupling Of Wind Power And Nuclear Power Generation</strong></a><strong> </strong>—<strong> </strong>Finally someone serious about merging green power, renewable but intermittent Wind and greenhouse free baseload effective nuclear.</p>
<p><a href="http://pubs.acs.org/isubscribe/journals/cen/88/i37/html/8837sci1.html"><strong>Nuclear Efficiency</strong></a><strong> </strong>— With new fuel formulations, reactors could extract more energy, and reduce hazardous waste<strong></strong></p>
<p><a href="http://discovermagazine.com/2010/dec/08-is-coal-killer-flying-thousands-feet-in-sky"><strong>Is the Coal Killer Flying Thousands of Feet Up in the Sky?</strong></a><strong> </strong>— A new meaning to go fly a self powered kite.<strong></strong></p>
<p><strong>IAEA Fujushima Dalichi Fact Finding Mission Summary</strong> <strong>and Initial Findings</strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><strong> New <em>Reactor</em> Harnesses Sun&#8217;s Energy Like Plants </strong><strong>— </strong>The science keeps getting us closer but we’re a long ways from commercial or even breakeven costs.<strong></strong></p>
<p>Researchers have unveiled a prototype reactor, which mimics plant life, turning the Sun’s energy to make hydrocarbon fuel. Developed by a team of scientists from the United States and Switzerland, The device uses the Sun’s rays and the <a href="http://en.wikipedia.org/wiki/Cerium%28IV%29_oxide">mineral ceria</a> (cerium oxide), to break down water or carbon dioxide into energy, which can be stored and transported.</p>
<p>Harnessing the power of the sun has been but a pipe dream, as conventional solar panels must use the power they generate <em>in situ</em>. With the ceria-fueled reactor, this issue is solved</p>
<p>The scientists, who include Caltech professor <a href="http://addis.caltech.edu/">Sossina M. Haile</a> and Swiss Institute of Energy Technology professor <a href="http://www.pre.ethz.ch/staff/?id=steinfeld">Aldo Steinfeld</a>, wanted to figure out a way to harness the sun efficiently, without incredibly rare materials. They decided on testing ceria, a relatively abundant “rare-earth” metall<em>ic</em> <em>oxide</em> with very special properties.</p>
<p>The solar reactor takes advantage of the <em>ceramic</em> ceria&#8217;s ability to &#8220;exhale&#8221; oxygen from its crystalline framework at very high temperatures and then &#8220;inhale&#8221; oxygen back in at lower temperatures. &#8220;What is special about the material is that it doesn&#8217;t release all of the oxygen. That helps to leave the framework of the material intact as oxygen leaves,&#8221; Haile explains. &#8220;When we cool it back down, the material&#8217;s thermodynamically preferred state is to pull oxygen back into the structure.&#8221;</p>
<p><em>Why start the long hard journey to practicality… click the link.</em></p>
<p>From: <a href="http://www.foxnews.com/scitech/2011/01/20/new-reactor-harnesses-suns-energy-like-plants/">FoxNews.com, January 20, 2011</a></p>
<p><em>An alternative approach to generating solar power, based on making more effective use of </em><em>Thermoelectric devices then have been previously been possible</em><em> is referenced below.</em></p>
<p><a href="http://www.economist.com/node/18678935/"><strong>Solar Tower—The Third Way.</strong></a><strong> (</strong>A new method of making electricity from sunlight has just been tested)<strong> </strong>Reported in the May 12<sup>th</sup>, 2011 Economist.<strong></strong></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><strong> </strong><a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/corerd.html"><strong>Carbon Sequestration NETL </strong><strong>Core R&amp;D</strong></a><strong> </strong>— The DOE Program</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="464"><em>Many of you know that I have </em><a href="../../../../../2011/02/05/february-5-2011-the-greening-continues-preventing-co2-release/"><em>grave doubts</em></a><em> about carbon sequestration, putting carbon, as a gas, in underground geological repositories.  Nevertheless, in the interest of fairness, DOE’s efforts on the topic are summarized below, the information taken from their </em><em>The National Energy Technology Laboratory (NETL) web pages. I am pleased to note that other, international efforts are approaching the demonstration stage, but still fear for the risks associated with diverse environmental (geohydrologic-seismic) environments for any site-specific demonstration of long-term storage or disposal. Each and every location, not just environmental setting, must be proven safe for the so-called ‘disposal’ period, despite effect of plate tectonics (earthquakes) and perhaps climate change. [Think nuclear waste repositories.]</em><em> </em></p>
<p><em>Therefore herein, I am sharing only information focused primarily on the two areas of</em> <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/precombustion.html">Pre-Combustion Capture</a> and <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/co2utilization.html">CO<span style="text-decoration:underline;"><sub>2</sub></span> Utilization</a>. However, <em><span style="text-decoration:underline;">the references I, link to all the current DOE efforts</span>, my interests continue to mainly focus only on areas where the long term economic risk is a more important factor than the environmental ones.</em></td>
</tr>
</tbody>
</table>
<p><em></em><a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/corerd.html">The DOE Core Research and Development (Core R&amp;D)</a> <a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image2.jpg"><img class="alignright size-full wp-image-2197" title="7-11-image2" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image2.jpg?w=614" alt=""   /></a>focuses on developing new carbon capture and storage (CCS) technologies to a pre-commercial demonstration level. The Core R&amp;D Element includes five technical focus areas: (1) <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/precombustion.html">Pre-Combustion Capture</a>; (2) <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/mva.html">Monitoring, Verification, and Accounting</a> (MVA); (3) <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/storage.html">Geologic Storage</a>; (4) <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/simulation.html">Simulation and Risk Assessment</a>; and (5) <a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/co2utilization.html">CO<span style="text-decoration:underline;"><sub>2</sub></span> Utilization</a>.</p>
<p><em>From my perspective, until the issue of ‘licensing’ geologic site for long storage [… let’s say 100 -300 years&gt; or disposal &lt; ≥ 1000 years&gt; is actually address and consensus reached on it resolution, the most useful part of the pram is the isolation, capture and reuse of the </em><em>CO<sub>2</sub></em><em> we emit in generating electricity from coal, oil, and natural gas. Remember, </em><em>CO<sub>2</sub></em><em>has no half-life. If we don’t concert it to a solid mineral form or release it to challenge the next ice ago, it will do damage whenever it get released back in to the atmosphere. </em></p>
<p><span style="text-decoration:underline;">Carbon dioxide (CO<sub>2</sub>) capture</span> is defined as the separation of CO<sub>2</sub> from emissions sources or from within the CO<sub>2</sub> emission process. When CO<sub>2</sub> is recovered from emissions sources, such as power plant flue gases, it is in a concentrated stream that is amenable to storage or conversion. Currently this process is costly and energy intensive, accounting for the majority of the cost of storage.</p>
<p>The Carbon Sequestration Program (<a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/precombustion.html">Pre-Combustion Capture Focus Area</a>) is focusing on developing technologies used to reduce the cost of capture and separation of CO<sub>2</sub> in pre-combustion systems. Pre-combustion capture is mainly applicable to Integrated Gasification Combined Cycle (IGCC) power plants and refers to removal of the CO<sub>2</sub> from the synthesis gas (syngas) prior to its combustion for power production. CO<sub>2</sub> is concentrated and at a high-pressure as a result. A simplified process schematic for pre-combustion CO<sub>2</sub> capture is shown below. Near-term applications of CO<sub>2</sub> capture from pre-combustion systems will likely involve improvements to the existing state-of-the-art physical or chemical absorption processes being used by the power generation industry. <a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image3.jpg"><img class="aligncenter size-full wp-image-2198" title="7-11-image3" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image3.jpg?w=614" alt=""   /></a><em></em></p>
<p>Carbon dioxide (CO<sub>2</sub>) utilization efforts focus on pathways and novel approaches for reducing CO<sub>2</sub> emissions by developing beneficial uses for the CO<sub>2</sub> that will mitigate CO<sub>2</sub> emissions in areas where geologic storage may not be an optimal solution. CO<sub>2</sub> can be used in applications that could generate significant benefits. It is possible to develop alternatives that can use captured CO<sub>2</sub> or convert it to useful products such chemicals, cements, or plastics. Revenue generated from the utilized CO<sub>2</sub> could also offset a portion of the CO<sub>2</sub> capture cost.</p>
<p>Processes or concepts must take into account the life cycle of the process to ensure that additional CO<sub>2</sub> is not produced beyond what is already being removed from or going into the atmosphere. Furthermore, while the utilization of CO<sub>2</sub> has some potential to reduce greenhouse gas emissions to the atmosphere, CO<sub>2</sub> has certain disadvantages as a chemical reactant. Carbon dioxide is rather inert and non-reactive. This inertness is the reason why CO<sub>2</sub> has broad industrial and technical applications. Each potential use of CO<sub>2</sub> has an energy requirement that needs to be determined; and the CO<sub>2</sub> produced to create the energy for the specific utilization process must not exceed the CO<sub>2</sub> utilized.</p>
<p><em>Want to know more about </em><a href="http://www.netl.doe.gov/technologies/carbon_seq/corerd/co2utilization.html"><em>potential uses of captured CO2</em></a><em>, check out the link.</em><em></em></p>
<p align="center"><strong>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</strong></p>
<p> <a href="http://pogue.blogs.nytimes.com/2011/02/03/the-commuter-bike-redesigned-and-electrified/?nl=technology&amp;emc=cta1"><strong>The Commuter Bike Redesigned and Electrified</strong></a><strong> </strong>— If I was a rich man…<strong></strong></p>
<p>This week, most people on the East Coast were <a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image4.jpg"><img class="alignright size-full wp-image-2199" style="border:1px solid black;" title="7-11-image4" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image4.jpg?w=614" alt=""   /></a>hunkering down indoors, prepared for this winter’s fourth Snowstorm of the Century. I (<em>Dave Pouge</em>) on the other hand, was riding around a hotel ballroom on a <a href="http://www.yikebike.com/">YikeBike</a>. And I’ll be straight with you: I had kind of a Segway moment.</p>
<p>Remember that? After inventor Dean Kamen first gave secret demos of his self-balancing upright scooter to industry hotshots, their awed reactions included remarks like, “They’ll redesign cities for this thing.” Of course, the Segway never did become as commonplace as the bicycle, and the YikeBike won’t either. But what a cool idea.</p>
<p><a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image5.jpg"><img class="alignleft size-full wp-image-2200" style="border:1px solid black;margin:2px 1px;" title="7-11-image5" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image5.jpg?w=614" alt=""   /></a>It’s an electric bike. Top speed is about 15 miles an hour. Buttons that are right under your thumbs on the handlebars smoothly controls the accelerator and brakes. The handlebars themselves are at your waist level, which might seem odd but makes sense—you ride sitting fully upright instead of bending forward, as on a bicycle. That design also means that you can jump forward off the bike in a crisis; there’s no hardware in your way.</p>
<p>Here’s the twist: the whole thing folds down into its own front wheel. You undo four stainless-steel latches, then snap the back wheel, seat and handlebars into the front one. It takes about 10 seconds. (Watch the video embedded in the linked post to get the idea.)</p>
<p>After providing lots more details, David notes,<strong> “</strong>I’m not sure how many takers of the high tech carbon composite the YikeBike will have at $3,600. But I really admire Mr. Ryan’s lean, green folding machine, and I wish him the best of luck.”</p>
<p><a href="http://pogue.blogs.nytimes.com/2011/02/03/the-commuter-bike-redesigned-and-electrified/?nl=technology&amp;emc=cta1">The YikeBike on Pouge’s Posts</a> – <span style="text-decoration:underline;">The Latest in Technology from David Pogue, </span>June 30, 2011, for the New York Times.</p>
<p><em>You want another choice…</em></p>
<p><a href="http://news.preownedbike.com/2009/09/after-yikebike-its-turn-of-hondas-u3-x/"><strong>After YikeBike Its Turn Of Honda’s U3-X!</strong></a><strong> — </strong>Another fun one-wheeler?</p>
<p align="center"><strong>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</strong></p>
<p><strong> </strong><a href="http://www.economist.com/node/18175423"><strong>Pollution &amp; Global Warming</strong></a>—Climate change in black and white</p>
<p>As noted in a recent Economist article, black and white (data) has many grey aspects. When air pollution hurts people’s health and heats up the climate it makes sense to do something about it. But, what about pollution that cools the planet?</p>
<p>An ideal fossil-fuel power plant would produce power, carbon dioxide and nothing more. Less-than-ideal ones—not to mention other devices for the combustion of carbon, from diesel generators to brick kilns and stoves burning dung—also emit various gases and gunk. These often cause local environmental problems, damaging lungs, hurting crops and shortening lives. And some of the gunk, notably soot or “black carbon”, can warm the planet, too.</p>
<p>Next week (February 28, 2011) ministers attending the governing council of the United Nations Environment Programme (UNEP) in Nairobi will be presented with the summary, <em>which I could not find</em>, of a new report on how fighting air pollution can help the global climate (the report itself is due to follow a couple of months later). The summary makes a powerful case for acting on two short-lived climate “forcing’s”, factors that change the amount of energy the atmosphere absorbs, as carbon dioxide does, but stay in it only briefly. One is black carbon and the other is ozone. The later is both vital for blocking ultraviolet rays in the stratosphere but hazardous in the bits of the atmosphere where plants live and people have to breathe.</p>
<p>According to the UNEP report, implementing measures known to be effective against these two pollutants over the next 20 years would have “immediate and multiple” benefits. These include (1) <em>average</em> <em>world</em> temperatures between 0.2°C and 0.7°C lower than they would otherwise be by 2050 and (2) the saving of between 0.7 and 4.6 million lives with improved air quality. For black carbon the measures are largely in the form of more efficient ways of burning things; for ozone they mostly involve reducing emissions of methane, which encourages reactions in the atmosphere that make ozone. The black-carbon measures save a lot more lives than ozone control, but are trickier to assess in terms of climate</p>
<p align="right">Beijing, but it could have any major urban industrial community in Asia.<a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image6.jpg"><img class="alignright size-full wp-image-2201" title="7-11-image6" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image6.jpg?w=614" alt=""   /></a></p>
<p><em>The article continues with a discussion of the history of </em><em>UNEP’s interest in black carbon</em><em> including observations initiated by Veerabhadran Ramanathan, of the Scripps Institute of Oceanography in La Jolla, California, and Paul Crutzen, a Dutch climate scientist who was one of the first to theorize about “nuclear winter”. These studies revealed the hitherto unappreciated extent of an “Asian brown cloud” thousands of kilometers across and fed by fires, diesel fumes and all manner of other things. </em></p>
<p><em>The article then focuses on the climate politics, as opposed to the science of black carbon; since reducing CO2 release internationally seems stalled politics takes the forefront. [Check it out, this is not intuitive. It’s an interesting read for the non-politicians amongst us.] </em></p>
<p><em>The article, lengthy but well written, ends with a straight forward section called “Clouding the Issues” that deals with both potential warming and cooling effects of atmospherically distributed and surface settled carbon soot. Who said science is black or white?<strong> </strong></em></p>
<p><em>There’s no punch line but the realization at times, due to <span style="text-decoration:underline;">doubling effects, </span>more R&amp;D is needed before any action makes sense, especially from regulatory forcing factors.</em><em></em></p>
<p><em>Indeed, if the Arctic is warming faster than might be expected, other parts of the world are warming slower. One reason for this, widely accepted by scientists but little appreciated by policymakers, is that the sulphur given off by coal-fired power stations and some other industrial fossil-fuel use. Sulphur is very good at forming reflecting aerosols that can also make natural clouds both whiter and possibly longer lasting, which provides an added cooling effect. Acid rains anyone?</em></p>
<p>It is no coincidence that a non-governmental organization active in the fight against air pollution, America’s Clean Air Task Force, now strongly advocates more research into the pros and cons of geoengineering. Jason Blackstock, at the Centre for International Governance Innovation in Waterloo, Canada, points out that black carbon; sulfates and geoengineering are all neglected by the institutions that govern climate policy. He is looking at ways to bring the topics together in the broader context of how nations make choices about the climate. If human action on the climate is ever to be properly deliberate, it must first be properly deliberated.</p>
<p><em>This is a thought-provoking read that should threaten any ‘nature is simple paradigm’. I’ll be doing an Op-Ed analysis on Geoengineering for release in July</em><a href="../../../../../home/environmental-issues/"><em>; keep clicking to keep me honest and on schedule.</em></a><em></em></p>
<p>The Economist Magazine, <a href="http://www.economist.com/node/18175423">a staff report</a>, Feb 17th 2011.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><strong> </strong><a href="https://netfiles.uiuc.edu/mragheb/www/Symbiotic%20coupling%20of%20wind%20power%20and%20nuclear%20power%20generation.pdf"><strong>Symbiotic Coupling Of Wind Power And Nuclear Power Generation</strong></a><strong> </strong><strong>— </strong>Finally someone serious about merging green power, renewable but intermittent Wind and greenhouse free baseload effective nuclear.</p>
<p>I’ve copied the abstract from the peer reviewed Proceedings<em> of the 1st International Nuclear and Renewable Energy Conference (INREC10</em>), Amman, Jordan, March 21-24, 2010. The paper by <em>Kate Rogers and Magdi Ragheb </em>from the Department of Electrical and Computer Engineering and the Department of Nuclear, Plasma and Radiological Engineering at University of Illinois at Urbana-Champaign. <em>A bit of disclosure, I got my Ph. D. in Organic Chemistry for the U of I at Urbana.</em></p>
<p><em>Why?  It has always perplexed me why so little has been published about use of coupled technologies (e.g., nuclear and wind or solar; and perhaps geothermal and wind power) in trying to get cost effective and function solutions to our energy needs while minimalizing direct worsening greenhouse gas releases? The life cycle releases still remain since you must mine-smelt-manufacture the facility, deal with land use footprint and water issues. However these environmental costs are a small portion of the pollution costs of facility based on transporting and burning hydrocarbons for 20-40 years. Okay, here’s the abstract. Check out the whole article…as </em>Arthur Stanton Eric &#8220;Arte&#8221; Johnson would say on Laugh in<strong>, </strong><em>’it’s verrry interesting.</em></p>
<p>The coupling of wind power production as an intermittent supply to nuclear power generation as a base load supply is discussed. Wind turbines on a standby operational mode are net importers of power for their control and yaw mechanisms. They need a supply of about 5 kW of power from an existing grid. They also require the vicinity of a power grid with excess capacity to export their generated power. A choice is the construction of wind farms in the immediate vicinity low population density population zones around nuclear power plants.</p>
<p>An example, <em>used by the authors</em>, is the Grand Ridge wind farm adjacent to the LaSalle nuclear power plant near Versailles, Illinois. Since the best wind resources in the USA are located far from the industrial and population centers there is a need for connection to the grid trough High Voltage Direct Current (HVDC). Due to ramping considerations, the planned introduction of 20 percent of electrical wind production in the USA by 2020 would pose challenging grid stability issues. Energy storage alternatives such as hydrogen production, compressed air, flywheels, superconducting magnets and pumped storage, need serious consideration. <em>Doc agrees as long as the results are integrated into life-cycle system operations consideration… To misquote John Donne — no widget is an island!</em></p>
<p><em><span style="text-decoration:underline;">Another related and more current reference</span></em></p>
<p><em>Hybrid Power Plants: Could They Bank Roll Nuclear Power</em>? Nuclear Insider, 19 May 2011</p>
<p><a href="http://analysis.nuclearenergyinsider.com/industry-insight/hybrid-power-plants-could-they-bank-roll-nuclear-power?utm_source=newsletter&amp;utm_medium=nuc&amp;utm_campaign=1905">http://analysis.nuclearenergyinsider.com/industry-insight/hybrid-power-plants-could-they-bank-roll-nuclear-power?utm_source=newsletter&amp;utm_medium=nuc&amp;utm_campaign=1905</a></p>
<p><em>Except casually, I’ve not searched this particular mother lode of greening information so any feedback from readers would be welcome.  Doc.</em></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><strong> </strong><a href="http://pubs.acs.org/isubscribe/journals/cen/88/i37/html/8837sci1.html"><strong>Nuclear Efficiency</strong></a><strong> </strong>— With new fuel formulations, reactors could extract more energy, and reduce hazardous waste<strong></strong></p>
<p>When it comes to<strong> </strong>nuclear energy, the world is not exactly an early adopter of new technology: The vast majority of nuclear reactors running today falls into the so-called Generation II category and uses technology from the 1970s. Generation III reactors—the ones being built now or in the near future—are fundamentally based on the same water-cooled design, with improvements in safety, reliability, and efficiency.</p>
<p>It is in the development of Generation IV reactors—the ones that will start up around 2030—that nuclear energy will see a significant change in technology. The six models put forth by the Generation IV International Forum, chartered in 2001 to carry out nuclear energy research and development, aspire not only to be even safer and more reliable than previous generations, but also to get a greater return from the energy source—by extracting up to 90% of the available energy in their fuels instead of the 5% more typical of today’s reactors. In some cases, the reactors will use reprocessed or recycled waste fuel from other reactors. The fuels may also incorporate some of the longest lasting radioisotopes from waste fuel, including americium, curium, and neptunium, thereby turning these radiotoxic isotopes into less hazardous materials while providing a little extra energy in the process. To reach those goals, and especially to reach them safely, nuclear scientists are working to develop and evaluate new fuel formulations and materials.</p>
<p>Current reactors use either uranium dioxide<a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image7.jpg"><img class="alignright size-full wp-image-2202" title="7-11-image7" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image7.jpg?w=614" alt=""   /></a> or a mix of uranium dioxide and plutonium dioxide. The fuel powder is pressed into pellets that are about 1 cm in diameter. The pellets are then inserted into thin tubes to form rods. The tube material, known as cladding, is considered an integral part of the fuel. In traditional reactors, the cladding is a zirconium alloy.  After the rods are sealed, they are assembled into bundles of dozens to hundreds of rods; several hundred of the bundles make up the core of a reactor.</p>
<p><em>Jyllian N. Kemsley goes on to discuss, in a well-written and clearly illustrated fashion, the Generation IV reactors and how they will and can achieve bowered costs, safer operation and minimal need to dispose of high-level long lived radioactive waste. What I drew me to this article was the realization that outside of the US, that future is becoming now!</em><em></em></p>
<p><a href="http://pubs.acs.org/isubscribe/journals/cen/88/i37/html/8837sci1.html">Article by Jyllian N. Kemsley, originally published in the ACS’ Science &amp; Technology Magazine, September 13, 2010.</a></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p> <a href="http://discovermagazine.com/2010/dec/08-is-coal-killer-flying-thousands-feet-in-sky"><strong>Is the Coal Killer Flying Thousands of Feet Up in the Sky?</strong></a><strong> </strong>— A new meaning to go fly a self powered kite.<strong></strong></p>
<p>JoeBen Bevirt is building an inventive, flying turbine<a href="http://mhreviews.files.wordpress.com/2011/07/7-11-image8.jpg"><img class="alignright size-full wp-image-2203" title="7-11-image8" src="http://mhreviews.files.wordpress.com/2011/07/7-11-image8.jpg?w=614" alt=""   /></a> in a bold bid to make wind power practical. Bonny Doon, California is hardly the place one thinks of visiting for high-tech thrills. Once an old logging camp, the tiny hamlet northwest of Santa Cruz, California, sits at the end of a country road, past miles of empty beaches and strawberry farms. Hang a left before you reach the vineyard and you find a short dirt track leading to a barn. And then, amid hundreds of acres of redwoods out back, you encounter an avatar of the future—a whirring black gizmo, about the size of a bread box, zipping around overhead. The strange flying object is controlled remotely by a cluster of giggling engineers. Their leader, a tall man with the build of a gazelle, windswept blond hair, and a permanent grin, starts extolling the possibilities of his device before he remembers to introduce himself.</p>
<p>To inventor <a href="http://www.stanfordalumni.org/news/magazine/2009/janfeb/red/joby.html">JoeBen Bevirt</a>, the flying black box holds our clean-energy future, a world in which wind turbines lift off the ground and fly among the clouds. His company, <a href="http://www.jobyenergy.com/tech">Joby Energy, designs these turbines from scratch</a>. “In order to have truly sustainable energy, we’ve got to beat coal,” he says. “We are going to need game-changing technology. I believe that technology is high-altitude wind.”</p>
<p>In concept his idea makes sense: Wind power from the sky would strip turbines of their expensive, heavy towers and oversize blades, allowing them to collect energy unobtrusively from the richest lode of wind in the world. Winds at an altitude of 30,000 feet carry 20 times as much energy as those near the ground, representing a source of power that could be a fraction of the cost of coal. The challenge, observers say, is keeping such turbines aloft. ——— <em>Enjoy, read the rest of the article summary-The full version is, alas, available only to subscribers like me</em>.</p>
<p align="center"><a href="http://discovermagazine.com/2010/dec/08-is-coal-killer-flying-thousands-feet-in-sky">By Erik Vance; photography by Sean Fenn In Discover Magazine, February 8, 2011.</a></p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><strong> IAEA Fujushima Dalichi Fact Finding Mission Summary</strong> <strong>and Initial Findings</strong>_ <em>A reference masquerading as a topic. I will deal with this topic in March of 2012, when most of the sound and fury has died down, and the facts have been collected, subject to peer review and published.  Meanwhile, we likely be watching the field days being enjoyed both by the anti-nuclear greens and the folks at big oil-coal and gas who profit as the earth appears to warm. From their perspective the only significant competitor, in the absence of a carbon tax, of CO2 and other green house gas free energy is being politically assaulted. No the nuclear renaissance is not dead, some government’s believe both killing their people with smog, and supporting the onward going warming is wrong. </em></p>
<p>I’ve been wondering whether the European Union, and perhaps the UK and Japan might impose a Value Added Tax [VAT] on product produced with electricity generated by pollution based plants. How? It’s naively simple. The VAT should be the ratio of ‘clean to polluting energy generated within the exporting country, other than transportation related. I know it’s in constraint of trade, but so are likely rising sea levels and the drowning of our port cities.</p>
<p><a href="http://www-pub.iaea.org/MTCD/meetings/PDFplus/2011/cn200/documentation/cn200_Final-Fukushima-Mission_Report.pdf">IAEA International Fact Finding Expert Mission Of The Nuclear Accident Following The Great East Japan Earthquake And Tsunami  Tokyo, Fukushima Dai-ichi NPP, Fukushima Dai-ni NPP and  Tokai NPP, Japan   24 May- 1 June 2011     Preliminary Summary</a></p>
<p><a href="http://www.iaea.org/newscenter/news/2011/japanmission.html">IAEA Fact-Finding Team Completes Visit to Japan (1 June 2011)</a> – Preliminary Assessment</p>
<p><a href="http://www.iaea.org/newscenter/focus/fukushima/">IAEA links to the Japanese Reactor Accidents and their Aftermath</a>.</p>
<p align="center"><strong>- &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8211; - &#8212; &#8211; - &#8211; - &#8211; - &#8211; -</strong></p>
<p><strong></strong><span style="text-decoration:underline;">Endnotes</span></p>
<p>Copyright Notice: Product and company names and logos in this review may be registered trademarks of their respective companies.</p>
<p>Some of the articles listed in this column are copyright protected – their use is both acknowledge and is limited to educational related purposes, which this column provides.</p>
<p><em><span style="text-decoration:underline;">Sources &amp; Credits</span></em><em>: </em> — Many of these items were found by way of the links in the newsletter <em>NewsBridge</em> <em>of ‘articles of interest’</em> to the national labs library technical and regulatory agency users. <em>NewsBridge</em> is electronically published by the Pacific Northwest National Laboratories, in Richland WA.  If using <em>NewsBridge</em> as a starting point, I follow the provided link to the source of the information and edit its content (mostly by shortening the details) for information for our readers. I also both follow any contained links, where appropriate, in the actual article, and provide you those references as well as those gleaned from a short trip to Google-land. Obviously if my source is a magazine or blog that the material I work with.</p>
<p>In addition, when copying materials that I cite, I do not fill the sourced ‘quoted’ words with quotation marks, the only place I keep quotes intact is where the original article ‘quotes’ another secondary source external to itself.  Remember, when Doc sticks his two bits in, its in italics and usually indented.</p>
<p><em><span style="text-decoration:underline;"> </span></em></p>
<p><strong>In Closing</strong></p>
<p>Readers please read about my paradigms views, prejudices and snarky attitudes before flaming me… I show and tell my beliefs and paradigm at:</p>
<p><a href="../../../../../2010/05/23/the-greening-continues-a-column-intro-may-23-2010/">http://mhreviews.wordpress.com/2010/05/23/the-greening-continues-a-column-intro-may-23-2010/</a></p>
<p>The materials I share in the topical snippets that follow come from the various weekly science and environmental magazines and newsletters, both pro or anti any given subject’s focus or technologies; as well as excerpts from blogs and ‘lists’ to which I subscribe.</p>
<p><em>Article selection (my article – my choice} are obviously and admittedly biased by my training, experience and at rare times my emotional and philosophical intuitive views of what works and what will not… But if you have a topic I neglect, send me feedback and I’ll give it a shot.</em></p>
<p>Since my topic segments are only a partial look at the original materials, click on-through the provided link if you want more details, as well as &lt;often&gt; to check out other background references on the topic(s). … And yes I trust Wikipedia, but only if I’ve checkout most of an articles references for bias and accuracy!       <em>Doc</em>.</p>
<p>QUOTE de Mois — A Richard Feynman Cornucopia</p>
<ul>
<li>The first principle is that you must not fool yourself and you are the easiest person to fool.  I believe that a scientist looking at nonscientific problems is just as dumb as the next guy.</li>
<li>For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.</li>
<li>Scientific views end in awe and mystery, lost at the edge in uncertainty, but they appear to be so deep and so impressive that the theory that it is all arranged as a stage for God to watch man&#8217;s struggle for good and evil seems inadequate.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mhreviews.wordpress.com/2195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mhreviews.wordpress.com/2195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mhreviews.wordpress.com/2195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mhreviews.wordpress.com/2195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mhreviews.wordpress.com/2195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mhreviews.wordpress.com/2195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mhreviews.wordpress.com/2195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mhreviews.wordpress.com/2195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mhreviews.wordpress.com&amp;blog=13779789&amp;post=2195&amp;subd=mhreviews&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mhreviews.wordpress.com/2011/07/10/july-10-2011-%e2%80%93-the-greening-continues-new-eclectic-examples-of-environmental-technologies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8a8173a81cb83ee8d0ea24bd673c841?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">harrybabad</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image1.jpg" medium="image">
			<media:title type="html">7-11-image1</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image2.jpg" medium="image">
			<media:title type="html">7-11-image2</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image3.jpg" medium="image">
			<media:title type="html">7-11-image3</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image4.jpg" medium="image">
			<media:title type="html">7-11-image4</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image5.jpg" medium="image">
			<media:title type="html">7-11-image5</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image6.jpg" medium="image">
			<media:title type="html">7-11-image6</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image7.jpg" medium="image">
			<media:title type="html">7-11-image7</media:title>
		</media:content>

		<media:content url="http://mhreviews.files.wordpress.com/2011/07/7-11-image8.jpg" medium="image">
			<media:title type="html">7-11-image8</media:title>
		</media:content>
	</item>
	</channel>
</rss>
