<?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>Anders Andreasen Blog</title>
	<atom:link href="http://aandreasen.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aandreasen.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 22 Jan 2012 23:33:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='aandreasen.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Anders Andreasen Blog</title>
		<link>http://aandreasen.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://aandreasen.wordpress.com/osd.xml" title="Anders Andreasen Blog" />
	<atom:link rel='hub' href='http://aandreasen.wordpress.com/?pushpress=hub'/>
		<item>
		<title>gfortran headaque reading from piped input</title>
		<link>http://aandreasen.wordpress.com/2012/01/17/gfortran-headaque-reading-from-piped-input/</link>
		<comments>http://aandreasen.wordpress.com/2012/01/17/gfortran-headaque-reading-from-piped-input/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 11:21:16 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[chemical equilibrium]]></category>
		<category><![CDATA[fortran]]></category>
		<category><![CDATA[gfortran]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=373</guid>
		<description><![CDATA[UPDATE: I have investigated further and it seems that it is somehow related to differences between stdin when read from a redirected file and a pipe stream. I tested with Sun Studio and received a similar error, so it seems that this is not compiler specific. Btw. the code I am testing/wrapping fails when trying to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=373&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE:</strong> I have investigated further and it seems that it is somehow related to differences between stdin when read from a redirected file and a pipe stream. I tested with Sun Studio and received a similar error, so it seems that this is not compiler specific. Btw. the code I am testing/wrapping fails when trying to &#8220;BACKSPACE&#8221;  (previous record) in the read input. Found some info that might relate somehow to the difficulties I am facing at the <a href="http://software.intel.com/en-us/forums/showthread.php?t=75906">Intel Forum</a>.</p>
<p>My current  hobby project is trying to wrap a NASA legacy program for chemical equilibrium calculations (<a href="http://www.grc.nasa.gov/WWW/CEAWeb/ceaHome.htm">NASA CEA</a>) in python. The first step has been tweaking the program to read input from stdin (<a href="http://www.ibiblio.org/pub/languages/fortran/ch2-8.html">uni</a>t 5 in fortran)  and write output to stdout (unit 6 in fortran). In its current state it reads from an input file and writes to another file. This was faily easy to accomplish by changing the unit numbers. So far so good. It works fine if a run the program with stdin and stdout redirected like<code></code></p>
<p><code>cea2 &lt; input &gt; output<br />
</code><br />
However, things go wrong if i use piped stdin like<br />
<code><br />
cat input | cea2 &gt; output<br />
</code><br />
I really need this, since I would like to use the <a href="http://docs.python.org/library/subprocess.html">subprocess.Popen</a> in python in order to communicate with the program through piped input.</p>
<p>I am not a fortran programmer, and it is likely that I have done something wrong. This has been my working hypothesis so far. The program fails with a message saying somthing like &#8220;Illegal seek&#8221; and the <a href="http://software.intel.com/sites/products/documentation/hpc/compilerpro/en-us/fortran/lin/compiler_f/bldaps_for/common/bldaps_use_iost.htm">IOSTAT</a> exit code is 29 (STATUS= specifier on an OPEN statement is invalid. According to this <a href="http://publib.boulder.ibm.com/infocenter/macxhelp/v6v81/index.jsp?topic=%2Fcom.ibm.xlf81m.doc%2Fpgs%2Flr76.htm">site</a>), and it happens when the program tries to &#8220;<a href="http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?topic=%2Fcom.ibm.xlf101a.doc%2Fxlflr%2Fbackspace.htm">backspace</a>&#8221; in the read input. Somehow it may be stock at the end of file or something like that. A lot of googling didn&#8217;t bring up much, except this <a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47694">bug report</a> for gfortran. According to the mail archive it should be fixed in versions 4.4, 4.5, and 4.6. I am running Linux Mint 11 with gcc 4.5.2. However, the upstream bug fix may not have surfaced in the downstream gcc package installed on Mint 11. I will try a live distro with gcc 4.6 one of these days, likely Mint 12, to see if it helps.</p>
<p>I have set up a google code site in order to maintain the work done, I have called the python wrap for <a href="http://code.google.com/p/cea2py/">cea2py</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=373&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2012/01/17/gfortran-headaque-reading-from-piped-input/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>
	</item>
		<item>
		<title>Install and run GNU/linux Mint 11 from a usb memory stick</title>
		<link>http://aandreasen.wordpress.com/2011/11/19/install-and-run-gnulinux-mint-11-from-a-usb-memory-stick/</link>
		<comments>http://aandreasen.wordpress.com/2011/11/19/install-and-run-gnulinux-mint-11-from-a-usb-memory-stick/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 21:09:57 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=348</guid>
		<description><![CDATA[In this post I will briefly go through the steps of creating a Mint 11 installation on a memory stick. Some of the things may be specific for my own setup i.e. hardware, choice of distro etc. However, most of it will be of general applicability I hope. Basically there are three ways to run [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=348&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this post I will briefly go through the steps of creating a<a href="http://linuxmint.com/"> Mint 1</a>1 installation on a memory stick. Some of the things may be specific for my own setup i.e. hardware, choice of distro etc. However, most of it will be of general applicability I hope. Basically there are three ways to run a linux installation off a usb memory stick/SSD memory card etc.</p>
<ol>
<li>Make a live usb from an installation medium by using e.g. <a href="http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/">Universal USB installer</a>  from windows or <a href="https://help.ubuntu.com/community/Installation/FromUSBStick">Start-up disk creator </a>on Ubuntu/Mint. Any changes made during a live session will be lost upon reboot.</li>
<li>Make a live usb, but also enabling persistence. This way it is possible to store files, chages to the profile, add additional packages with apt etc.</li>
<li>Make a &#8220;real&#8221; installation on the usb stick as if it was just another hard disk.</li>
</ol>
<p>Although the second point seems to work surprisingly well, due to security reasons I chose a real installation. Actually I started off with method 2 and installed from one usb to another (no cd-rom/dvd drive in my laptop). The first usb was prepared from my windows installation with the universal USB installer. The second usb was prepared with the gparted tool from within Mint (running from the first usb). An ext2 extended partition was made covering the entire 8 GB disk space.</p>
<p>Installation was started from the Mint 11 Live desktop icon. Once the installer is running choose to do a manual disk partition. In the first Try I chose to install alongside Windows, but it was not possible to control the size of the swap space. Swap ended up taking up 4 GB space (equal to ram amount), leaving too little room for the installation (with 1 GB reserved for a fat  partition). This made the installation incomplete rendering the usb un-bootable.</p>
<p style="text-align:center;"><a href="http://aandreasen.files.wordpress.com/2011/11/21.png"><img class="size-full wp-image-353 aligncenter" title="2" src="http://aandreasen.files.wordpress.com/2011/11/21.png?w=700&#038;h=433" alt="" width="700" height="433" /></a></p>
<p>Remember to place the boot loader on the usb device</p>
<p style="text-align:center;"><a href="http://aandreasen.files.wordpress.com/2011/11/4.png"><img class="aligncenter size-full wp-image-356" title="4" src="http://aandreasen.files.wordpress.com/2011/11/4.png?w=700&#038;h=433" alt="" width="700" height="433" /></a></p>
<p>Add a ext2 primary partition iwth the &#8220;/&#8221; (root) mount point.</p>
<p><a href="http://aandreasen.files.wordpress.com/2011/11/4a.png"><img class="aligncenter size-full wp-image-358" title="4a" src="http://aandreasen.files.wordpress.com/2011/11/4a.png?w=700&#038;h=433" alt="" width="700" height="433" /></a></p>
<p>Do not bother making a swap partition if you have a sufficient amount of RAM. The installation was ended (self-explanatory). On reboot  GRUB would not boot into the newly installed Mint system on my usb stick since it was now /dev/sdb insted of /dev/sdc during installation (Live USB was /dev/sdb). In  order to change that I followed the steps outlined <a href="http://opensource-sidh.blogspot.com/2011/06/recover-grub-live-ubuntu-cd.html">here</a>.  I basically follwed the steps outlined (except booting from the Mint Live usb stick used for the original installation). Before running  <em><strong>update-grub2</strong></em> I corrected the file /mnt/etc/defaults/grub and corrected any references to sdc to sdb. This seemed to fix the boot problems.</p>
<p>After the installation I made the following modifications based on advice found on the web, in order to improve system response and memory stick lifetime (minimizing writes).</p>
<ol>
<li>Changed /tmp to RAM. Add the following line to <strong>/etc/fstab</strong>:<br />
<code>tmpfs /tmp tmpfs nodev,nosuid,noatime,noexec,size=1G 0 0<br />
</code>Change the size to whatever seems fit.</li>
<li>All entries in <strong>/etc/fstab</strong> are added the <strong>noatime</strong> option. The should eliminate<a href="http://tldp.org/LDP/solrhe/Securing-Optimizing-Linux-RH-Edition-v1.3/chap6sec73.html"> file system writes for files that are read</a>.</li>
<li>To minimize disk write during browser session the cache can be located in RAM e.g. for chromium the following line is added to <strong>/etc/fstab</strong><br />
<code>cache-chromium /home/username/.cache/chromium tmpfs rw,noatime 0 0</code><br />
Delete already existing cache and recreate:<br />
<code>rm -r /home/your_user/.cache/chromium</code><br />
<code>mkdir /home/your_user/.cache/chromium</code><br />
See also <a href="https://wiki.archlinux.org/index.php/Chromium">this page</a>.</li>
<li>The also applies to <strong>firefox. </strong>See e.g. the description <a href="http://tombuntu.com/index.php/2008/09/04/four-tweaks-for-using-linux-with-solid-state-drives/">here</a> (3. point).</li>
<li>It is recommended in several places to use the <strong>noop</strong> scheduler (or <strong>deadline</strong>) instead of the default (<strong>completely fair scheduler</strong>) for solid state storage. I have tried this but didn&#8217;t<a href="https://wiki.archlinux.org/index.php/SSD#I.2FO_Scheduler"> find any positive difference</a>.</li>
<li>I also considered adding some of the <a href="http://brainwreckedtech.wordpress.com/2009/05/14/linux-ssd-optimizations/"><strong>/var</strong> stuff into RAM</a>, but I haven&#8217;t come so far yet.</li>
</ol>
<p>This was my steps in getting a Mint 11 sysstem up and running from a USB stick.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=348&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2011/11/19/install-and-run-gnulinux-mint-11-from-a-usb-memory-stick/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>

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

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

		<media:content url="http://aandreasen.files.wordpress.com/2011/11/4a.png" medium="image">
			<media:title type="html">4a</media:title>
		</media:content>
	</item>
		<item>
		<title>Check-out MAN Diesel &amp; Turbo &#8220;Diesel Facts&#8221; publication</title>
		<link>http://aandreasen.wordpress.com/2011/11/02/check-out-man-diesel-turbo-diesel-facts-publication/</link>
		<comments>http://aandreasen.wordpress.com/2011/11/02/check-out-man-diesel-turbo-diesel-facts-publication/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 13:51:12 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Diesel engines]]></category>
		<category><![CDATA[Emission reduction]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=343</guid>
		<description><![CDATA[I recently co-authored a draft version of a press release/article on reduced green house gas emissions (GNG) and low methane slip of the new ME-GI duel fuel engine. The ME-GI can be run on both conventional liquid fuel (diesel, heavy fuel oil etc) as well as natural gas. Check out the front page story in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=343&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-medium wp-image-344" style="border-color:initial;border-style:initial;" title="dieselfacts" src="http://aandreasen.files.wordpress.com/2011/11/dieselfacts.png?w=210&#038;h=300" alt="" width="210" height="300" /></p>
<div>I recently co-authored a draft version of a press release/article on reduced green house gas emissions (GNG) and low methane slip of the new ME-GI duel fuel engine. The ME-GI can be run on both conventional liquid fuel (diesel, heavy fuel oil etc) as well as natural gas. Check out the front page story in <a href="http://www.mandieselturbo.com/0000665/Press/Publications/DieselFacts.html">&#8220;Diesel Facts&#8221;</a> 3rd issue 2011.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/343/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/343/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/343/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=343&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2011/11/02/check-out-man-diesel-turbo-diesel-facts-publication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>

		<media:content url="http://aandreasen.files.wordpress.com/2011/11/dieselfacts.png?w=210" medium="image">
			<media:title type="html">dieselfacts</media:title>
		</media:content>
	</item>
		<item>
		<title>Nexus s wifi connection problem</title>
		<link>http://aandreasen.wordpress.com/2011/07/24/nexus-s-wifi-connection-problem/</link>
		<comments>http://aandreasen.wordpress.com/2011/07/24/nexus-s-wifi-connection-problem/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 21:42:18 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[nexus s]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">https://aandreasen.wordpress.com/2011/07/24/nexus-s-wifi-connection-problem/</guid>
		<description><![CDATA[On my recently purchased Google/Samsung nexus s I have experienced problems with the wifi connection. When turning wifi on the wifi icon goes from green to grey (indicating no connection ) after a short while and although I am connected and have a dynamically assigned IP address it is not possible to browse the web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=340&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On my recently purchased Google/Samsung nexus s I have experienced problems with the wifi connection. When turning wifi on the wifi icon goes from green to grey (indicating no connection ) after a short while and although I am connected and have a dynamically assigned IP address it is not possible to browse the web or use e.g. marked. It turns out that changing the wireless network settings to always &#8220;on&#8221;, solves all my problems. <br />
Goto &#8220;settings&#8221;, &#8220;wireless and network&#8221;, &#8220;wifi settings &#8220;, press the menu button and choose &#8220;advanced&#8221;, &#8220;wifi sleep policy.&#8221;, set to never.<br />
Thanks to this <a href="http://forum.xda-developers.com/archive/index.php/t-927390.html">forum</a> I was led in the right direction.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/340/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/340/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/340/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=340&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2011/07/24/nexus-s-wifi-connection-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>
	</item>
		<item>
		<title>Where to publish non-physics preprints? or where to find a chemistry preprint server without the arxiv.org like endorsement system?</title>
		<link>http://aandreasen.wordpress.com/2011/07/10/where-to-publish-non-physics-preprints/</link>
		<comments>http://aandreasen.wordpress.com/2011/07/10/where-to-publish-non-physics-preprints/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 21:11:53 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Catalysis]]></category>
		<category><![CDATA[Kinetics]]></category>
		<category><![CDATA[Modelling]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[arxiv.org]]></category>
		<category><![CDATA[endorsement]]></category>
		<category><![CDATA[Nature precedings]]></category>
		<category><![CDATA[preprint server]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=327</guid>
		<description><![CDATA[A good friend, and former follow graduate student, and I recently finished a scientific manuscript we have been working for some years now. Since we are both out of academia, and busy with other things, putting an article into peer review is not our top priority at the moment. Nevertheless, we would still like the world [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=327&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A good friend, and former follow graduate student, and I recently finished a scientific manuscript we have been working for some years now. Since we are both out of academia, and busy with other things, putting an article into peer review is not our top priority at the moment. Nevertheless, we would still like the world (or at least a few people) know about our work, and also secure our intellectual property, by not letting others publish the exact same ideas. We came up with the idea of publishing it on a pre-print server, and then time should tell if we would submit to a peer-reviewed journal. The best known (physics) pre-print server is the <a href="http://www.arxiv.org">arxiv.org</a> hosted by Cornell University Library. Although our work probably could be classified into some subtopic physics category, strictly speaking, chemistry would  be more appropriate, chemical kinetics and catalysis to be more accurate. Furthermore, the <a href="http://arxiv.org/help/endorsement">endorsement system</a> used by arxiv.org is also frustrating, to put it mildly. Once you&#8217;re out of research it seems very difficult to get endorsement. I consider my scientific network to be quite broad and large, however I do not know a single soul who can endorse me. Thus, arxiv.org seemed out of the question. Then, where to find a chemistry pre-print server with a less strict endorsement system? It turns out that Nature has started their own pre-print service known as <a href="http://precedings.nature.com/">Nature precedings</a>, and they are embracing chemistry. Thank you.  So now our manuscript is <a href="http://hdl.handle.net/10101/npre.2011.6076.2">public available</a>. As a note to those wanting to publish physics preprints without endorsement (and chemistry as well), the so-called <a href="http://vixra.org">vixra.org</a> (arxiv reversed) is an option. However, I have not been able to really judge the quality of the content being published. Well to be honest the same goes to Nature precedings, but since Nature Scientific Publishing is behind, it sounds better in my ears.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/327/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=327&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2011/07/10/where-to-publish-non-physics-preprints/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>
	</item>
		<item>
		<title>Things I hate about my HTC Tattoo</title>
		<link>http://aandreasen.wordpress.com/2011/05/30/things-i-hate-about-my-htc-tattoo/</link>
		<comments>http://aandreasen.wordpress.com/2011/05/30/things-i-hate-about-my-htc-tattoo/#comments</comments>
		<pubDate>Mon, 30 May 2011 20:54:22 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC Tattoo]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=313</guid>
		<description><![CDATA[For the last year my cell phone has been a HTC Tattoo. It is my first smart phone and I bought after some considerations, mainly due to the following features: Relatively affordable price Small size The ability to synchronize with my company Exchange account via the ActiveSync VPN connection ability Wireless networking It tuned out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=313&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aandreasen.files.wordpress.com/2011/05/htc.jpg"><img class="alignleft size-medium wp-image-322" title="htc" src="http://aandreasen.files.wordpress.com/2011/05/htc.jpg?w=287&#038;h=300" alt="" width="287" height="300" /></a>For the last year my cell phone has been a HTC Tattoo. It is my first smart phone and I bought after some considerations, mainly due to the following features:</p>
<ul>
<li>Relatively affordable price</li>
<li>Small size</li>
<li>The ability to synchronize with my company Exchange account via the ActiveSync</li>
<li>VPN connection ability</li>
<li>Wireless networking</li>
</ul>
<p>It tuned out that I got only 3 out of 5 or maybe 3.5 on good day. Here it is. VPN should work, however not with Cisco IPSec. Some have reported that on a rooted Tattoo you can load the kernel module to allow vpnc to work. I am yet to take the plunge and root my Tattoo.</p>
<p>Exchange sync works to some extent. I can read mail and update my calender, but for some strange reason I have not managed to send mail via my Exchange account, or download attachments for that matter.</p>
<p>In addition to these shortcomings the below issues are</p>
<ul>
<li>slow CPU</li>
<li>Android lock-in to an ancient android version (1.6) , HTC Sense is part of the explanation.</li>
<li>Poor battery capacity (this applies to most smartphones I guess)</li>
<li>Completely impossible to read anything on the screen outdoor in sunshine.</li>
<li>Too small screen size. It is very difficult to use the soft keyboard. The number of typos is just too high.</li>
</ul>
<p>I am considering a new Samsung galaxy S Google phone, due to the vanilla android which should enable android updating without delays for GUI customization. On the other hand I find the iphone 4 very appealing also, but I dislike the “Apple lock-in” and their desire to make decisions limiting the freedom of the user/customer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=313&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2011/05/30/things-i-hate-about-my-htc-tattoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>

		<media:content url="http://aandreasen.files.wordpress.com/2011/05/htc.jpg?w=287" medium="image">
			<media:title type="html">htc</media:title>
		</media:content>
	</item>
		<item>
		<title>The Arch Way</title>
		<link>http://aandreasen.wordpress.com/2011/05/18/the-arch-way/</link>
		<comments>http://aandreasen.wordpress.com/2011/05/18/the-arch-way/#comments</comments>
		<pubDate>Wed, 18 May 2011 20:19:53 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[distro review]]></category>
		<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=301</guid>
		<description><![CDATA[I have recently replaced ubuntu 10.10 on my home laptop with Arch Linux. I have been wanting to try this distro for a while, but as I am getting older the need for long nights struggling with new linux installations, configurations, package installations, tweaking and fine tuning this and that is getting much smaller. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=301&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aandreasen.files.wordpress.com/2011/05/arch.png"><img class="alignright size-medium wp-image-302" title="arch" src="http://aandreasen.files.wordpress.com/2011/05/arch.png?w=300&#038;h=251" alt="" width="300" height="251" /></a><br />
I have recently replaced ubuntu 10.10 on my home laptop with <a href="http://www.archlinux.org/">Arch Linux</a>. I have been wanting to try this distro for a while, but as I am getting older the need for long nights struggling with new linux installations, configurations, package installations, tweaking and fine tuning this and that is getting much smaller. I just want something that works. Then again I am still curious, and I still remember the good things about <a href="http://www.gentoo.org/">Gentoo</a> (although it took almost one week of compiling X, gnome, openoffice, firefox etc. back in 2004), the bsd-like portage system, I also like apt, and the high availability of pre-built binary packages, but I am not sure I agree 100% with the direction of Ubuntu. Furthermore I have been looking for a distro that supports the <a href="http://www.gnome3.org/">gnome 3</a> desktop.</p>
<p>A long story short, although the installation of Arch is not as polished as e.g. Ubuntu, OpenSuse, etc., and the fact that only a base system is installed from the beginning (no X, no desktop, no GUI browser etc), it is not that difficult thanks to the great documentation (<br />
<a href="https://wiki.archlinux.org/index.php/Official_Arch_Linux_Install_Guide" title="Official installation guide">Official installation guide</a> and <a href="https://wiki.archlinux.org/index.php/Beginners%27_Guide">Unofficial beginners guide</a>). One thing to mention which I missed in my first attempt was to include the wifi driver in the packages to be installed, this caused some confusion, but in the second try everything went fine. With Arch some of the system configuration must be done by editing a few configuration files (again this is very well described in the documentation), the most common and pivotal being /etc/rc.conf. Basically it is about setting the hostname, specifying DHCP or static IP for network adapters, specifying kernel modules, specifying which daemons to start at boot etc. </p>
<p>The thing I am most impressed by is the <code>pacman</code> package manager/dependency handler. I mean if you like apt, you will probably also like pacman. The build system is also very easy to get familiar with (again <a href="https://wiki.archlinux.org/index.php/Arch_Build_System">good documentation</a> is the key). It is very easy to build packages (including dependency handling by pacman) from so-called PKGBUILDs (see e.g. <a href="https://aur.archlinux.org/">AUR</a> for additional user supplied package build instructions for building packages). I was impressed to find a PKGBUILD for the Citrix Receiver (ICAClient). I found that this PKGBUILD specified openmotif as a dependency. Set this to lesstif instead, else some dependency issues may occur with applications specifying lesstif as a dependency (e.g. xpdf, xmgrace and other legacy stuff), since either one or the other should be used. </p>
<p>It was very easy to get Gnome 3 thanks to these easy <a href="https://wiki.archlinux.org/index.php/GNOME">basic steps</a>. Install gdm as well and start the daemon on boot (edit /etc/rc.conf) in order to have graphical login screen after boot-up.  I also like the <a href="https://wiki.archlinux.org/index.php/NetworkManager">NetworkManager</a> applet in Gnome, which makes wireless networking a breeze. I installed vpnc and the netwokmanager-vpnc packages to connect to a cisco VPN. As with previous attempts in Ubuntu, Fedora, and Centos, it seems necessary to log out and in again in order for it to work properly in the applet.</p>
<p>Should I also mention that installing <a href="https://wiki.archlinux.org/index.php/Browser_Plugins">plugins</a> (flash, java, video etc) and  <a href="https://wiki.archlinux.org/index.php/Codecs">codec</a>s etc is also accomplished in a very easy way. Other things to like is that default python is 2.7. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=301&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2011/05/18/the-arch-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>

		<media:content url="http://aandreasen.files.wordpress.com/2011/05/arch.png?w=300" medium="image">
			<media:title type="html">arch</media:title>
		</media:content>
	</item>
		<item>
		<title>Presentation of paper no. 39 at CIMAC 2010 congress in Bergen available now!</title>
		<link>http://aandreasen.wordpress.com/2010/10/05/presentation-of-paper-no-39-at-cimac-2010-congress-in-bergen-available-now/</link>
		<comments>http://aandreasen.wordpress.com/2010/10/05/presentation-of-paper-no-39-at-cimac-2010-congress-in-bergen-available-now/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 08:05:52 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Diesel engines]]></category>
		<category><![CDATA[Kinetics]]></category>
		<category><![CDATA[Modelling]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[acid corrosion]]></category>
		<category><![CDATA[corrosion]]></category>
		<category><![CDATA[fuel sulfur]]></category>
		<category><![CDATA[SO2]]></category>
		<category><![CDATA[SO3]]></category>
		<category><![CDATA[Sulfur oxidation]]></category>
		<category><![CDATA[sulfuric acid]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=281</guid>
		<description><![CDATA[The presentation accompanying paper no. 39 is available<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=281&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aandreasen.files.wordpress.com/2010/10/cimac_congress_bergen_2010_sox1.pdf"><img src="http://aandreasen.files.wordpress.com/2010/10/cimac_2010_sox3.png?w=700" title="CIMAC_2010_SOx" /></a></p>
<p>The presentation accompanying paper no. 39 is <a href="http://aandreasen.files.wordpress.com/2010/10/cimac_congress_bergen_2010_sox1.pdf">available</a> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=281&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2010/10/05/presentation-of-paper-no-39-at-cimac-2010-congress-in-bergen-available-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>

		<media:content url="http://aandreasen.files.wordpress.com/2010/10/cimac_2010_sox3.png" medium="image">
			<media:title type="html">CIMAC_2010_SOx</media:title>
		</media:content>
	</item>
		<item>
		<title>The wayback machine to the rescue</title>
		<link>http://aandreasen.wordpress.com/2010/09/29/the-wayback-machine-to-the-rescue/</link>
		<comments>http://aandreasen.wordpress.com/2010/09/29/the-wayback-machine-to-the-rescue/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 09:28:37 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Catalysis]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Kinetics]]></category>
		<category><![CDATA[Modelling]]></category>
		<category><![CDATA[supplementary material]]></category>
		<category><![CDATA[wayback machine]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=260</guid>
		<description><![CDATA[Years ago I made some on-line material available on my (old) website in order to supplement some of my publications. In the meantime I have closed down the old website, and guess what, now the material has been requested (cough!). What to do now? Use the the internet archive/waybackmachine. &#8220;Browse through over 150 billion web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=260&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aandreasen.files.wordpress.com/2010/09/wayback_logo-sm.gif"><img class="alignleft size-full wp-image-261" title="wayback_logo-sm" src="http://aandreasen.files.wordpress.com/2010/09/wayback_logo-sm.gif?w=700" alt=""   /></a> Years ago I made some on-line material available on my (old) website in order to supplement some of my publications. In the meantime I have closed down the old website, and guess what, now the material has been requested (cough!). What  to do now? Use the the <a href="http://www.archive.org/">internet archive/waybackmachine</a>.<br />
<em>&#8220;Browse through over 150 billion web pages archived from 1996 to a few months ago. To start surfing the Wayback, type in the web address of a site or page where you would like to start, and press enter. Then select from the archived dates available. The resulting pages point to other archived pages at as close a date as possible. Keyword searching is not currently supported.&#8221;</em></p>
<p>The material which is related to some publications in <a href="http://www.elsevier.com/wps/find/journaldescription.cws_home/500856/description#description">Applied Catalysis</a> and <a href="http://linuxgazette.net/">the Linux Gazette</a>. The material in question can be found <a href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php/Supplementary_material">here</a>, and is even shown below:</p>
<div id="globalWrapper">
<div id="column-content">
<div id="content">
<h1>Supplementary material</h1>
<div id="bodyContent">
<h3 id="siteSub">From Andr</h3>
<p>This page contains supplementary material to some of my publications</p>
<table id="toc" border="0">
<tbody>
<tr>
<td align="center"><strong>Table of contents</strong> [<a>showhide</a>]</td>
</tr>
<tr>
<td>
<div><a href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php/Supplementary_material#Linux_gazette_114">1 Linux gazette 114</a></div>
<div><a href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php/Supplementary_material#Linux_gazette_115">2 Linux gazette 115</a></div>
<div><a href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php/Supplementary_material#Octave_files">3 Octave files</a></div>
</td>
</tr>
</tbody>
</table>
<div>[<a title="Supplementary material" href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php?title=Supplementary_material&amp;action=edit&amp;section=1">edit</a>]</div>
<p><a name="Linux_gazette_114"></a></p>
<h2>Linux gazette 114</h2>
<p>In order to try out Example 3 in the article <em>Python for scientific use. Part I: Data visualization</em> in <a title="http://linuxgazette.net/114/andreasen.html" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://linuxgazette.net/114/andreasen.html">Linux Gazette 114 (2005)</a> (<em>http://linuxgazette.net/114/andreasen.html</em>)  a number of data files are needed.</p>
<p>These data files are contained within the <a title="http://andr.dk/lg114/3ddata.tar.gz" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/lg114/3ddata.tar.gz">3ddata.tar.gz</a> (<em>http://andr.dk/lg114/3ddata.tar.gz</em>) file. In order to extract all datafiles do:</p>
<pre>  tar xvfz 3ddata.tar.gz</pre>
<p>in the directory from which the python script is run.</p>
<div>[<a title="Supplementary material" href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php?title=Supplementary_material&amp;action=edit&amp;section=2">edit</a>]</div>
<p><a name="Linux_gazette_115"></a></p>
<h2>Linux gazette 115</h2>
<p>In order to try out Example 3 in the article <em>Python for scientific use. Part II: Data analysis</em> in <a title="http://linuxgazette.net/115/andreasen.html" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://linuxgazette.net/115/andreasen.html">Linux Gazette 115 (2005)</a> (<em>http://linuxgazette.net/115/andreasen.html</em>)  a number of data files are needed.</p>
<p>These data files are contained within the <a title="http://andr.dk/lg115/3dtdata.tar.gz" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/lg115/3dtdata.tar.gz">3dtdata.tar.gz</a> (<em>http://andr.dk/lg115/3dtdata.tar.gz</em>) file. In order to extract all datafiles do:</p>
<pre>  tar xvfz 3dtdata.tar.gz</pre>
<p>in the directory from which the python script is run.</p>
<div>[<a title="Supplementary material" href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php?title=Supplementary_material&amp;action=edit&amp;section=3">edit</a>]</div>
<p><a name="Octave_files"></a></p>
<h2>Octave files</h2>
<p>The kinetic models published in  <a title="Publications" href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php/Publications#International_publications"> Simplified kinetic models of methanol oxidation on silver</a> are all implemented in a number of <a title="http://www.octave.org" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://www.octave.org/">octave</a> (<em>http://www.octave.org</em>)  scripts. You can see all individual files in the table below. All files can be obtained either by downloading <a title="http://andr.dk/octavefiles/octavefiles.tar.gz" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/octavefiles.tar.gz">octavefiles.tar.gz</a> (<em>http://andr.dk/octavefiles/octavefiles.tar.gz</em>) or by</p>
<pre>  wget -i FILELIST.txt</pre>
<p>from the directory to which the files should be downloaded. First, download the <a title="http://andr.dk/octavefiles/FILELIST.txt" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/FILELIST.txt">FILELIST</a> (<em>http://andr.dk/octavefiles/FILELIST.txt</em>).</p>
<table border="2" cellspacing="0" cellpadding="4">
<caption><strong>List of octave files</strong> </caption>
<tbody>
<tr>
<th> File name</th>
<th> Description</th>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/MeOH test.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/MeOH_test.m">MeOH_test.m</a> (<em>http://andr.dk/octavefiles/MeOH_test.m</em>)</td>
<td>Main file</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/Keqsel.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/Keqsel.m">Keqsel.m</a> (<em>http://andr.dk/octavefiles/Keqsel.m</em>)</td>
<td>Reaction step equilibrium constants calculated using statistical thermodynamics</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/K HandS.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/K_HandS.m">K_HandS.m</a> (<em>http://andr.dk/octavefiles/K_HandS.m</em>)</td>
<td>Reaction step equilibrium constants calculated using enthalpies and entropies</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/fullrateorig.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/fullrateorig.m">fullrateorig.m</a> (<em>http://andr.dk/octavefiles/fullrateorig.m</em>)</td>
<td>The original rate law from quasi equilibrium approximation and stat. therm. with a plug-flow reactor model included</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/fullrate.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/fullrate.m">fullrate.m</a> (<em>http://andr.dk/octavefiles/fullrate.m</em>)</td>
<td>The original rate law from quasi equilibrium approximation and classical thermodynamics with a plug-flow reactor model included</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/marirate.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/marirate.m">marirate.m</a> (<em>http://andr.dk/octavefiles/marirate.m</em>)</td>
<td>The MARI approximation</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/israte.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/israte.m">israte.m</a> (<em>http://andr.dk/octavefiles/israte.m</em>)</td>
<td>The IS approximation</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/powerlawrate.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/powerlawrate.m">powerlawrate.m</a> (<em>http://andr.dk/octavefiles/powerlawrate.m</em>)</td>
<td>The clean surface approximation</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qtransA.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qtransA.m">qtransA.m</a> (<em>http://andr.dk/octavefiles/qtransA.m</em>)</td>
<td>Calculation of the translational partition function</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qvibA.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qvibA.m">qvibA.m</a> (<em>http://andr.dk/octavefiles/qvibA.m</em>)</td>
<td>Calculation of the vibrational partition function for a single vibration (cm-1)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qvibAJ.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qvibAJ.m">qvibAJ.m</a> (<em>http://andr.dk/octavefiles/qvibAJ.m</em>)</td>
<td>Calculation of the vibrational partition function for a single vibration (J/mol)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qrotA2D.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qrotA2D.m">qrotA2D.m</a> (<em>http://andr.dk/octavefiles/qrotA2D.m</em>)</td>
<td>Calculation of the 2-D rotational partition function  (cm-1)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qrotA2DJ.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qrotA2DJ.m">qrotA2DJ.m</a> (<em>http://andr.dk/octavefiles/qrotA2DJ.m</em>)</td>
<td>Calculation of the 2-D rotational partition function for a single vibration (J/mol)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qrotA3D.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qrotA3D.m">qrotA3D.m</a> (<em>http://andr.dk/octavefiles/qrotA3D.m</em>)</td>
<td>Calculation of the 3-D rotational partition function  (cm-1)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/qvibtotA.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/qvibtotA.m">qvibtotA.m</a> (<em>http://andr.dk/octavefiles/qvibtotA.m</em>)</td>
<td>Calculation of the total vibrational partition function for a molecule (cm-1)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/HvibA.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/HvibA.m">HvibA.m</a> (<em>http://andr.dk/octavefiles/HvibA.m</em>)</td>
<td>Calculation of the vibrational enthalpy of a single vibration (cm-1)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/HvibAJ.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/HvibAJ.m">HvibAJ.m</a> (<em>http://andr.dk/octavefiles/HvibAJ.m</em>)</td>
<td>Calculation of the vibrational enthalpy of a single vibration (J/mol)</td>
</tr>
<tr>
<td><a title="http://andr.dk/octavefiles/HvibtotA.m" rel="nofollow" href="http://web.archive.org/web/20051027022751/http://andr.dk/octavefiles/HvibtotA.m">HvibtotA.m</a> (<em>http://andr.dk/octavefiles/HvibtotA.m</em>)</td>
<td>Calculation of the total vibrational enthalpy for a molecule (cm-1)</td>
</tr>
</tbody>
</table>
<div>Retrieved from &#8220;<a href="http://web.archive.org/web/20051027022751/http://andr.dk/wiki/index.php/Supplementary_material">http://andr.dk/wiki/index.php/Supplementary_material</a>&#8220;</div>
</div>
</div>
</div>
</div>
<p>?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/260/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=260&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2010/09/29/the-wayback-machine-to-the-rescue/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>

		<media:content url="http://aandreasen.files.wordpress.com/2010/09/wayback_logo-sm.gif" medium="image">
			<media:title type="html">wayback_logo-sm</media:title>
		</media:content>
	</item>
		<item>
		<title>Full text available for CIMAC paper no. 39 2010: Modelling of the oxidation of fuel sulfur in low speed two-stroke engines</title>
		<link>http://aandreasen.wordpress.com/2010/06/22/full-text-available-for-cimac-paper-no-39-2010-modelling-of-the-oxidation-of-fuel-sulfur-in-low-speed-two-stroke-engines/</link>
		<comments>http://aandreasen.wordpress.com/2010/06/22/full-text-available-for-cimac-paper-no-39-2010-modelling-of-the-oxidation-of-fuel-sulfur-in-low-speed-two-stroke-engines/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 10:13:40 +0000</pubDate>
		<dc:creator>aandreasen</dc:creator>
				<category><![CDATA[Diesel engines]]></category>
		<category><![CDATA[Kinetics]]></category>
		<category><![CDATA[Modelling]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[acid corrosion]]></category>
		<category><![CDATA[cantera]]></category>
		<category><![CDATA[cylinder condition]]></category>
		<category><![CDATA[Diesel]]></category>
		<category><![CDATA[Heavy fuel oil]]></category>
		<category><![CDATA[SECA]]></category>
		<category><![CDATA[Sulfur oxidation]]></category>

		<guid isPermaLink="false">http://aandreasen.wordpress.com/?p=233</guid>
		<description><![CDATA[Full text version Abstract In large marine two stroke Diesel engines during combustion of sulfur containing fuel, the sulfur is oxidised to SO2 , mainly, although substantial amounts of SO3 and H2SO4 will form as well. These latter species may cause corrosional wear of the cylinder liner if not neutralised by lube oil additives. Potential [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=233&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://aandreasen.files.wordpress.com/2009/06/full_paper_no_39_m_2.pdf">Full text version</a></p>
<h2>Abstract</h2>
<p>In large marine two stroke Diesel engines during combustion of sulfur containing fuel, the sulfur is oxidised to SO2 , mainly, although substantial amounts of SO3 and H2SO4 will form as well. These latter species may cause corrosional wear of the cylinder liner if not neutralised by lube oil additives. Potential attacks is due to either condensation of sulfuric acid on the cylinder liner lube oil film or direct dissolution of oxidised sulfur species in the lube oil film in which reaction with dissolved water may be the source of acidic species. In order to evaluate and predict corrosional wear of the liner material, it is pivotal to have realistic estimates of the distribution/concentration of oxidised sulfur species as well as a reliable model of<br />
formation, transport and destruction of acidic species in the oil film. This paper addresses the former part by invoking a detailed reaction mechanism in order to simulate the oxidation of fuel bound sulfur and predicting the concentration of SO2 as well as the conversion fraction into SO3 and H2 SO4 . The reaction mechanism is coupled to a realistic model of the combustion process in which the air entrainment into the combustion zone is accounted for. The results of the simulation are evaluated with respect to previously applied models as well as existing data on the conversion fraction of SO2 to SO3 and H2 SO4 . The conversion fraction is found to be in a range of 2.6-6.7 %.</p>
<p>A pivotal part for the creation of the above paper has been the usage of the <a href="http://code.google.com/p/cantera/">Cantera</a> software for handling thermodynamics and integration of kinetic rate equations. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aandreasen.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aandreasen.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aandreasen.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aandreasen.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aandreasen.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aandreasen.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aandreasen.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aandreasen.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aandreasen.wordpress.com&amp;blog=8298071&amp;post=233&amp;subd=aandreasen&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aandreasen.wordpress.com/2010/06/22/full-text-available-for-cimac-paper-no-39-2010-modelling-of-the-oxidation-of-fuel-sulfur-in-low-speed-two-stroke-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d9e4a9ebf6884715b0f80ea740816ef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">aandreasen</media:title>
		</media:content>
	</item>
	</channel>
</rss>
